@charset "UTF-8";
h1 {
  padding: 3rem 0 2rem 0;
}

body {
  overflow: overlay;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

.product_info_modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 20;
}
.product_info_modal .product_info_modal_window {
  width: calc(100% - 1rem);
  max-width: 30rem;
  height: calc(100% - 2rem);
  max-height: 25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: white;
  border-radius: 0.5rem;
}
.product_info_modal .product_info_modal_window .top_bar {
  width: 100%;
  height: 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0.1rem solid rgb(231, 231, 231);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.product_info_modal .product_info_modal_window .top_bar .header {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.08rem;
  font-weight: 500;
  padding: 0 2rem;
}
.product_info_modal .product_info_modal_window .top_bar .close_btn {
  height: 2rem;
  width: 3rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
  font-size: 1.6rem;
}
.product_info_modal .product_info_modal_window .preview_container {
  width: 100%;
  height: calc(100% - 4rem);
  position: relative;
  top: 1.25rem;
}
.product_info_modal .product_info_modal_window .preview_container .preview {
  width: calc(100% - 2rem);
  height: calc(100% - 1rem);
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x, .product_info_modal .product_info_modal_window .preview_container .preview .dim_y {
  position: absolute;
  font-size: 0.7rem;
  font-family: "OpenSans";
  line-height: 0.8rem;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x::before, .product_info_modal .product_info_modal_window .preview_container .preview .dim_y::before {
  content: "";
  position: absolute;
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x span, .product_info_modal .product_info_modal_window .preview_container .preview .dim_y span {
  position: absolute;
  left: 50%;
  top: 50%;
  background-color: white;
  padding: 0 0.1rem;
  font-weight: bold;
  white-space: nowrap;
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x {
  height: 0.85rem;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  border-left: 0.1rem solid rgb(41, 41, 41);
  border-right: 0.1rem solid rgb(41, 41, 41);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x::before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: rgb(41, 41, 41);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_x span {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_y {
  width: 0.85rem;
  height: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  border-top: 0.1rem solid rgb(41, 41, 41);
  border-bottom: 0.1rem solid rgb(41, 41, 41);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_y::before {
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  background-color: rgb(41, 41, 41);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.product_info_modal .product_info_modal_window .preview_container .preview .dim_y span {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
          transform: translate(-50%, -50%) rotate(-90deg);
}
.product_info_modal .product_info_modal_window .preview_container .preview .product_frame {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0.35rem 0.15rem rgba(172, 0, 255, 0.33);
          box-shadow: 0 0 0.35rem 0.15rem rgba(172, 0, 255, 0.33);
}
.product_info_modal .product_info_modal_window .preview_container .preview .product_frame .photo_frame {
  position: relative;
}
.product_info_modal .product_info_modal_window .preview_container .preview .product_frame .photo_frame img.picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.app_container {
  font-family: "RobotoFlex";
  width: calc(100% - 1rem);
  max-width: 80rem;
  margin: 0 auto;
}
.app_container .product_group {
  margin-bottom: 2rem;
  padding: 2rem 0;
}
.app_container .product_group .product_group_header {
  border-bottom: 0.1rem solid rgb(231, 231, 231);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.app_container .product_group .product_group_header .header_name {
  font-weight: bold;
  font-size: 1rem;
  line-height: 1.2rem;
  color: #232323;
}
.app_container .product_group .product_group_header .header_info {
  /*font-weight: 400;
  font-size: 1rem;
  line-height: 1.8rem;
  padding: 0 0.7rem;
  color: #555;
  user-select: none;
  cursor: pointer;
  background-color: rgb(226, 226, 226);
  border: 0.1rem solid rgb(184, 184, 184);*/
}
.app_container .product_group .product_group_header .header_info img {
  width: 1.2rem;
  height: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left;
     object-position: left;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  margin-left: 0.8rem;
}
.app_container .product_group .product_group_header .most_favourite_info {
  font-weight: 400;
  font-size: 0.85rem;
  -moz-user-select: none;
  -ms-user-select: none;
  background-color: #d184fb;
  padding: 0.25rem 0.35rem;
  color: white;
  -webkit-user-select: none;
          user-select: none;
  border-radius: 0.3rem;
  margin-left: 0.8rem;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
  -webkit-box-shadow: 0px 0px 11px 3px #dedede;
          box-shadow: 0px 0px 11px 3px #dedede;
}
.app_container .product_group .previews_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0.4rem;
  position: relative;
}
.app_container .product_group .previews_container .flex_item {
  margin-bottom: 2rem;
}
@media (max-width: 25rem) {
  .app_container .product_group .previews_container .flex_item {
    width: calc(50% - 0.6rem);
  }
}
@media (min-width: 25rem) and (max-width: 38rem) {
  .app_container .product_group .previews_container .flex_item {
    width: calc(33.33% - 0.6rem);
  }
}
@media (min-width: 38rem) and (max-width: 50rem) {
  .app_container .product_group .previews_container .flex_item {
    width: calc(25% - 0.6rem);
  }
}
@media (min-width: 50rem) and (max-width: 60rem) {
  .app_container .product_group .previews_container .flex_item {
    width: calc(20% - 0.6rem);
  }
}
@media (min-width: 60.01rem) {
  .app_container .product_group .previews_container .flex_item {
    width: 8.2rem;
  }
}
.app_container .product_group .previews_container button.btn_add_product {
  height: 10rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem 0.3rem;
  background: linear-gradient(67deg, #f2c8f2, #cccccc);
  border: 0.1rem dashed rgb(131, 0, 191);
  border-radius: 0.8rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.app_container .product_group .previews_container button.btn_add_product .main_text_add {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0 0.2rem;
  margin-bottom: 0.4rem;
  color: #1e003b;
}
.app_container .product_group .previews_container button.btn_add_product .plus_sign_icon {
  line-height: 2rem;
  font-weight: bold;
  color: #d14adb;
  font-size: 3rem;
}
.app_container .product_group .previews_container button.btn_add_product .upload_button_info {
  font-size: 0.7rem;
  color: #1e003b;
  bottom: 0.4rem;
  width: calc(100% - 0.8rem);
  text-align: center;
  padding: 0 0.2rem;
}
.app_container .product_group .previews_container button.btn_add_product .file_transfer_drag_area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.493);
  z-index: 1;
  cursor: copy;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
.app_container .product_group .previews_container button.btn_add_product .file_transfer_drag_area.dragover {
  opacity: 1;
}
.app_container .product_group .previews_container .foto_item {
  height: 10rem;
  position: relative;
  -webkit-animation-name: slideinPrintItem;
          animation-name: slideinPrintItem;
  -webkit-animation-duration: 0.15s;
          animation-duration: 0.15s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes slideinPrintItem {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideinPrintItem {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-1rem);
            transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.app_container .product_group .previews_container .foto_item[magnetic="1"] .text_overlay .icon_magnetic {
  display: block;
}
.app_container .product_group .previews_container .foto_item[magnetic="0"] .text_overlay .icon_magnetic {
  display: none;
}
.app_container .product_group .previews_container .foto_item.error {
  -webkit-animation-name: fadeoutPrintItemError;
          animation-name: fadeoutPrintItemError;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes fadeoutPrintItemError {
  0% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeoutPrintItemError {
  0% {
    opacity: 1;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.app_container .product_group .previews_container .foto_item.loading img.foto_item_img {
  opacity: 0;
  display: none;
}
.app_container .product_group .previews_container .foto_item.loading img.foto_itemloader_img {
  display: block;
}
.app_container .product_group .previews_container .foto_item.loading .text_overlay {
  display: none;
}
.app_container .product_group .previews_container .foto_item:not(.loading) img.foto_item_img {
  opacity: 1;
  display: block;
}
.app_container .product_group .previews_container .foto_item:not(.loading) img.foto_itemloader_img {
  display: none;
}
.app_container .product_group .previews_container .foto_item:not(.loading) .text_overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.app_container .product_group .previews_container .foto_item img.foto_item_img, .app_container .product_group .previews_container .foto_item img.foto_itemloader_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.app_container .product_group .previews_container .foto_item .error_container {
  padding: 0.75rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 166, 166);
  border-radius: 0.25rem;
}
.app_container .product_group .previews_container .foto_item .error_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.25)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25));
  z-index: 1;
  -webkit-animation-name: fadeinPrintItemErrorBackground;
          animation-name: fadeinPrintItemErrorBackground;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes fadeinPrintItemErrorBackground {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes fadeinPrintItemErrorBackground {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.app_container .product_group .previews_container .foto_item .error_container .error_icon {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
  margin: 0 auto 0.4rem auto;
}
.app_container .product_group .previews_container .foto_item .error_container .error_text {
  display: inline-block;
  text-align: center;
  padding: 0 0.2rem;
  font-size: 0.85rem;
}
.app_container .product_group .previews_container .foto_item img.foto_item_img {
  -webkit-filter: drop-shadow(0 0 0.15rem rgb(223, 154, 255));
          filter: drop-shadow(0 0 0.15rem rgb(223, 154, 255));
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-transform: translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
.app_container .product_group .previews_container .foto_item .text_overlay {
  position: absolute;
  z-index: 2;
  top: 0.15rem;
  left: 0.15rem;
  background-color: rgba(236, 193, 193, 0.7882352941);
  line-height: 1.5rem;
  font-size: 0.85rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}
.app_container .product_group .previews_container .foto_item .text_overlay .icon_magnetic {
  width: 1.2rem;
  height: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0.15rem;
}
.app_container .product_group .previews_container .foto_item .text_overlay .count {
  font-size: 0.8rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin: 0 0.15rem;
}
.app_container .product_group .previews_container .price_container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.5rem;
  color: #7f26a1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.app_cart_price_info_container {
  width: calc(100% - 0.6rem);
  max-width: 36rem;
  margin: 0 auto;
}
.app_cart_price_info_container .app_cart_price_info_title {
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  padding: 0.2rem 0.3rem;
  margin: 1.5rem 0 0.2rem 0;
  border-bottom: 0.1rem solid rgb(231, 231, 231);
}
.app_cart_price_info_container .app_cart_price_info_title .mini_info_country {
  text-transform: none;
  font-size: 0.7rem;
  font-weight: 100;
  font-style: italic;
  margin-left: 0.7rem;
}
.app_cart_price_info_container .app_cart_price_info_title:not(:first-child) {
  margin-top: 2rem;
}
.app_cart_price_info_container .app_cart_price_info_items_table {
  display: table;
  width: 100%;
}
.app_cart_price_info_container .app_cart_price_info_items_table .items_table_row {
  display: table-row;
}
.app_cart_price_info_container .app_cart_price_info_items_table .items_table_row.header .column {
  font-weight: bold;
  font-size: 0.7rem;
}
.app_cart_price_info_container .app_cart_price_info_items_table .items_table_row.normal:nth-child(even) {
  background-color: rgb(245, 233, 249);
}
.app_cart_price_info_container .app_cart_price_info_items_table .items_table_row.summary .column {
  border-top: 1px solid rgb(231, 231, 231);
  font-weight: bold;
}
.app_cart_price_info_container .app_cart_price_info_items_table .items_table_row .column {
  display: table-cell;
  padding: 0.3rem 0.22rem;
  font-size: 0.75rem;
}
.app_cart_price_info_container .app_cart_price_subheader {
  font-size: 0.85rem;
  font-weight: bold;
  text-align: left;
  margin-top: 2rem;
  text-decoration: underline;
}
.app_cart_price_info_container .app_cart_price_under_subheader_success {
  font-size: 0.75rem;
  font-style: italic;
  margin-top: 0.25rem;
  color: green;
}
.app_cart_price_info_container .subheader {
  font-size: 0.85rem;
  font-weight: normal;
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
  padding-left: 0.85rem;
}
.app_cart_price_info_container .progress_bar_container {
  width: 100%;
  height: 2rem;
  background-color: rgb(231, 231, 231);
  border-radius: 4rem;
  position: relative;
  overflow: hidden;
  margin-top: 0.25rem;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(130, 130, 130, 0.5490196078);
          box-shadow: 1px 1px 5px 0px rgba(130, 130, 130, 0.5490196078);
}
.app_cart_price_info_container .progress_bar_container .progress_bar_filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(355deg, #26f200, #83ff6c);
  border-radius: 4rem;
  -webkit-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}
.app_cart_price_info_container .progress_bar_container .progress_bar_info_container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 0.8rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 0.7rem;
  font-weight: bold;
  color: #232323;
}
.app_cart_price_info_container .progress_bar_container .progress_bar_info_container .progress_bar_curr {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.app_cart_price_info_container .btn_app_cart_price_info {
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  background-color: rgb(237, 237, 237);
  border-radius: 0.4rem;
  padding: 0.4rem 0.6rem;
  color: #353535;
  font-size: 0.8rem;
  text-transform: uppercase;
  -webkit-box-shadow: 1px 1px 5px -1px #e7ceff;
          box-shadow: 1px 1px 5px -1px #e7ceff;
  border: 1px solid #b6b6b6;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}
.app_cart_price_info_container .btn_app_cart_price_info:hover {
  background-color: rgb(197, 197, 197);
}
.app_cart_price_info_container .btn_app_cart_price_info:nth-child(3) {
  margin-left: 0.5rem;
}
.app_cart_price_info_container .btn_unbind_discountCode {
  color: #858585;
  font-size: 0.7rem;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.app_cart_price_info_container .btn_unbind_discountCode:hover {
  text-decoration: underline;
}
.app_cart_price_info_container .continue_btn_container_block {
  width: calc(100% - 1rem);
  max-width: 35rem;
  margin: 4rem auto 0 auto;
}
.app_cart_price_info_container .continue_btn_container_block a.btn_continue_to_cart {
  position: relative;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 50%;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#d100e4), to(#651cb9));
  background: linear-gradient(90deg, #d100e4, #651cb9);
  color: white;
  display: block;
  text-decoration: none;
  text-align: center;
}
.app_cart_price_info_container .continue_btn_container_block a.btn_continue_to_cart:hover {
  background: -webkit-gradient(linear, left top, right top, from(#d100e4), to(#651cb9));
  background: linear-gradient(90deg, #d100e4, #651cb9);
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  text-decoration: underline;
}
.app_cart_price_info_container .continue_btn_container_block .btn_subtext {
  position: relative;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 50%;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 0.25rem;
}
.app_cart_price_info_container .discountCodeCard {
  width: calc(100% - 1.8rem);
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2rem 0.5rem 0.5rem 0.5rem;
  margin-top: 1rem;
  background-color: #f3f3f3;
  border: 0.1rem solid transparent;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #333333;
  position: relative;
  overflow: hidden;
  background-color: white;
}
.app_cart_price_info_container .discountCodeCard.active {
  border-color: #26f200;
}
.app_cart_price_info_container .discountCodeCard.active .header {
  background-color: #d4ffd4;
  color: #026a02;
}
.app_cart_price_info_container .discountCodeCard:not(.active) {
  border-color: #ff1f1f;
}
.app_cart_price_info_container .discountCodeCard:not(.active) .header {
  background-color: #ffd4d4;
  color: #a80000;
}
.app_cart_price_info_container .discountCodeCard .header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 0.95rem;
  padding: 0.35rem 0.7rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.app_cart_price_info_container .discountCodeCard .discount_amount {
  font-size: 1.2rem;
  font-weight: 100;
  font-style: italic;
  margin: 0.4rem 0 0 0.6rem;
}
.app_cart_price_info_container .discountCodeCard .error_text {
  color: #a80000;
  margin: 0.5rem 0.6rem 1rem 0.6rem;
}
.app_cart_price_info_container .discountCodeCard .progress_bar_container .progress_bar_filled {
  background: linear-gradient(355deg, #ff4949, #ffb2b2);
}
.app_cart_price_info_container .discountCodeCard .btn_container_block {
  display: block;
  text-align: center;
  padding: 0.85rem 0 0.25rem 0;
}
.app_cart_price_info_container .discountCodeCard .saved_amount {
  font-size: 1.4rem;
  font-weight: bold;
  color: #006400;
  text-align: center;
  margin-top: 0.5rem;
}
.app_cart_price_info_container .discountCodeCard .apply_for_products_info_string {
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 100;
  margin: 0.5rem 0.85rem 0 0.6rem;
}
.app_cart_price_info_container .discountCodeCard .apply_for_products_info_string ul {
  margin-top: 0.25rem;
  padding-left: 1.2rem;
  list-style-type: disc;
}
.app_cart_price_info_container .discountCodeCard .apply_for_products_info_string ul li {
  margin-bottom: 0.15rem;
}
.app_cart_price_info_container .discount_code_input_container {
  display: none;
}
.app_cart_price_info_container .discount_code_input_container input[type=text] {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin-right: auto;
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.2rem;
  line-height: 2rem;
  height: 2rem;
  padding: 0 0.8rem;
  border: 1px solid #6300a2;
  background-color: white;
  margin: 0.8rem 0;
  border-radius: 0.4rem;
}

.retroPhoto_editor_modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-color: rgb(62, 62, 62);
}
.retroPhoto_editor_modal.main .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main {
  left: 0%;
  opacity: 1;
}
.retroPhoto_editor_modal.main .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary {
  left: 100%;
  opacity: 0;
}
.retroPhoto_editor_modal:not(.main) .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main {
  left: -100%;
  opacity: 0;
}
.retroPhoto_editor_modal:not(.main) .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary {
  left: 0%;
  opacity: 1;
}
.retroPhoto_editor_modal .back_btn_bar {
  height: 3rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.retroPhoto_editor_modal .back_btn_bar button.btn_back {
  margin: auto 0 auto 2rem;
  height: 1.7rem;
  line-height: 1.7rem;
  border: none;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
}
.retroPhoto_editor_modal .back_btn_bar button.btn_back .inline_img {
  width: 1.2rem;
  height: 1.2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.retroPhoto_editor_modal .back_btn_bar button.btn_back .btnText {
  font-family: "OpenSans";
  font-size: 1rem;
  font-weight: 300;
  margin-left: 0.2rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window {
  position: absolute;
  top: calc(50% - 1rem);
  left: 50%;
  width: calc(100% - 1rem);
  max-width: 40rem;
  height: calc(100% - 3rem);
  max-height: 65rem;
  background-color: #ffffff;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 1rem rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.83);
  position: absolute;
  z-index: 6;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 1rem);
  max-width: 30rem;
  background-color: white;
  border-radius: 0.35rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 1rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .icon {
  width: 2rem;
  height: 2rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0.5rem 0.5rem 0.5rem 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .question_text {
  width: calc(100% - 4.5rem);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.25rem;
  font-family: "OpenSans";
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .btns_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 3rem;
  margin-top: 1rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .btns_container button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3rem;
  line-height: 3rem;
  border: none;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "OpenSans";
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .btns_container button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  text-decoration: underline;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .btns_container button.yes {
  background: linear-gradient(52deg, #7234ff, #c81895);
  color: white;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .confirm_leave_element .inner .btns_container button.no {
  background: linear-gradient(52deg, #f1ebff, #d5bece);
  color: #6a6a6a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  z-index: 5;
  -webkit-animation-name: temp_modal_appear;
          animation-name: temp_modal_appear;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes temp_modal_appear {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes temp_modal_appear {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal.closing {
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-animation-name: temp_modal_disappear;
          animation-name: temp_modal_disappear;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes temp_modal_disappear {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
}
@keyframes temp_modal_disappear {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
  }
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content {
  width: 100%;
  height: 100%;
  -webkit-animation-name: temp_modal_content_fadein;
          animation-name: temp_modal_content_fadein;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}
@-webkit-keyframes temp_modal_content_fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes temp_modal_content_fadein {
  0% {
    opacity: 0;
  }
  66% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content {
  /********************************************/
  /*****   jednotlivé typy modalů     *********/
  /********************************************/
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection h1 {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  text-align: center;
  padding: 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .pruvodni_text {
  width: 100%;
  font-family: "OpenSans";
  text-align: center;
  font-size: 0.9rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.25rem 1.4rem;
  line-height: 0.95rem;
  margin-bottom: 1rem;
  color: #373737;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  width: 100%;
  border-top: 0.1rem solid #d8d8d8;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container .data_container_inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.2rem 0.3rem 2rem 0.3rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container .data_container_inner h2.category_header {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 2.6rem 0.4rem 0.2rem 1rem;
  font-family: "Oswald";
  font-size: 1.3rem;
  font-weight: bold;
  color: #3b3b3b;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container .data_container_inner .image_link {
  width: 3rem;
  height: 3rem;
  margin: 0.15rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container .data_container_inner .image_link .icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  border: 0.1rem solid transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: border-color 0.2s ease-in-out;
  transition: border-color 0.2s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.stampImageSelection .data_container .data_container_inner .image_link .icon:hover {
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector h1 {
  width: 100%;
  height: 3rem;
  line-height: 3rem;
  font-size: 1.4rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  text-align: center;
  padding: 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-y: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item {
  width: 12rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  position: relative;
}
@media (max-width: 31rem) {
  .retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item {
    width: 50%;
  }
}
@media (min-width: 31rem) {
  .retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item {
    width: 33.33%;
  }
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item.selected {
  border: 0.2rem solid red;
  border-radius: 0.15rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item.selected .selected_absolute_text {
  display: block;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item.selected .btn_select {
  display: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item:not(.selected) .selected_absolute_text {
  display: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item .selected_absolute_text {
  color: red;
  background-color: white;
  position: absolute;
  top: -0.5rem;
  right: 0.8rem;
  padding: 0 0.4rem;
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 0.85rem;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item .font_name {
  width: 100%;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  font-size: 0.85rem;
  line-height: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #3e3e3e;
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item .sample_text {
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item .btn_select {
  font-size: 0.75rem;
  line-height: 1.6rem;
  height: 1.6rem;
  text-align: center;
  padding: 0 0.5rem;
  border-radius: 5rem;
  border: 0.15rem solid rgb(62, 0, 179);
  background-color: white;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  font-weight: 400;
  color: #555555;
  -webkit-box-shadow: inset 0 0 0rem rgba(55, 0, 255, 0.3215686275);
          box-shadow: inset 0 0 0rem rgba(55, 0, 255, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .temp_modal .temp_modal_content.temp_modal_fontFamilySelector .data_container .item .btn_select:hover {
  -webkit-box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
          box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: left 0.4s linear, opacity 0.4s linear;
  transition: left 0.4s linear, opacity 0.4s linear;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header {
  height: 3rem;
  text-align: center;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .product_info {
  font-size: 0.75rem;
  line-height: 0.8rem;
  font-family: "OpenSans";
  color: #555555;
  text-transform: lowercase;
  max-width: 5rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.15rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_text {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto; /* roztáhni se, pokud můžeš */
  text-align: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_text .header_text_inner {
  font-size: 1.2rem;
  line-height: 1.35rem;
  font-weight: 500;
  padding: 0 0.2rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_button {
  max-width: 5.5rem;
  margin-right: 0.7rem;
  height: 2rem;
  background-color: #ffcece;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  border-radius: 0.15rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0.1rem solid #ff8585;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_button .header_button_icon {
  display: block;
  width: 80%;
  height: calc(100% - 1rem);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  top: 0.2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .header .header_button .header_button_text {
  color: black;
  font-size: 0.75rem;
  line-height: 0.95rem;
  height: 0.95rem;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "OpenSans";
  text-transform: lowercase;
  padding: 0 0.2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  user-select: none;
  pointer-events: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container {
  width: 100%;
  height: calc(100% - 6rem);
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container {
  width: calc(100% - 1rem);
  max-width: 20rem;
  margin: 0 auto;
  height: 2.2rem;
  margin-bottom: 0.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .label_icon_icon_container {
  width: 2.2rem;
  height: 2rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .label_icon_icon_container img.label_img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 2.7rem);
  height: 100%;
  border: 0.1rem solid #d5bece;
  border-radius: 0.25rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  margin-left: 0.5rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .switch_option {
  width: 50%;
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  font-family: OpenSans;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .switch_option.active {
  background-color: #7234ff;
  color: white;
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .switch_option:not(.active) {
  background-color: #f1ebff;
  color: #6a6a6a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .switch_option:not(.active):hover {
  background-color: #e0d1ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .part_element {
  line-height: 2.2rem;
  height: 2.2rem;
  text-align: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .part_element.button {
  width: 30%;
  background-color: #7234ff;
  color: white;
  border-color: #7234ff;
  font-family: "OpenSans";
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .part_element.button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_switch_container .switch_btns_container .part_element.count_display {
  width: 40%;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  outline: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container {
  height: 60vh;
  width: 100%;
  position: relative;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container img.img_retroPhoto_preview {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
          filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  -webkit-perspective: 1000;
  -webkit-backface-visibility: hidden;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div {
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div:not(.photo_element_listener_div) {
  background-color: rgba(70, 255, 0, 0.56);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div img.background_click_and_edit_icon {
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  opacity: 0.7;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div {
  -webkit-animation-name: pulsingOpacity;
          animation-name: pulsingOpacity;
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
@-webkit-keyframes pulsingOpacity {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes pulsingOpacity {
  0% {
    opacity: 0;
  }
  35% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div {
  /*
  border: 0.15rem dashed #00ff00;

  animation-name: pulsingBorder;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;


  .debug_dot {
      width: 4px;
      height: 4px;
      transform: translate(-50%, -50%);
      background-color: yellow;
      position:absolute;
  }

  cursor: pointer;

  @keyframes pulsingBorder {
      0% {
          border: 0.15rem dashed #00ff0000;
      }
      50% {
          border: 0.15rem dashed #00ff00;
      }
      100% {
          border: 0.15rem dashed #00ff0000;
      }
  }

  &:hover {
      border: 0.15rem dashed #00ff00 !important;
  }
  */
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div .btn_delete_element {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: -1rem;
  left: -1rem;
  background-color: rgba(68, 68, 68, 0.5);
  border-radius: 0.15rem;
  cursor: pointer;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .main_retroPhoto_preview_container .element_listener_div .btn_delete_element img.icon {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btn_edit_background {
  font-family: "OpenSans";
  font-size: 0.9rem;
  color: rgb(0, 37, 92);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  border: none;
  margin: 0.2rem 0 0.5rem 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btn_edit_background img {
  display: inline;
  width: 1.2rem;
  height: 0.9rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  top: 0.15rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btn_edit_background:hover {
  text-decoration: underline;
  cursor: pointer;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container {
  height: 4rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.4rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container button.btn_add_element {
  border: 0.1rem dashed rgb(200, 196, 196);
  background-color: rgb(245, 245, 245);
  border-radius: 0.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45%;
  max-width: 9rem;
  cursor: pointer;
  padding: 0.45rem 0.55rem;
  font-family: "OpenSans";
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container button.btn_add_element .icon_container {
  width: 2rem;
  height: 2rem;
  position: relative;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container button.btn_add_element .icon_container::after {
  z-index: 2;
  content: "+";
  position: absolute;
  width: 1rem;
  height: 1rem;
  bottom: -0.25rem;
  left: -0.2rem;
  line-height: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  background-color: rgb(62, 255, 45);
  color: white;
  border-radius: 50%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container button.btn_add_element .icon_container img.icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.5;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.main .content_main_container .btns_add_elements_container button.btn_add_element .btnText {
  width: calc(100% - 2rem);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 0.35rem;
  line-height: 0.8rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.2rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface h1 {
  height: 2rem;
  width: 100%;
  line-height: 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  padding: 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 1rem;
  min-height: 50%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container {
  height: 100%;
  position: relative;
  width: calc(100% - 1.2rem);
  margin: 0 auto;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container img.retroPhoto_preview {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
          filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container canvas.preview_overlay_canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element {
  position: absolute;
  border: 0.1rem dashed #ff0000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 3;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .invisible_drag_area {
  width: 100%;
  height: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .debug_center_dot {
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: blue;
  position: absolute;
  border-radius: 50%;
  z-index: 10;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn {
  position: absolute;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  background-color: rgb(93, 93, 93);
  -webkit-box-shadow: 1px -1px 5px 0px rgba(175, 175, 175, 0.3215686275);
          box-shadow: 1px -1px 5px 0px rgba(175, 175, 175, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.btn_delete_element {
  width: 2rem;
  height: 2rem;
  top: -1rem;
  left: -1rem;
  border-radius: 0.15rem;
  cursor: pointer;
  border: 0.1rem dotted #acacac;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.btn_rotate_element {
  width: 2.4rem;
  height: 2.4rem;
  top: -2.7rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0.15rem;
  cursor: pointer;
  border: 0.1rem dotted #acacac;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.btn_resize_element {
  width: 1.8rem;
  height: 1.8rem;
  top: 50%;
  right: -0.75rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  border: 0.1rem dotted #acacac;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.btn_layerOrder_up {
  width: 1.5rem;
  height: 1.5rem;
  bottom: -1.6rem;
  left: 0.2rem;
  border-radius: 0.15rem;
  border: 0.1rem dotted #acacac;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.btn_layerOrder_down {
  width: 1.5rem;
  height: 1.5rem;
  bottom: -1.6rem;
  left: 2.1rem;
  border-radius: 0.15rem;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  border: 0.1rem dotted #acacac;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .preview_and_element_controls_container .left_preview_container .overlay_of_element .overlay_of_element_btn img.icon {
  width: 70%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  pointer-events: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  overflow-y: auto;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement {
  padding: 1rem 0 3rem 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .label_global {
  font-family: "OpenSans";
  font-size: 0.9rem;
  font-weight: 700;
  color: #303030;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 1rem 0.5rem 0.2rem 1rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container {
  position: relative;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea {
  width: calc(100% - 1rem);
  margin: 0 auto;
  display: block;
  height: 6rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  resize: none;
  font-family: "OpenSans";
  font-size: 1rem;
  padding: 0.6rem;
  border: 0.1rem solid #d5bece;
  border-radius: 0.25rem;
  outline: none;
  -webkit-box-shadow: inset 0 0 0.5rem rgba(213, 190, 206, 0.3215686275);
          box-shadow: inset 0 0 0.5rem rgba(213, 190, 206, 0.3215686275);
  -webkit-transition: border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
  line-height: 1.2rem;
  font-weight: 400;
  color: #373737;
  background-color: #fefefe;
  -webkit-user-select: text;
     -moz-user-select: text;
      -ms-user-select: text;
          user-select: text;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea::-webkit-input-placeholder {
  color: #b3b3b3;
  font-style: italic;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea::-moz-placeholder {
  color: #b3b3b3;
  font-style: italic;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea:-ms-input-placeholder {
  color: #b3b3b3;
  font-style: italic;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea::-ms-input-placeholder {
  color: #b3b3b3;
  font-style: italic;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea::placeholder {
  color: #b3b3b3;
  font-style: italic;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container textarea:focus {
  -webkit-box-shadow: inset 0 0 0.5rem #a67aff;
          box-shadow: inset 0 0 0.5rem #a67aff;
  border-color: #a67aff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .main_textarea_container .label {
  position: absolute;
  top: -0.6rem;
  left: 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #303030;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "OpenSans";
  text-transform: uppercase;
  /* text-decoration: underline; */
  background-color: white;
  padding: 0 0.4rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .slider_container {
  width: calc(100% - 2rem);
  height: 2rem;
  margin: 0 auto;
  position: relative;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .slider_container::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.1rem;
  background-color: #796c75;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .slider_container .curr_value_display {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translateY(-0.8rem);
          transform: translateY(-0.8rem);
  font-size: 0.8rem;
  font-family: "OpenSans";
  font-weight: 300;
  color: rgb(78, 78, 78);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .slider_container .slider {
  position: absolute;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background-color: #7234ff;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style {
  min-width: 2rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "OpenSans";
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: none;
  background: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style:hover .btnText {
  text-decoration: underline;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style.active {
  color: white;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style.active .icon_background {
  background-color: #7234ff;
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style.active:hover .icon_background {
  background-color: #5e2ed9;
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style:not(.active) {
  color: #4a4a4a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style:not(.active):hover .icon_background {
  background-color: #e0d1ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style:not(.active) .icon_background {
  background-color: #f1ebff;
  border: 0.1rem solid #b3b3b3;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style .icon_background {
  position: absolute;
  width: 2rem;
  height: 2rem;
  top: 0;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 0.25rem;
  z-index: 1;
  -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style img.icon {
  width: 100%;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  z-index: 1;
  top: 0.5rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .buttons_container button.btn_style .btnText {
  max-width: 6rem;
  font-size: 0.75rem;
  text-align: center;
  color: #4a4a4a;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 1.1rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_container {
  position: relative;
  width: calc(100% - 1rem);
  left: 1rem;
  height: 0;
  overflow: visible;
  top: -100px;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_container .hidden_text_input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn {
  width: calc(100% - 2rem);
  max-width: 16rem;
  border-radius: 0.55rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0.15rem solid #bababa;
  margin: 1rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn:hover {
  -webkit-box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
          box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn .color_thumb {
  height: 2rem;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0.15rem;
  border-radius: 0.35rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn .color_edit_text {
  height: 2rem;
  line-height: 2rem;
  padding: 0 0.8rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn .color_edit_text .icon {
  width: 0.8rem;
  height: 0.8rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  top: 0.1rem;
  margin-right: 0.25rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .color_picker_btn .color_edit_text .color_edit_text_span {
  font-family: "OpenSans";
  font-size: 0.8rem;
  font-weight: 400;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-transform: uppercase;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .font_family_selector {
  width: calc(100% - 2rem);
  height: 2rem;
  margin: 0 auto;
  border: 0.15rem solid #bababa;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 0.55rem;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .font_family_selector:hover {
  -webkit-box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
          box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .font_family_selector .selected_font_family {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 100%;
  line-height: 2rem;
  font-size: 0.9rem;
  color: #303030;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 0.5rem 0 1rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .element_edit_interface .settings_container.settings_container_textElement .font_family_selector img.dropdown_icon {
  height: 1rem;
  width: 0.8rem;
  margin: 0 0.6rem;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: normal;
      -ms-flex-align: normal;
          align-items: normal;
  height: 100%;
  width: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container h1 {
  height: 1.2rem;
  width: 100%;
  line-height: 1.2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  padding: 0 0 0.8rem 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .preview_container {
  height: calc(50% - 1rem);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .preview_container .preview_container_inner {
  width: 100%;
  height: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .preview_container .preview_container_inner img.preview_img {
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
          filter: drop-shadow(0.1rem 0.1rem 0.4rem rgb(80, 80, 80));
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container {
  height: calc(50% - 1rem);
  overflow: hidden;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=image] .switch_control .option.option_image {
  background-color: #7234ff;
  color: white;
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=image] .switch_control .option.option_color {
  background-color: #f1ebff;
  color: #6a6a6a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=image] .switch_control .option.option_color:hover {
  background-color: #e0d1ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=image] .imageOrColor_selection_container .image_selection_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=image] .imageOrColor_selection_container .color_selection_container {
  display: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=color] .switch_control .option.option_image {
  background-color: #f1ebff;
  color: #6a6a6a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=color] .switch_control .option.option_image:hover {
  background-color: #e0d1ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=color] .switch_control .option.option_color {
  background-color: #7234ff;
  color: white;
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=color] .imageOrColor_selection_container .image_selection_container {
  display: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container[data-active-option=color] .imageOrColor_selection_container .color_selection_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner {
  width: 100%;
  height: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .switch_background_type_container {
  width: calc(100% - 2rem);
  margin: 0 auto;
  height: 3rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .switch_background_type_container .switch_control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border-radius: 0.25rem;
  border: 0.1rem solid #d5bece;
  overflow: hidden;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .switch_background_type_container .switch_control .option {
  width: 50%;
  font-family: "OpenSans";
  width: 50%;
  height: 2.2rem;
  line-height: 2.2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container {
  height: calc(100% - 3rem);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.25rem;
  height: 100%;
  overflow-y: auto;
  padding: 2rem 0 4rem 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item {
  width: 23%;
  padding-top: 23%;
  position: relative;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item.active .image_btn_flex_item_inner {
  border: 0.2rem solid #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item .image_btn_flex_item_inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item .image_btn_flex_item_inner .label_no_image_selected {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "OpenSans";
  font-size: 0.75rem;
  font-weight: 400;
  color: #6a6a6a;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item .image_btn_flex_item_inner img.bg_image_option {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border: 0.1rem solid #b3b3b3;
  border-radius: 0.25rem;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .image_selection_container .image_btn_flex_item .image_btn_flex_item_inner img.bg_image_option:hover {
  border-color: #7234ff;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-bottom: 5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button {
  width: 18rem;
  height: 3rem;
  margin: 2rem auto 0.5rem auto;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  border: 0.1rem solid #4d0082;
  padding: 0.25rem;
  border-radius: 0.55rem;
  -webkit-transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: -webkit-box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out;
  transition: box-shadow 0.3s ease-in-out, -webkit-box-shadow 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button:hover {
  -webkit-box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
          box-shadow: inset 0 0 0.4rem rgba(55, 0, 255, 0.3215686275);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button .color_preview {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
  border-radius: 0.35rem;
  -webkit-box-shadow: 0px 0px 3px 0px grey;
          box-shadow: 0px 0px 3px 0px grey;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button .color_txt_edit_container {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  height: 3rem;
  line-height: 3rem;
  padding: 0 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button .color_txt_edit_container img.icon {
  display: inline;
  width: 1rem;
  height: 1rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .color_picker_button .color_txt_edit_container .text {
  display: inline;
  font-family: "OpenSans";
  font-size: 0.9rem;
  font-weight: 400;
  color: #303030;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  margin-left: 0.4rem;
  text-transform: uppercase;
  user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .coloris_container {
  width: calc(100% - 3rem);
  height: 12rem;
  position: relative;
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .background_edit_container .controls_container .controls_container_inner .imageOrColor_selection_container .color_selection_container .coloris_container .hidden_text_input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 0;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container {
  width: 100%;
  height: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .error {
  width: 100%;
  padding: 1rem;
  color: red;
  font-family: "OpenSans";
  padding: 0.8rem;
  text-align: center;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container h1 {
  height: 1.2rem;
  width: 100%;
  line-height: 1.2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  text-transform: uppercase;
  padding: 0;
  margin-bottom: 0.8rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .canvas_container {
  height: 60%;
  width: 100%;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .canvas_container canvas.photo_edit_canvas {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container {
  height: calc(40% - 2rem);
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  overflow-y: auto;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block {
  width: 33%;
  padding: 0.55rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block h2 {
  font-family: "Oswald", "FiraSansCondensedBoldFallback";
  font-size: 0.9rem;
  line-height: 0.9rem;
  text-align: center;
  margin-bottom: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .icon {
  width: 2.5rem;
  height: 2.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .text {
  font-family: "OpenSans";
  font-size: 0.8rem;
  line-height: 1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-top: 0.8rem;
  color: rgb(104, 104, 104);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .buttons_container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 0.75rem;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .buttons_container .rotate_button {
  width: 3rem;
  height: 3rem;
  background-color: rgb(209, 209, 209);
  border-radius: 0.2rem;
  border: 0.1rem solid rgb(184, 184, 184);
  cursor: pointer;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .buttons_container .rotate_button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container.secondary .content .photo_edit_container .controls_container .block .buttons_container .rotate_button .icon {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container {
  margin-top: auto;
  width: 100%;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 3rem;
  line-height: 3rem;
  border: none;
  text-align: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "OpenSans";
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  -webkit-transition: -webkit-filter 0.3s ease-in-out;
  transition: -webkit-filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out;
  transition: filter 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container button:hover {
  -webkit-filter: brightness(0.9);
          filter: brightness(0.9);
  text-decoration: underline;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container button.btn_main {
  background: linear-gradient(52deg, #7234ff, #c81895);
  color: white;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container button.btn_secondary {
  background: linear-gradient(52deg, #f1ebff, #d5bece);
  color: #6a6a6a;
}
.retroPhoto_editor_modal .retroPhoto_editor_modal_content_window .retroPhoto_editor_modal_content_container .btns_container button .inline_img {
  display: inline;
  width: 1.8rem;
  height: 1.3rem;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  vertical-align: middle;
  position: relative;
  top: -0.1rem;
  margin-right: 0.2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}/*# sourceMappingURL=style.css.map */