@charset "UTF-8";
:root {
  --orange: coral;
  --red:#CD1F26;
  --cpBlue: #337ab7;
  --cpLightBlue: #448cc9;
  --headerfont: "Montserrat", "Roboto", "Nunito Sans", "Arial";
  --textFontFamily: "Roboto", "Open Sans", Arial, Verdana;
}

*,
*::before,
*::after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #333333;
  background: #fafafa;
  font-family: var(--textFontFamily);
  font-size: 14px;
}

.info-banner {
  text-align: center;
  width: 100%;
  z-index: 72;
}
.info-banner__item {
  width: 100%;
  z-index: 0;
  font-size: 1rem;
  display: none;
  z-index: 1;
  line-height: 28px;
  background: black;
  color: white;
  padding: 10px 5px;
}
@media only screen and (min-width: 768px) {
  .info-banner__item {
    font-size: 14px;
    line-height: 31px;
  }
}
.info-banner__item--active {
  display: block !important;
}
.info-banner__subtext {
  font-size: 0.7rem;
  color: #d9d9d9;
  line-height: 20px;
}
@media only screen and (min-width: 768px) {
  .info-banner__subtext {
    line-height: 25px;
  }
}

.usp-banner {
  background: #fff;
  text-align: center;
  color: #4d4d4d;
  font-size: 0.7rem;
}
.usp-banner--mobile {
  display: block;
  border-bottom: 1px solid #eee;
}
@media only screen and (min-width: 992px) {
  .usp-banner--mobile {
    display: none;
  }
}
.usp-banner--desktop {
  display: none;
}
@media only screen and (min-width: 992px) {
  .usp-banner--desktop {
    display: block;
    margin-right: 1em;
  }
}
.usp-banner > ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.usp-banner > ul > li {
  display: inline-block;
  padding: 0 7px;
  line-height: 35px;
}

.country-selector {
  position: relative;
  cursor: pointer;
}
.country-selector .icon--chevron-up {
  font-size: 0.6rem;
  transform: rotate(180deg);
}
.country-selector__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: none;
  background: none;
}
body.dropdown-overlay-open .country-selector__overlay {
  display: block;
}

.flag-icon {
  width: 16px;
  height: 12px;
  box-shadow: 0 0 1px black;
}

.country-list {
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #f1f1f1;
  transform: translateY(-15px);
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  text-align: left;
}
.country-list--open {
  transition: opacity 150ms linear, transform 150ms linear;
  opacity: 1;
  transform: translateY(0);
  width: 145px;
  z-index: 11;
  height: auto;
}
.country-list__item {
  padding: 0 !important;
  display: block !important;
  line-height: 1rem;
}
.country-list__item a {
  padding: 0.5em 1em;
  display: flex;
  width: 100%;
  font-size: 12px;
  align-items: center;
}
.country-list__item a:hover {
  background: #f1f1f1;
  text-decoration: none;
}
.country-list__item a .flag-icon {
  margin-right: 5px;
}

header {
  position: sticky;
  width: 100%;
  z-index: 700;
  top: 0px;
  background: white;
}
@media only screen and (min-width: 768px) {
  header {
    position: relative;
    border-bottom: 2px solid #ccc;
  }
  header .navbar-right ul {
    opacity: 1;
  }
}

.topbar-mobile-menu {
  display: flex;
  align-items: center;
  gap: 0.8em;
  /*&__btn {

  }*/
}
@media only screen and (min-width: 992px) {
  .topbar-mobile-menu {
    display: none;
  }
}
.topbar-mobile-menu__search {
  font-size: 18px;
  color: black;
}

.header-ghost {
  display: none;
}

.open-cart {
  position: relative;
}

.items-in-cart {
  position: absolute;
  right: 2px;
  top: -8px;
  font-weight: bold;
  font-family: var(--text-font-family);
}

.header-search {
  border: 1px solid #cccccc;
  display: flex;
  align-items: center;
}
.header-search__btn {
  background: transparent;
  border: 0;
  font-size: 1rem;
  padding: 0 0.5em;
}
.header-search__input {
  background: transparent;
  border: 0;
  font-size: 1rem;
  padding: 0.3em 0.7em;
  border-left: 1px solid #cccccc;
  outline: transparent;
}

.custom-radio-input {
  width: 18px;
  height: 18px;
  -webkit-box-shadow: 0 0 0 0 #0a0808 inset;
  box-shadow: 0 0 0 0 #0a0808 inset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  vertical-align: -4px;
  border: 1px solid;
  border-color: #d9d9d9;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: inherit;
  background: transparent;
  outline: none;
}

.custom-radio-input:checked {
  border: none;
  box-shadow: 0 0 0 10px #0a0808 inset;
}

.custom-radio-input::after {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
  opacity: 0;
}

.custom-radio-input:checked::after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.checkout-cart-item td {
  padding: 0.5em;
  vertical-align: middle;
}
.checkout-cart-item td:first-child {
  padding-left: 0;
}
.checkout-cart-item td:last-child {
  padding-right: 0;
}
.checkout-cart-item__img {
  min-width: 70px;
}
.checkout-cart-item__img img {
  max-width: 60px;
}
@media only screen and (min-width: 768px) {
  .checkout-cart-item__img img {
    max-width: 100px;
  }
}
.checkout-cart-item__details {
  width: 100%;
  font-size: 0.9rem;
}
.checkout-cart-item__details-cell {
  display: block;
  width: 100%;
  padding: 0.3em 0;
}
@media only screen and (min-width: 768px) {
  .checkout-cart-item__details-cell {
    display: inline-block;
    width: 49%;
  }
}
.checkout-cart-item__text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.discount-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  padding: 1.2em 0;
}
@media only screen and (min-width: 768px) {
  .discount-section {
    flex-direction: row;
  }
}
.discount-section__item {
  padding: 1em;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .discount-section__item {
    padding: 0 1em;
  }
}

.checkout-shipping-company {
  padding: 0 !important;
  text-align: center;
  background: #f2f2f2;
}
.checkout-shipping-company svg {
  font-size: 1rem;
  width: auto;
  margin: 1em 0;
}
.checkout-shipping-company img {
  margin: 1em 0;
  height: 1.5rem;
}
.checkout-shipping-company--dhl {
  background: #fc0;
  color: #c00;
}
.checkout-shipping-company--posti {
  background: #3B4A57;
  color: #fff;
}
.checkout-shipping-company--bring {
  background: #7bc144;
  color: #fff;
}
.checkout-shipping-company--bifrost-de {
  background: #ffcc00;
}
.checkout-shipping-company--bifrost-at {
  background: #fddd00;
}
.checkout-shipping-company--bifrost-pl {
  background: #c00;
}
.checkout-shipping-company--bifrost-ie {
  background: #00a76a;
}
.checkout-shipping-company--bifrost-se {
  background: #1199bb;
}
.checkout-shipping-company--bifrost-hu img {
  height: 2rem;
}
.checkout-shipping-company--bifrost-nl img {
  height: 3rem;
}

.payment-methods {
  padding: 0;
  margin: 0;
  list-style: none;
}
.payment-methods__item {
  border-bottom: 1px solid #ccc;
  position: relative;
}
.payment-methods__item:last-child {
  border-bottom: none;
}
.payment-methods__item > label {
  display: flex;
  padding: 25px 10px;
  margin-bottom: 0;
  justify-content: space-between;
}
.payment-methods__info {
  display: block;
  color: #999;
  margin-top: 2px;
}
.payment-methods__name {
  display: flex;
}
.payment-methods__logos {
  display: flex;
}
.payment-methods__logo {
  max-height: 26px;
  width: 45px;
  margin-right: 0px;
}
@media only screen and (min-width: 768px) {
  .payment-methods__logo {
    width: 40px;
    margin-right: 17px;
  }
}
.payment-methods__logo--swish {
  max-height: 40px;
  width: 70px;
}
.payment-methods__additional-data {
  display: none;
  padding: 10px 42px;
  border-top: 1px solid #ccc;
  background: #f4f4f4;
}
.payment-methods__additional-data label {
  font-weight: bold;
  font-size: 11px;
}
.payment-methods .radio-input, .payment-methods .custom-radio-input {
  margin-right: 10px;
}

.secure-payments {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
}
.secure-payments svg {
  font-size: 1.8rem;
  margin-left: 0.2em;
}

#summary-campaign-discount {
  color: #c9302c;
}

.delivery-options {
  margin: 3em 0;
  display: flex;
  flex-direction: column;
  gap: 1em;
  list-style: none;
  padding: 0;
}

.delivery-option {
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 1em;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1em;
  cursor: pointer;
}
.delivery-option:has(:checked), .delivery-option--checked {
  border-color: #083d59;
  background-color: #f6fbfe;
}
.delivery-option__check {
  font-size: 22px;
}
.delivery-option__details {
  width: 100%;
}
.delivery-option__icon {
  height: 35px !important;
  width: 90px !important;
}
.delivery-option__price {
  font-size: 15px;
  font-weight: 700;
}

.third-party-checkout {
  padding: 2em;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 3px;
}

h2.font-bold {
  font-family: "Roboto", "Open Sans", "Open Sans", Arial;
  font-weight: 700;
}

button {
  outline: none;
}

a {
  color: #475b52;
}

a:hover {
  color: #576e64;
  text-decoration: underline;
}

a, a:focus, a:active {
  outline: none;
}

@media (max-width: 768px) {
  .modal-dialog {
    margin: 6rem auto;
  }
}
.small-text {
  font-size: 50%;
}

.text-ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
  white-space: nowrap;
}

h3 + .sub-heading {
  margin-top: -6px;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #222;
  padding-bottom: 30px;
}

/* Back to top button */
#back-to-top {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.75);
  font-size: 12px;
  line-height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.25s linear;
  color: #fff;
  opacity: 0;
}

#back-to-top:hover {
  text-decoration: none;
  background: rgba(229, 65, 45, 0.85);
}

#back-to-top.show {
  opacity: 1;
}

.scrollbar::-webkit-scrollbar {
  width: 4px;
  background-color: #e9e9e9;
}

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #000;
}

.settings-title {
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 25px 0;
  display: flex;
  justify-content: center;
}

.settings-title h2 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.settings-title h2:after {
  content: "";
  display: block;
  width: 282px;
  height: 3px;
  background-color: #000;
  margin-top: 15px;
}

img.lazy {
  min-width: 100%;
  z-index: 1;
}

.loading-spin {
  position: absolute;
  top: 50%;
  font-size: 25px;
  color: #d6d6d6;
  margin-top: -12.5px;
  margin-left: -12.5px;
  left: 50%;
}

.flex-center {
  display: flex;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.top-margin {
  padding-top: 20px;
}

.text-article-number {
  color: #ccc;
  font-size: 10px;
}

.show-if-empty {
  display: none;
}

h2.header, .block-header {
  position: relative;
  color: #303030;
  font-size: 16px;
  margin: 50px 0 30px;
  width: 100%;
}

h2.header:before, .block-header:before {
  content: "";
  display: block;
  border-top: solid 1px #c1c1c1;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}

h2.header span, .block-header span {
  background: #fafafa;
  padding: 0 20px;
  position: relative;
  z-index: 5;
}

.body-overlay {
  background: rgba(255, 255, 255, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 699;
  display: none;
}

.body-overlay.active {
  display: block;
}

.txt-color-yellow {
  color: #ffd203;
}

.top-flash {
  border-bottom: 1px solid #e6e6e6;
  text-align: center;
}

.top-flash .item {
  padding: 5px;
}

.top-flash .open-product-modal {
  margin: 15px 0;
}

.brand-area {
  border-bottom: 2px solid #eee;
  position: relative;
}

.brand-area .hover-menu {
  position: relative;
  text-align: center;
}

.mobile-btn-sub {
  list-style: none;
  text-align: center;
  padding: 0;
  border: 1px solid #ccc;
  border-bottom: none;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  margin: 0;
}

.active + .mobile-btn-sub {
  max-height: 500px;
}

.mobile-btn-sub li a {
  display: block;
  border-bottom: 1px solid #ccc;
  color: #111;
  padding: 10px;
  background: #fff;
}

.mobile-btn-sub li a:hover {
  background: #f1f1f1;
}

@media (max-width: 760px) {
  .brand-area {
    border-bottom: 1px solid #eee;
  }

  .brand-area .hover-menu {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
  }
}
.site-menu {
  padding: 15px 0 0 0;
  list-style: none;
  position: relative;
  width: 100%;
}

.site-menu > li {
  display: inline-block;
  cursor: pointer;
  color: #000;
}

.site-menu a {
  color: #000 !important;
}

.site-menu > li > a {
  padding: 15px 8px;
}

.site-menu a:hover {
  text-decoration: none;
}

.site-menu .main-sub-container {
  background: #fff;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 30px 20px;
  position: absolute;
  left: 0;
  top: 49px;
  z-index: 75;
  width: 100%;
  text-align: left;
  display: none;
  color: #000;
}

.site-menu .main-sub-container ul {
  list-style: none;
  padding: 0;
  float: left;
  padding: 0 25px;
  border-left: 1px solid #ccc;
  min-height: 210px;
}

.site-menu .main-sub-container ul:first-child {
  border-left: none;
}

.site-menu .main-sub-container ul.extend-prev-ul {
  padding-top: 40px;
  border-left: none;
}

.site-menu .main-sub-container ul .sub-heading {
  font-weight: bold;
  padding: 10px 0;
}

.brand-area .web-logo img {
  height: 46px;
}

@media (min-width: 760px) {
  .site-menu > li:hover .main-sub-container {
    display: block;
  }
}
@media (max-width: 760px) {
  .brand-area {
    height: 45px;
    width: 100%;
    z-index: 1205;
    background: #fff;
    border-bottom: 1px solid #333;
    text-align: center;
  }

  .brand-area.row {
    margin: 0;
  }

  .brand-area .web-logo img {
    margin-top: 6px;
    height: 32px;
    text-align: center;
  }

  .top-flash {
    position: fixed;
    top: 45px;
    z-index: 72;
    width: 100%;
  }

  .site-menu {
    position: fixed;
    width: 480px;
    max-width: 90%;
    height: auto;
    min-height: 100%;
    top: 45px;
    bottom: 0;
    padding: 0 0 45px 0;
    text-align: left;
    background: white;
    z-index: 1011;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
    color: #333;
    left: -480px;
    border-right: 1px solid #333;
  }

  .site-menu.panel-active {
    left: -16px;
  }

  .site-menu > li {
    display: block;
    padding-left: 25px;
    position: relative;
    border-bottom: 1px solid #eee;
  }

  .site-menu li a {
    display: block;
  }

  .site-menu li .main-sub-container {
    transition: all linear 0.2s;
    display: none;
  }

  .site-menu > li.active .main-sub-container {
    display: block;
  }

  .site-menu .main-sub-container ul {
    min-height: 0px;
  }

  .site-menu .main-sub-container ul.extend-prev-ul {
    padding-top: 0px;
  }

  .site-menu li .main-sub-container + svg {
    position: absolute;
    right: 13px;
    top: 18px;
    transition: all linear 0.2s;
  }

  .site-menu li.active .main-sub-container + svg {
    transform: rotate(180deg);
  }

  .site-menu .main-sub-container {
    border: none;
    position: relative;
    padding: 3px 0;
    top: -10px;
    left: 0;
    border-left: 1px dotted #ccc;
  }

  .site-menu .main-sub-container ul {
    border-left: none;
    padding: 0 0 0 7px;
    margin-left: 3px;
    float: none;
  }

  .site-menu .main-sub-container ul li {
    padding: 5px 0;
  }

  .site-menu > li .navbar-text {
    width: 100%;
    display: block;
    padding: 0;
  }
}
.mobile-topbar {
  top: 0;
  left: 0;
  position: fixed;
  height: 45px;
  width: 100%;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid #333;
  text-align: center;
}

.brand-area #hamburger-nav-icon {
  margin: 12px auto 10px 10px;
  z-index: 1001;
}

.sideflap {
  background: #Eb4956;
  position: fixed;
  bottom: 100px;
  right: -7px;
  color: #FFF;
  border-radius: 10px 0 0 10px;
  z-index: 500;
  padding: 7px 12px 7px 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sideflap:hover {
  background: #eb5763;
  right: 0px;
}

.index-header {
  font-size: 34px;
  font-family: "Cormorant", "Times new roman", "Roboto";
}

.grey-selling {
  font-size: 22px;
  font-family: "Cormorant", "Times new roman", "Roboto";
}

.gallery-product-title {
  font-size: 22px;
  margin-top: 0;
  letter-spacing: 2px;
  font-weight: 300;
}

.gallery-product-type {
  font-size: 13px;
}

.gallery-product-subtitle {
  font-size: 12px;
  color: #ccc;
  margin-top: 15px;
}

/* FAVOURITES */
.favourite-btn {
  border: none;
  display: block;
  z-index: 2;
  overflow: hidden;
}

.favourite-btn .fa-heart {
  color: #333;
}

.favourite-flap {
  background: #fff;
  position: fixed;
  bottom: 110px;
  right: -7px;
  color: #333;
  border: 1px solid #eee;
  border-right: none;
  padding: 7px 12px 7px 7px;
  border-radius: 10px 0 0 10px;
  z-index: 500;
  transition: all 0.2s ease;
}

.favourite-flap:hover {
  right: 0;
}

.product-options .favourite-icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  cursor: pointer;
}

.product-options .favourite-icon:hover .fa-heart {
  animation-name: heartbeat;
  animation-iteration-count: infinite;
  animation-duration: 2s;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.75);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(0.75);
  }
  100% {
    transform: scale(1);
  }
}
.selling-points {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.selling-points > div {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 30%;
  background: #fff;
  padding: 15px;
  text-align: center;
  align-items: center;
  border: 1px solid #eee;
}

.selling-points > div > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  background: #dfc9a8;
  border-radius: 50%;
}

.selling-points > div > h4 {
  /* font-family: Cormorant; */
  margin: 16px 0;
}

@media (max-width: 760px) {
  .selling-points {
    flex-direction: column;
  }

  .selling-points > div {
    width: 100%;
    margin: 10px 0;
  }
}
.product-images .favourite-icon {
  position: absolute;
  top: 10px;
  right: 23px;
  display: block;
  cursor: pointer;
}

.favourite-icon [data-prefix=fas], .favourite-btn [data-prefix=fas] {
  color: #CD1F26;
}

.favourite-panel .gallery-img-box img {
  max-height: 140px;
}

strong {
  font-family: "Open Sans", "Open Sans", Arial, Verdana;
  font-weight: 700;
}

.margin-top-30 {
  margin-top: 30px;
}

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

.full-width {
  width: 100%;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.bg-grey {
  background-color: #c7c7c7;
}

footer {
  min-height: 300px;
  background: #333;
  color: #fff;
  margin-top: 60px;
}

a:focus {
  text-decoration: none;
}

footer .container {
  padding-top: 20px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer li a {
  color: #fff;
  font-size: 12px;
  font-weight: normal;
}

footer li a:hover {
  color: #fff;
}

.no-padding {
  padding: 0 !important;
}

.link-island {
  margin-top: 40px;
  margin-bottom: 40px;
  display: block;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 20px;
  background: rgba(16, 24, 28, 0.75);
  animation-duration: 0.8s;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  -webkit-animation-name: slideUp;
  animation-name: slideUp;
  z-index: 1100;
}

.cookie-consent-inner {
  color: #fff;
  margin-top: 4px;
  font-size: 12px;
  padding-right: 110px;
}

.cookie-consent .btn-round {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes slideUp {
  0% {
    transform: translateY(66px);
  }
  100% {
    transform: translateY(0);
  }
}
.headline {
  display: block;
  margin: 10px 0 35px 0;
  border-bottom: 1px dotted #e4e9f0;
  position: relative;
}

.headline h2, .headline h4 {
  margin: 0 0 -2px 0;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 2px solid #000;
}

#logout-pill a {
  background: #525252;
  color: #fff;
}

#logout-pill a:hover {
  background: #757575;
}

.pages-menu li {
  margin: 5px 0;
}

@media (max-width: 760px) {
  .pages-menu li, #logout-pill {
    float: none !important;
  }
}
/* LOADERS */
.modal-overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #555;
  opacity: 0.3;
  z-index: 800;
}

.overlay-cog {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 801;
  color: #333;
}

.cp-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 801;
}

.cp-loader.local {
  position: absolute;
  z-index: 699;
}

.cp-loader span {
  position: absolute;
  display: block;
  text-align: center;
  color: #fff;
  top: 62%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 156;
}

.loader-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: 156;
  width: 256px;
}

.cp-loader.local .loader-spinner {
  width: 64px;
}

.loader-spinner img {
  width: 100%;
}

@media (max-width: 760px) {
  .loader-spinner {
    width: 128px;
  }

  .cp-loader span {
    top: 24%;
  }
}
.loader-overlay {
  height: 100%;
  width: 100%;
  background: #fff;
  opacity: 0.7;
}

.click-blocks {
  padding: 0;
  margin: 0;
  list-style: none;
}

.click-blocks > li {
  margin: 5px 0;
  border: 1px solid #aaa;
  color: #333;
  font-size: 13px;
  position: relative;
  padding: 7px;
  cursor: pointer;
  background: #fff;
}

.click-blocks > li:hover {
  background: #f1f1f1;
}

.click-blocks > li .block-addon {
  position: absolute;
  right: 5px;
  top: 5px;
}

/* MODAL */
#product-modal .modal-content {
  background: none;
  border: none;
}

.modal-body .title {
  margin: 40px 0 50px;
  font-size: 1.75em;
}

.green-modal .modal-body {
  background: #475b52;
  color: #fff;
}

.green-modal h4 {
  margin: -10px 0 50px;
}

.green-modal #studio-errors {
  text-align: left;
  padding: 20px 14px;
}

.green-modal .close {
  color: #fff;
  opacity: 1;
}

.blue-modal .modal-body {
  background: #00aef0;
  color: #fff;
}

.blue-modal h4 {
  margin: -10px 0 50px;
}

.blue-modal .close {
  color: #fff;
  opacity: 1;
}

#cart-selling-point {
  margin: 50px 0;
  font-size: 14px;
}

#cart-selling-point > div {
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  width: 215px;
  margin: 0 auto;
  padding: 7px;
}

#splash-modal #cart-selling-point > div {
  width: 100%;
}

#cart-selling-point p:last-child {
  margin-bottom: 0;
}

.voucher-square {
  border: 0.1em solid #333;
  padding: 8px;
  text-align: center;
  background: rgba(100, 100, 100, 0.05);
  display: block;
  width: 100%;
}

.voucher-square.active {
  background: #00aef0;
  color: #fff;
  border-color: #00aef0;
}

@media (min-width: 768px) {
  .blue-modal-sm .modal-dialog {
    width: 350px;
  }

  .blue-modal-sm .modal-button {
    padding: 0 30px 20px;
  }

  .green-modal-sm .modal-dialog {
    width: 350px;
  }

  .green-modal-sm .modal-button {
    padding: 0 30px 20px;
  }

  #splash-modal .modal-button {
    padding: 0 130px 20px;
  }

  #splash-modal #cart-selling-point > div {
    width: 330px;
  }
}
.main-row .product-choice {
  margin-bottom: 50px;
  overflow: hidden;
}

.modal-content {
  box-shadow: none;
}

#modal-product-menu {
  margin-bottom: 0;
  overflow: hidden;
}

#modal-product-menu .product-cell {
  min-height: 400px;
  position: relative;
  border: 10px solid rgba(0, 0, 0, 0);
  padding-left: 0;
  padding-right: 0;
}

.main-row .product-choice .product-cell {
  min-height: 450px;
}

.product-choice .product-cell {
  overflow: hidden;
  background-size: cover;
}

#modal-product-menu .submenu {
  position: absolute;
  top: 450px;
  height: 100%;
  width: 100%;
  z-index: 60;
  transition: all 0.5s ease;
  border: 10px solid transparent;
}

.product-cell .submenu .submenu-close {
  color: #fff;
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 28px;
  opacity: 0.65;
  background: transparent;
  border: 0;
}

.product-cell .submenu .submenu-close:hover {
  opacity: 1;
}

.product-cell .submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.product-cell .submenu ul li {
  display: block;
  overflow: hidden;
  width: 40%;
  margin: 5px auto;
}

.product-choice .submenu-btn {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  transition: all 0.4s;
  text-align: center;
}

.product-choice .submenu-btn:hover {
  text-decoration: none;
  border-color: #337ab7;
  background: #337ab7;
  color: #fff !important;
}

#modal-product-menu .submenu.active {
  top: 0;
}

@media (max-width: 767px) {
  #modal-product-menu .product-cell {
    min-height: 250px;
  }

  #modal-product-menu .submenu {
    min-height: 230px;
  }

  #modal-product-menu .product-btn span {
    font-size: 12px;
  }

  .main-row .product-choice .product-cell {
    min-height: 350px;
  }
}
@media (max-width: 1400px) {
  #modal-product-menu .product-cell {
    min-height: 300px;
  }

  #modal-product-menu .submenu {
    min-height: 280px;
  }
}
@media (min-width: 1400px) {
  #modal-product-menu .product-cell {
    height: 430px;
  }

  #modal-product-menu .submenu {
    height: 420px;
  }
}
.product-choice .product-image {
  background-size: cover;
}

.product-choice .product-image.product-canvas {
  background: url("/img/product/canvas.jpg") no-repeat center;
}

.product-choice .product-image.product-wallpaper {
  background: url("/img/product/wallpaper.jpg") no-repeat center;
}

.product-choice .product-image.product-poster {
  background: url("/img/product/poster.jpg") no-repeat center;
}

.product-choice .product-image.product-wrapping {
  background: url("/img/product/wrapping.jpg") no-repeat center;
}

.product-choice .product-image.product-frame {
  background: url("/img/product/frame.jpg") no-repeat center;
}

.product-choice .shadow {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.6;
  z-index: 50;
  transition: all 0.5s ease;
}

.product-choice .product-cell.active:hover .shadow {
  opacity: 0;
}

.product-cell.submenu-active .shadow {
  opacity: 0.8;
}

.product-choice .product-cell .product-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 49;
  transition: all 0.5s ease;
}

.product-choice .product-cell.active:hover .product-image {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.product-choice .product-btn {
  z-index: 51;
  color: #fff;
  position: absolute;
  text-align: center;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: all 0.5s ease;
}

.product-choice .product-btn span {
  position: absolute;
  top: 51%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  z-index: 51;
  transition: all 0.4s;
  cursor: pointer;
}

/*.product-choice .product-cell.active:hover span{top:48%;}*/
.product-choice .product-cell.active .product-btn span:hover {
  text-decoration: none;
  border-color: #337ab7;
  background: #337ab7;
  color: #fff !important;
}

.product-cell.submenu-active .product-btn {
  opacity: 0.3;
  filter: blur(2px);
}

.product-cell.submenu-active small {
  opacity: 0.3;
  filter: blur(2px);
}

.product-choice .product-cell.submenu-active:hover .shadow {
  opacity: 0.6;
}

.product-choice small {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translateY(-40%) translateX(-50%);
  -ms-transform: translateY(-40%) translateX(-50%);
  transform: translateY(-40%) translateX(-50%);
  display: block;
  color: #fff;
  z-index: 51;
  transition: all 0.5s ease;
}

.login-tabs {
  margin: 0.5rem 0;
}

.login-tabs li:first-child {
  margin-left: 10px;
}

#modal-xs-menu {
  margin-top: 20%;
}

#modal-xs-menu li {
  margin-bottom: 15px;
}

#modal-xs-menu a {
  text-decoration: none;
}

#modal-xs-menu .mobile-product-btn {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 25px;
  transition: all 0.4s;
  background: #000;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

#modal-xs-menu .mobile-product-btn:hover {
  text-decoration: none;
  border-color: #337ab7;
  background: #337ab7;
  color: #fff !important;
}

#modal-xs-menu .close-menu {
  display: block;
  color: #fff;
  border: none;
  background: none;
  padding: 12px 25px;
  text-align: center;
  cursor: pointer;
}

#modal-xs-menu .close-menu:hover {
  background: #fff;
  color: rgba(0, 0, 0, 0);
}

.modal-xs-submenu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -100%;
  z-index: 0;
  transition: opacity 0.5s ease;
  opacity: 0;
  width: 100%;
}

.modal-xs-submenu.active {
  top: 0;
  z-index: 12;
  opacity: 1;
}

#modal-xs-menu.submenu-active li > .mobile-product-btn {
  opacity: 0.3;
  filter: blur(2px);
}

.close-xs-submenu {
  display: block;
  color: #fff;
  border: none;
  background: none;
  padding: 12px 25px;
  text-align: center;
  cursor: pointer;
}

.white-modal-block {
  background: #FFF;
  padding: 20px 30px 40px;
  text-align: center;
  max-width: 650px;
  margin: 40px auto;
  position: relative;
  font-size: 12px;
}

.white-modal-block .modal-title {
  font-size: 15px;
  text-align: center;
  margin: 15px 0 15px;
}

.white-modal-block .modal-icon {
  font-size: 75px;
  text-align: center;
  margin: 15px 0 15px;
}

.white-modal-block .modal-divider {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 5px;
}

.white-modal-block .modal-divider > span {
  display: block;
  width: 50%;
  border-bottom: 1px solid #666;
  content: "";
  margin: 0 auto;
}

/* SOCIAL ICONS */
.social-icons {
  list-style: none;
  padding: 0;
}

.social-icons li {
  display: inline-block;
}

.social-icons li a {
  display: block;
  background: #f9bf04;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 10px;
  position: relative;
}

.social-icons li a:hover {
  text-decoration: none;
  background: #ffd13e;
}

#copyright {
  color: #939393;
  padding: 25px 0;
}

/* BUTTONS */
.big-icon-btn {
  padding: 15px 60px !important;
  font-size: 16px !important;
}

.big-icon-btn .fa {
  margin: 0px 0px 0px 10px;
}

/* NAVIGATION  */
#hamburger-nav-icon {
  width: 25px;
  height: 20px;
  position: relative;
  margin: 5px auto;
  margin-left: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

#hamburger-nav-icon span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #222;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#hamburger-nav-iconspan:nth-child(1) {
  top: 0px;
}

#hamburger-nav-icon span:nth-child(2), #hamburger-nav-icon span:nth-child(3) {
  top: 7px;
}

#hamburger-nav-icon span:nth-child(4) {
  top: 14px;
}

#hamburger-nav-icon.open span:nth-child(1) {
  top: 17px;
  width: 0%;
  left: 50%;
}

#hamburger-nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#hamburger-nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#hamburger-nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

.mobile-menu-btn {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.navigation.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 700;
}

.navbar {
  border-radius: 0;
  margin-bottom: 0;
}

.navbar-inverse {
  color: #222;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #000;
}

.navbar-inverse .navbar-nav > li > a {
  color: #222;
}

.navbar-inverse .navbar-nav > li > a:hover {
  text-decoration: none;
}

.navbar-inverse .navbar-nav > li > a span {
  line-height: 10px;
}

.navbar-inverse .navbar-text {
  color: #222;
}

.ico-left-menu {
  font-size: 24px;
  margin-top: -3px;
}

.btn-navbar {
  border: 1px solid #666;
  background: #000;
  border-radius: 0;
  margin: 10px 10px;
}

.btn-navbar:hover {
  color: #999;
}

.navbar-logo {
  max-height: 40px;
  padding: 5px;
  margin-top: 5px;
}

.nav a {
  color: #222;
  font-weight: normal;
  font-size: 14px;
}

.nav a:hover {
  text-decoration: none;
  -webkit-transition: color 0.1s, background-color 0.1s, padding 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: color 0.1s, background-color 0.1s, padding 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.1s, background-color 0.1s, padding 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.center-menu {
  text-align: center;
}

.nav a {
  display: inline-block;
  position: relative;
}

header .nav a:after {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 0px;
  background: transparent;
  transition: width 0.3s ease, background-color 0.3s ease;
}

header .nav a:hover:after {
  width: 100%;
  background: #333;
}

.xmas-banner {
  text-align: center;
  padding: 3px;
  background: #eee;
  font-size: 12px;
  width: 100%;
  font-weight: bold;
}

.navbar .navbar-nav {
  display: inline-block;
  float: none;
  vertical-align: top;
}

.navbar .navbar-brand {
  width: 140px;
  padding: 0;
}

.navbar .navbar-brand.web-logo {
  position: absolute;
  left: 35px;
  top: 5px;
  z-index: 10;
}

.navbar .navbar-brand.web-logo img {
  max-height: 85%;
}

.navbar .navbar-brand img {
  width: 100%;
  height: 100%;
}

.navbar .navbar-collapse {
  text-align: center;
}

.navbar-collapse li {
  margin: 0px 2px;
}

@media (max-width: 767px) {
  .navbar .navbar-collapse {
    text-align: right;
  }

  .navbar-collapse li {
    text-align: right;
  }
}
.navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form {
  border-top: 0;
}

.navbar-inverse .navbar-toggle i {
  font-size: 29px;
}

.navbar-inverse .navbar-toggle {
  border: none;
  padding: 2px 0 0 0;
}

.navbar-inverse .navbar-toggle:hover {
  background-color: transparent;
}

.grey-product-tab-bg {
  background: #f7f7f7;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.product-tabs {
  padding: 0;
  margin: 0;
  margin-bottom: -1px;
}

.product-tabs > li {
  margin: 0 5px;
  display: inline-block;
}

.product-tabs > li a {
  padding: 15px;
  border-left: 2px solid #f7f7f7;
  border-right: 2px solid #f7f7f7;
  display: block;
  color: #444;
  position: relative;
}

.product-tabs > li a:before {
  content: "";
  display: block;
  margin: auto;
  height: 2px;
  width: 100%;
  background: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}

.product-tabs > li a:hover {
  text-decoration: none;
}

.product-tabs > li.active a, .product-tabs > li:hover a {
  border-right: 2px solid #ebebeb;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #ebebeb;
  background: #fff;
}

.product-tabs > li.active a:before, .product-tabs > li:hover a:before {
  background: #0093d4;
}

.tab-menu {
  display: flex;
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
}

.tab-menu > li {
  flex-grow: 1;
  text-align: center;
  padding: 10px 0;
  border-bottom: 3px solid #ccc;
  color: #999;
  font-weight: bold;
}

.tab-menu > li:hover {
  border-color: #5ba7eb;
  cursor: pointer;
}

.tab-menu > li.active {
  font-weight: bold;
  color: #333;
  border-color: #337ab7;
}

.tabs > div {
  display: none;
}

.tabs > div.active {
  display: block;
}

.breadcrumbs {
  margin: 10px 0 15px;
  padding: 0;
}

.breadcrumbs a {
  color: #999;
}

.breadcrumbs > li {
  color: #999;
  display: inline-block;
  font-size: 12px;
}

.breadcrumbs > li:first-child:before {
  content: "";
  margin: 0;
}

.breadcrumbs > li:before {
  font-family: "Open Sans";
  content: "»";
  margin: 0 5px;
}

.active-cart {
  font-weight: bold;
  color: #ffde00 !important;
}

/* ALERT */
.alert-top {
  margin: 0;
  border-radius: 0;
  background: #0093d4;
  text-align: center;
  color: #fff;
  padding: 10px;
  min-height: 45px;
}

.alert-top .fa {
  font-size: 20px;
  margin-right: 10px;
}

.alert-top-red {
  margin: 0;
  border-radius: 0;
  background: #cc0000;
  text-align: center;
  color: #fff;
}

.alert-top .close {
  opacity: 1;
  filter: alpha(opacity=100);
  right: 0;
  z-index: 1;
}

.alert-top .close:hover {
  color: #fff;
}

.shout-alert {
  width: 100%;
  z-index: 0;
  font-size: 16px;
  padding: 10px 17px;
}

.shout-close {
  position: absolute;
  top: 15px;
  right: 16px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s;
}

.shout-close:hover {
  transform: rotate(90deg);
}

.checkout-shout {
  width: 100%;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
  background: #475b52;
  color: #fff;
  text-align: center;
}

/* MINI SHOPPINGCART */
.hover-menu {
  float: right;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 0;
}

.hover-menu a:hover {
  text-decoration: none;
}

.hover-menu > li {
  display: inline-block;
  list-style: none;
}

@media (max-width: 767px) {
  .hover-menu {
    position: fixed !important;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    z-index: 1001;
  }

  .hover-menu > li {
    padding: 0;
    margin: 0;
  }
}
.hover-button {
  padding: 12px 8px 0;
  position: relative;
  z-index: 10;
  display: block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-size: 14px;
  color: #000;
}

.hover-panel {
  overflow: auto;
  position: fixed;
  width: 480px;
  max-width: 90%;
  height: auto;
  min-height: 100%;
  top: 0;
  bottom: 0;
  padding: 0;
  text-align: left;
  background: white;
  z-index: 1266;
  -webkit-overflow-scrolling: touch;
  transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
  color: #333;
}

.hover-panel-right {
  right: -480px;
  border-left: 1px solid #333;
}

.hover-panel-left {
  left: -480px;
  border-right: 1px solid #333;
}

.hover-panel-right.panel-active {
  right: -16px;
}

.hover-panel-left.panel-active {
  left: -16px;
}

.hover-panel .inner-wrapper {
  height: 100%;
  padding: 24px 32px;
}

.hover-panel .cart-close {
  cursor: pointer;
}

.hover-panel .close-panel {
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 30px;
}

.hover-panel .mini-cart-table {
  width: 100%;
  color: #333;
  text-align: left;
  letter-spacing: 1px;
  font-size: 12px;
  line-height: 1.5;
}

.hover-panel .mini-cart-table td {
  padding: 5px;
  position: relative;
}

.hover-panel .mini-cart-table-wrapper {
  margin: 30px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  overflow: auto;
  max-height: 70%;
}

.hover-panel .mini-cart-table-wrapper::-webkit-scrollbar {
  width: 0.5em;
}

.hover-panel .mini-cart-table-wrapper::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.hover-panel .mini-cart-table-wrapper::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}

@media (max-width: 767px) {
  .hover-panel .mini-cart-table-wrapper {
    max-height: 68%;
  }

  .hover-panel .mini-cart-table-wrapper::-webkit-scrollbar {
    width: 0.3em;
  }
}
.mini-cart-summary {
  font-size: 12px;
}

.mini-cart-summary li {
  display: flex;
  justify-content: space-between;
}

#mini-cart-subtotal {
  font-weight: bold;
}

.cart-service-mark {
  position: absolute;
  display: block;
  top: 10px;
  left: 10px;
}

.cart-service-mark img {
  width: 20px;
  height: 20px;
}

.cart-trash {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.cart-trash:hover {
  color: #ba1919;
}

.mini-shoppingcart-footer {
  text-align: right;
  margin: 40px 0;
}

.cart-cancel {
  background: none;
  color: #666;
  font-weight: 500;
  font-size: 0.75em;
  margin-right: 15px;
}

.cart-cancel:hover {
  background: none;
}

.cart-cancel:focus {
  outline: none;
}

.cart-product-info {
  position: absolute;
  top: 0;
  right: 0;
  background: #303030;
  color: #fff;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GALLERY */
.filter-container {
  height: calc(100% - 95px);
  overflow-y: auto;
  padding: 20px 30px 0;
}

.filter-section {
  display: none;
  border-bottom: 1px solid #eee;
}

.filter-section.filter-active {
  display: block !important;
}

.filter-header {
  padding: 30px 0 30px 0;
  position: relative;
  cursor: pointer;
}

.filter-header > span {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0;
}

.filter-header > small {
  display: block;
  font-weight: bold;
  color: #00b6ff;
}

.filter-section .filter-header [data-fa-i2svg] {
  position: absolute;
  top: 30px;
  font-size: 1.3125rem;
  color: #000;
  right: 0;
  line-height: 1.375rem;
}

.filter-section:last-child {
  margin-bottom: 60px;
}

.filter-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.filter-list > li {
  padding: 0;
  margin: 8px 0;
  display: list-item;
}

.filter-list > li:nth-child(n+9) {
  display: none;
}

.filter-list.show-all > li:nth-child(n+7) {
  display: list-item;
}

.filter-list > li > a {
  text-decoration: none;
  color: #000;
  font-size: 0.75rem;
  line-height: 0.75rem;
  padding: 15px 20px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  display: block;
  position: relative;
  background: #f9f9f9;
}

.filter-list > li.selected > a {
  background: #337ab7;
  color: #fff;
}

.filter-deselectable .fa-times {
  position: absolute;
  top: 15px;
  right: 15px;
  display: none;
}

.filter-deselectable .selected .fa-times {
  display: block;
}

.filter-list > li.selected > a .deselect {
  display: block;
  right: 10px;
  position: absolute;
}

.filter-section .show-more {
  font-size: 0.75rem;
  text-decoration: underline;
  cursor: pointer;
}

.filter-ball-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-ball-list li {
  height: 50px;
  width: 50px;
  display: inline-block;
  padding: 2px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 0 1px;
  cursor: pointer;
  position: relative;
}

.filter-ball-list > li.selected {
  border-color: #0070a7;
}

.filter-ball-list .fa-check {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.filter-ball-list > li.selected .fa-check {
  display: block;
}

.filter-ball-list li span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: 50%;
}

.filter-ball-list li input {
  position: absolute;
  left: -9999px;
}

.filter-container::-webkit-scrollbar {
  width: 2px;
  background-color: #e9e9e9;
}

.filter-container::-webkit-scrollbar-thumb {
  background-color: #000;
}

/* colour chooser */
.color-chooser {
  display: flex;
}

.color-chooser label i {
  display: block;
  height: 45px;
  width: 45px;
  padding: 2px;
  border: 2px solid #ccc;
  border-radius: 50%;
  margin: 0 1px;
  cursor: pointer;
  position: relative;
  border-radius: 50%;
  margin-right: 2px;
}

.color-chooser label input:checked + i {
  /* border-color: #0070a7; */
  border-color: #666;
}

.color-chooser .fa-check {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.color-chooser > label.selected .fa-check {
  display: block;
}

.color-chooser label input {
  position: absolute;
  left: -9999px;
}

.product-options h4 {
  font-weight: bold;
  font-size: 15px;
  margin: 20px 0 10px;
}

.product-tags a {
  margin: 0 1px;
}

.product-tags a:hover {
  text-decoration: none;
}

.product-tags a:hover .label, .product-tags a:hover .badge {
  background-color: #aaa;
}

.product-tags a:first-child {
  margin-left: 0;
}

.product-tags .label, .product-tags .badge {
  font-size: 11px;
  font-weight: normal !important;
}

#product-image > img {
  margin-bottom: 15px;
}

.product-thumbs, .product-thumbs2 {
  overflow: hidden;
  list-style: none;
  margin: 20px 0 40px 0;
  padding: 0;
}

.product-thumbs > li, .product-thumbs2 > li {
  width: 16.66666667%;
  min-height: 30px;
  float: left;
  padding: 3px;
  transition: all 0.15s ease-in;
}

/* .product-thumbs > li:first-child{
  padding-left: 0;
} */
.product-thumbs > li:hover, .product-thumbs2 > li:hover {
  opacity: 0.6;
}

.product-option-img {
  width: 100%;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-option-img img {
  padding: 2px;
  border: 1px solid #fff;
}

.product-option-img > li {
  float: left;
  margin: 10px;
  cursor: pointer;
}

.product-option-img > li:first-child {
  margin-left: 0px;
}

.product-option-img > li.active img {
  border-color: #333;
}

.product-option-img > li:hover img {
  border: 1px solid #333;
}

.product-option-img span {
  font-size: 12px;
  display: block;
  padding-top: 5px;
}

.product-option-img input[type=radio] {
  position: absolute;
  left: -9999px;
}

.product-option-img .option-thumb {
  border: none !important;
}

#gallery-objects {
  transition: all 0.15s ease-in;
}

.share-grey {
  margin: 0;
  padding: 0;
}

.share-grey > li {
  display: inline-block;
  background: #495057;
  cursor: pointer;
}

.share-grey > li:hover {
  background-color: #656e75;
}

.share-grey > li a {
  color: #fff;
  padding: 0.75em;
  display: block;
}

.gallery-marks {
  text-align: center;
  margin: 16px 5px 5px 5px;
  min-height: 26px;
  display: none;
}

.camp-mark {
  display: inline-block;
  padding: 4px 15px;
  background-color: #3d4253;
  background-position: initial initial;
  background-repeat: initial initial;
  background: #3d4253;
  color: #ddd;
  font-size: 11px;
  text-transform: uppercase;
}

.camp-mark.product-page {
  margin-bottom: 20px;
  margin-right: 10px;
  font-size: 12px;
}

.camp-mark.studio-page {
  /* margin:0 10px; */
}

.black-ball-price {
  background: #000;
  color: #fff;
  position: absolute;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  font-size: 16px;
  top: 15px;
  right: -40px;
}

.gallery-price {
  color: #333;
  font-weight: 300;
  font-size: 40px;
}

.old-price {
  color: #777;
  text-decoration: line-through;
}

.gallery-description {
  color: #333;
  margin: 20px 15px;
  font-size: 13px;
}

.gallery-filters {
  margin-top: 30px;
  margin-bottom: 30px;
}

.gallery-filters select, select.gallery-select {
  border-color: #ccc;
  border-radius: 18px;
}

@media (max-width: 767px) {
  .gallery-filters select, select.gallery-select {
    border-radius: 1px;
  }
}
@media (max-width: 767px) {
  .search-form {
    width: 100%;
    position: absolute;
    top: -100px;
    left: 0;
    background: #fff;
  }

  .search-form.active {
    top: 45px;
    border-bottom: 1px solid #eee;
    padding: 13px 10px;
  }
}
#retrieve-products, #retrieve-reviews {
  width: 250px;
}

.gallery-search-input-group .form-control {
  padding: 5px;
  height: 29px;
}

.gallery-search-input-group .input-group-prepend, .gallery-search-input-group .form-control {
  border-color: #ccc;
  border-radius: 1px;
}

.gallery-search-input-group .input-group-prepend, .gallery-search-input-group .input-group-text {
  background-color: #fff;
  font-size: 12px;
}

.gallery-search-input-group .input-group-btn {
  border-color: #ccc;
  border-radius: 0;
}

.gallery-search-input-group .input-group-btn button {
  border-top: 0;
  border-right: 0;
  border-bottom: 0;
}

.gallery-search-input-group .input-group-btn {
  background-color: #fff;
}

.gallery-list {
  position: relative;
  padding: 0 1px;
  font-size: 11px;
  margin: 20px 0px;
  padding: 0 5px;
}

.gallery-list-inner {
  position: relative;
  overflow: hidden;
}

.gallery-list-inner:hover .show-product {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.show-product {
  width: 65px;
  height: 65px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border-radius: 50%;
  font-size: 25px;
  padding: 10px 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  left: 50%;
  opacity: 0;
  transition: all 0.15s ease-in;
}

.list-details {
  display: flex;
}

.list-details .list-info {
  flex: 1 1 100%;
}

.list-details .list-fav {
  flex: 1 0 20px;
  position: absolute;
  right: 5px;
}

.gallery-title {
  color: #333;
  font-weight: normal;
  font-family: "Open Sans";
  font-size: 12px;
  margin: 5px 0 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-info .artist-name {
  color: #333;
  font-size: 14px;
}

.gallery-list .list-price {
  /* text-align: center; */
  margin: 5px 0 15px;
  font-size: 20px;
  font-weight: 300;
  color: #646464;
}

.gallery-list a:hover {
  text-decoration: none;
}

.gallery-img-box {
  width: 100%;
  position: relative;
  text-align: center;
}

.gallery-img-box img {
  position: relative;
  transition: all 0.3s ease-in;
  width: 100%;
  z-index: 1;
}

.gallery-img-box img.crossfadebottom {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}

.gallery-img-box:hover img.crossfadebottom {
  opacity: 1;
}

.gallery-list img.set-size {
  width: 60%;
}

.gallery-list a {
  display: block;
}

.gallery-img-box .label {
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 11px;
}

.gallery-img-box .premium {
  position: absolute;
  display: block;
  top: 12px;
  right: 12px;
  z-index: 1;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 2px #dadada;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  width: 34px;
  height: 34px;
  color: #333;
}

.gallery-img-box .premium [data-fa-i2svg] {
  position: absolute;
  width: 19px;
  height: 19px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-size: 100%;
}

/* @media (max-width: 576px){
  .gallery-img-box{
      min-height:175px;
  }
}
@media (min-width: 576px){
  .gallery-img-box{
      min-height:245px;
  }
}
@media (min-width: 768px){
  .gallery-img-box{
      min-height:162px;
  }
}
@media (min-width: 992px){
  .gallery-img-box{
      min-height:222px;
  }
}
@media (min-width: 1200px){
  .gallery-img-box{
      min-height:267px;
  }
} */
.gallery-pagination > .active > a,
.gallery-pagination > .active > a:focus,
.gallery-pagination > .active > a:hover,
.gallery-pagination > .active > span,
.gallery-pagination > .active > span:focus,
.gallery-pagination > .active > span:hover {
  background: #222 !important;
  border-color: #222;
}

.gallery-pagination > li > a:focus,
.gallery-pagination > li > a:hover,
.gallery-pagination > li > span:focus,
.gallery-pagination > li > span:hover {
  background: #f1f1f1;
  border-color: #ddd;
  color: #222;
}

.gallery-pagination > li > a, .gallery-pagination > li > span {
  color: #222;
}

.product-description-text {
  font-size: 13px;
}

.img-effect + label {
  font-size: 13px;
  margin: 10px 0;
}

.product-type-description {
  text-align: center;
}

.product-type-description h3 {
  font-size: 14px;
  font-weight: bold;
}

.seo-text {
  text-align: left;
}

.seo-text h1 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.seo-text h2 {
  font-size: 1.2rem;
}

.poster-frame-select {
  position: relative;
}

.poster-frame-select .select-loader {
  margin-left: -10000px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(254, 254, 254, 0.43);
  opacity: 0;
  transition: opacity 0.4s;
}

.poster-frame-select .select-loader.active {
  opacity: 1;
  margin-left: 0px;
}

.poster-frame-select .select-loader .spinner {
  height: 100%;
}

/**/
.page-container {
  padding-top: 40px;
  padding-bottom: 50px;
}

.logo-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.main-divider {
  border-bottom: 1px solid #ccc;
  margin: 15px -15px;
}

.main-row {
  padding: 30px 0;
}

.main-row.grey {
  background: #eee;
}

.main-box {
  padding: 20px;
  overflow: hidden;
}

#calculator {
  margin-top: 15px;
  font-size: 15px;
}

@media (max-width: 760px) {
  #calculator .col-xs-12 {
    margin: 10px 0;
  }
}
.calculator-price {
  font-size: 50px;
  color: #5cb85c;
  display: block;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.start-here {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  text-align: center;
  display: block;
  z-index: 58;
}

@media (max-width: 767px) {
  .start-here {
    bottom: 8%;
  }
}
.start-here span {
  color: #5cb85c;
  font-size: 0.6em !important;
  display: block;
}

#features {
  text-align: center;
}

#features i.fa {
  font-size: 60px;
}

@media (max-width: 767px) {
  #site-pr h2 {
    font-size: 22px;
  }

  #site-pr h3 {
    font-size: 18px;
  }
}
/* PRICE TABLE */
#price-table thead th, #price-table tbody td {
  border: 0;
  text-align: center;
}

#price-table tbody td {
  text-align: center;
}

#price-table .fa-check-square {
  color: #5cb85c;
  font-size: 19px;
}

.table-responsive {
  border: 0;
}

/* LISTS */
.rounded-list {
  list-style: none;
  margin-left: 15px;
}

.rounded-list li {
  position: relative;
  margin: 15px 0;
  line-height: 2em;
  font-weight: bold;
}

.rounded-list span {
  position: absolute;
  display: block;
  border: 1px dashed #333;
  border-radius: 2em;
  color: #333;
  height: 2em;
  width: 2em;
  line-height: 1.9em;
  text-align: center;
  top: 3px;
  left: -55px;
  font-weight: bold;
  font-size: 18px;
}

.rounded-list li small {
  display: block;
  margin-top: -10px;
  font-weight: normal;
}

.rounded-list.check-style li {
  font-size: 18px;
  font-weight: normal;
  margin: 20px 0;
}

.rounded-list.check-style span {
  color: #fff;
  background: #333;
}

/* BULLET POINTS */
.check-bullet-point {
  position: relative;
  padding: 17px 0 0 67px;
  font-weight: bold;
}

.check-bullet-point small {
  font-weight: normal;
  display: block;
}

.check-bullet-point span {
  position: absolute;
  top: 0;
  left: 5px;
  font-size: 55px;
}

/* FORM ELEMENTS */
.form-wrapper {
  position: relative;
}

.select {
  margin: 0 10px 0 0;
}

.select select {
  padding: 5px;
}

.select:hover select {
  border-color: #5D98CC;
}

.select select {
  display: block;
  width: 100%;
  height: 32px;
  padding: 5px 10px;
  outline: 0;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  background: #fff;
  color: #404040;
  appearance: normal;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-size: 12px;
}

.checkbox svg {
  position: absolute;
  top: 3px;
  left: 0;
  width: 19px;
  height: 19px;
  border-color: #bdbdbd;
  transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
}

.checkbox input:checked + svg {
  color: #000;
}

.inline-group {
  overflow: hidden;
}

.inline-group .checkbox, .inline-group .radio {
  float: left;
  margin-right: 30px;
}

.checkbox + .checkbox, .radio + .radio {
  margin-top: 0;
}

.radio {
  padding: 0;
  margin: 0;
}

.checkbox {
  float: left;
  margin-right: 30px;
}

.checkbox, .radio {
  margin-bottom: 4px;
  padding-left: 25px;
  line-height: 25px;
  color: #404040;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  font-weight: 400;
}

.radio input, .checkbox input {
  position: absolute;
  left: -9999px;
}

.radio i {
  position: absolute;
  top: 3px;
  left: 0;
  display: block;
  width: 19px;
  height: 19px;
  outline: 0;
  border-width: 1px;
  border-style: solid;
  border-color: #bdbdbd;
}

.radio input:checked + i, .checkbox input:checked + i {
  border-color: #000;
}

.radio i {
  border-radius: 50%;
}

.radio i, .checkbox i {
  border-color: #bdbdbd;
  transition: border-color 0.3s;
  -o-transition: border-color 0.3s;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
}

.radio input + i:after {
  content: "";
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.checkbox input + i:after {
  color: #000;
}

.radio input + i:after {
  background-color: #000;
}

.checkbox:hover i, .radio:hover i, .select:hover select {
  border-color: #000;
}

.radio input + i:after, .checkbox input + i:after {
  position: absolute;
  opacity: 0;
  transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
  -ms-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
}

.radio input:checked + i:after, .checkbox input:checked + i:after {
  opacity: 1;
}

.checkbox input + i:after {
  content: "";
  top: -1px;
  left: 1px;
  width: 15px;
  height: 15px;
  font: 400 16px/19px "Font Awesome 5 Solid";
  text-align: center;
}

.checkbox input:hover:checked + i:after {
  content: "";
  top: -1px;
  left: 1px;
  width: 15px;
  height: 15px;
  font: 400 16px/19px "Font Awesome 5 Solid";
  text-align: center;
}

.radio + small {
  display: block;
}

.radio .radio-price {
  font-weight: bold;
  position: absolute;
  right: 0;
  top: 0;
}

.slideshow-progress {
  position: absolute;
  top: 58px;
  width: 100%;
  height: 2px;
  z-index: 55;
}

.slideshow-progress .bar {
  background: #337ab7;
  width: 0%;
  height: 100%;
}

.slideshow-controls {
  position: absolute;
  bottom: 54px;
  width: 100%;
  height: 2px;
  z-index: 55;
  text-align: center;
}

.slideshow-controls li {
  display: inline-block;
  color: #fff;
  margin: 0 2px;
  cursor: pointer;
  transition: all 0.1s;
  -o-transition: all 0.1s;
  -ms-transition: all 0.1s;
  -moz-transition: all 0.1s;
  -webkit-transition: all 0.1s;
}

.slideshow-controls li:hover {
  opacity: 0.8;
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
}

.progress-bar.go {
  width: 100%;
}

/* JUMBOTRON */
.qwerty {
  position: relative;
  background: transparent;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  color: #111;
  padding: 10px 20px 0px;
}

.qwerty span {
  display: block;
  margin: 7px 0;
}

.qwerty span:nth-child(1) {
  font-size: 15px;
  font-family: "Lora", "Times New Roman", serif;
  letter-spacing: 2px;
}

.qwerty span:nth-child(2) {
  font-size: 35px;
  font-weight: bold;
}

.qwerty .btn-black {
  position: relative !important;
  bottom: 0 !important;
  width: 220px;
}

@media (max-width: 670px) {
  .qwerty {
    position: relative;
    background: transparent;
  }

  .qwerty span:nth-child(1) {
    font-size: 12px;
    position: relative;
    background: transparent;
  }

  .qwerty span:nth-child(2) {
    font-size: 25px;
  }
}
@media (max-width: 500px) {
  .qwerty span:nth-child(1) {
    font-size: 12px;
  }

  .qwerty span:nth-child(2) {
    font-size: 20px;
  }
}
.jumbo-row {
  margin-left: -30px;
  margin-right: -30px;
}

.jumbo-tile {
  margin-bottom: 18px;
  background-size: 95%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  /* min-height: 400px; */
}

.jumbo-tile .btn-black-round {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  padding-left: 35px;
  padding-right: 35px;
}

.jumbo-tile .btn-black {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 70;
  padding-left: 35px;
  padding-right: 35px;
  text-transform: uppercase;
  color: #fff;
}

.jumbo-tile:before {
  content: "";
  padding-top: 100%;
  display: block;
}

@media (max-width: 767px) {
  .jumbo-row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .jumbo-tile {
    width: 100vw;
    height: 100vw;
    background-size: 100%;
  }
}
.jumbo-tile .submenu {
  top: -10000px;
  opacity: 0;
  position: absolute;
  z-index: 70;
  transition: all 0.5s ease;
  border: 10px solid transparent;
  background: rgba(0, 0, 0, 0.58);
  transition: opacity 0.4s ease;
}

.jumbo-tile.submenu-active .submenu {
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 1;
}

.jumbo-tile .submenu .submenu-close {
  color: #fff;
  position: absolute;
  top: -10px;
  right: 0;
  font-size: 28px;
  opacity: 0.65;
  background: transparent;
  border: 0;
}

.jumbo-tile .submenu .submenu-close:hover {
  opacity: 1;
}

.jumbo-tile .submenu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.jumbo-tile .submenu ul li {
  display: block;
  overflow: hidden;
  width: 40%;
  margin: 5px auto;
}

.jumbo-tile .submenu-btn {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  transition: all 0.4s;
  text-align: center;
}

@media (max-width: 767px) {
  .jumbo-tile .submenu ul li {
    width: 85%;
    font-size: 12px;
  }

  .jumbo-tile .submenu-btn {
    padding: 5px;
  }
}
.jumbo-tile .submenu-btn:hover {
  text-decoration: none;
  border-color: #337ab7;
  background: #337ab7;
  color: #fff !important;
}

.giftcard-jumbo {
  background: #F4F4F6;
}

.giftcard-jumbo-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
}

.giftcard-jumbo-inner a {
  color: #000 !important;
}

.jumbo-grey {
  background: #818181;
  color: #eee;
  padding: 40px 25px;
}

.main-jumbotron {
  color: #000;
  position: relative;
  padding-top: 0px;
  height: 100vh;
}

.jumbotron .jumbo-cycle {
  position: relative;
}

.jumbotron .jumbo-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  vertical-align: middle;
  background-position: center !important;
  background-repeat: no-repeat;
  background-size: cover !important;
  -webkit-background-size: cover;
  z-index: 51;
}

.jumbotron .jumbo-background.active {
  z-index: 53;
}

.jumbotron .jumbo-center-text {
  text-align: center;
  font-size: 26px;
  margin: 40px 0;
}

#read-more {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  display: block;
  z-index: 58;
}

#read-more a {
  color: #fff;
  font-weight: bold;
  font-size: 1em;
  z-index: 58;
}

#read-more a:hover, #read-more a:focus {
  text-decoration: none;
}

.upload-info {
  margin-top: 10px;
  text-align: center;
  display: block;
}

.upload-info .fa-stack {
  display: inline-block;
  font-size: 13px;
}

.start-info {
  margin-top: 10px;
  text-align: center;
  display: block;
  color: #666;
}

.start-info .fa-stack {
  display: inline-block;
  font-size: 13px;
}

#lightbulb-main {
  font-size: 324px;
}

/* REVIEWS */
.page-rating > div {
  margin: 0 auto;
}

.review .date {
  color: #999;
}

.review .review-title {
  color: #333;
  font-weight: bold;
  font-size: 13px;
  margin-top: 15px;
  text-transform: capitalize;
}

.review .reviewer-name {
  font-size: 13px;
  text-transform: capitalize;
}

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

.review .review-text {
  font-size: 13px;
}

.review a {
  font-size: 13px;
}

.review-link {
  padding: 0;
  font-size: 13px;
}

.star-rating {
  overflow: hidden;
}

.star-rating .star {
  margin-right: 1px;
  color: #ffd203;
  float: left;
}

.star-rating .star-small {
  padding: 3px 3px;
  font-size: 18px;
}

.star-rating .star-medium {
  padding: 3px 5px;
  font-size: 25px;
}

.star-rating .star-large {
  padding: 8px 15px;
  font-size: 25px;
}

.star-rating .star-summary {
  font-size: 25px;
  background: #ffd203;
  border-radius: 3px;
  padding: 2px 10px 5px;
  color: #fff;
}

.rating-option {
  overflow: hidden;
}

.rating-option input {
  position: absolute;
  left: -9999px;
}

.rating-option label {
  display: block;
  float: right;
  height: 30px;
  margin-top: 5px;
  padding: 0 2px;
  font-size: 30px;
  line-height: 30px;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
  -o-transition: color 0.3s;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
}

.rating-option input:checked ~ label {
  color: #3276B1;
}

.rating-option input + label:hover, .rating-option input + label:hover ~ label {
  color: #3b9ff3;
}

/* NEWSLETTER */
.newsletter-input-group {
  background-color: transparent !important;
}

.newsletter-btn {
  color: #fff;
  background: #222;
  margin-top: -3px;
  margin-right: -3px;
  margin-bottom: -3px;
  border-radius: 0;
  height: 34px;
}

.newsletter-btn:hover, .newsletter-btn:focus, .newsletter-btn:active {
  background: #111;
  color: #fff;
}

.newsletter-form {
  font-size: 13px;
  margin: 40px 0 50px;
}

.newsletter-form #newsletter-email {
  font-size: 11px;
  width: 250px;
}

@media (max-width: 767px) {
  .newsletter-form #newsletter-email {
    width: 100%;
  }
}
.newsletter-form button {
  font-size: 13px;
}

.newsletter-form .form-inline {
  margin: 10px 0;
}

.newsletter-subtext {
  color: #ccc;
  font-size: 11px;
}

.salespoint-block {
  padding: 20px;
  font-size: 12px;
}

.salespoint-block-inner {
  border: 1px solid #ccc;
  padding: 20px 45px;
}

.salespoint-title {
  font-size: 15px;
  text-align: center;
  margin: 15px 0 15px;
}

.salespoint-icon {
  font-size: 75px;
  text-align: center;
  margin: 15px 0 15px;
  color: #222;
}

.salespoint-divider {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 5px;
}

.salespoint-divider > span {
  display: block;
  width: 50%;
  border-bottom: 1px solid #666;
  content: "";
  margin: 0 auto;
}

/* ACCORDION */
.accordion-section {
  border-top: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
  border-right: 1px solid #f1f1f1;
}

.accordion-section:last-child {
  border-bottom: 1px solid #f1f1f1;
}

.accordion-section h5 {
  cursor: pointer;
  display: block;
  position: relative;
  padding: 20px 20px;
  margin: 0px;
  font-weight: bold;
}

.accordion-section h5 svg {
  position: absolute;
  right: 18px;
  font-weight: 400;
  transition: all 0.2s linear;
}

.accordion-section h5.active svg {
  transform: rotate(90deg);
}

.accordion-content {
  display: none;
  padding: 0 20px 10px;
}

.accordion-section h5.active {
  color: #475b52;
}

/* TOGGLE BOX */
.toggle-box {
  margin: 10px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.toggle-box .toggle-title {
  padding: 5px;
  justify-content: space-between;
  display: flex;
  cursor: pointer;
}

.toggle-box .toggle-title span {
  font-weight: bold;
}

.toggle-box svg {
  font-weight: 400;
  transition: all 0.2s linear;
}

.toggle-box.active svg {
  transform: rotate(90deg);
}

.toggle-box .toggle-content {
  display: none;
  padding: 10px 5px;
  font-size: 11px;
}

.toggle-box.active .toggle-content {
  display: block;
}

.open-video {
  cursor: pointer;
}

.ga-card {
  padding: 10px;
  background-color: #eee;
  text-align: center;
  border: 1px solid var(--cpLightBlue);
}

.ga-card span {
  color: var(--cpBlue);
}

.ga-card small {
  display: block;
  margin: 10px 0;
}

/* GIFTCARD */
.giftcard-container {
  height: 180px;
  position: relative;
  -webkit-perspective: 1000px;
  -moz-perspective: 1000px;
  perspective: 1000px;
}

.giftcard {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: all 0.5s linear;
  -webkit-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.giftcard.flip {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.giftcard .face {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  backface-visibility: hidden;
}

.giftcard .giftcard-form {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  padding: 0 50px;
}

.giftcard .front-face {
  z-index: 2;
}

.giftcard .back-face {
  -webkit-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.giftcard .valid {
  display: block;
  position: absolute;
  bottom: 5px;
  left: 5px;
  font-size: 11px;
  color: #999;
}

.giftcard #valid-to {
  color: #666;
}

/* BUNDLES */
.masonry {
  /* Masonry container */
  column-count: 3;
  column-gap: 1em;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.masonry .item {
  /* Masonry bricks or child elements */
  /*background-color: #eee;*/
  /*display: block;
  margin: 0 0 1em;
  width: 100%;*/
  display: block;
  margin: 1em;
  width: calc(100% / 3 - 2em);
}

.image-item {
  /*border: 1px solid;123*/
}

.buy-product {
  font-family: Roboto, "Open Sans", Arial, Verdana;
  width: 75px;
  height: 35px;
  line-height: 30px;
  background: #2d78b2;
  color: #fff;
  font-size: 12px;
  padding: 2px 21px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  left: 50%;
  opacity: 0;
  text-transform: uppercase;
  transition: all 0.15s ease-in;
  /*text-align: center;*/
  vertical-align: middle;
  z-index: 2;
}

.mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: all 200ms;
}

.image-item-wrap:hover .mask {
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 200ms;
}

.image-item-wrap:hover .buy-product {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.column-wrapper {
  margin: 30px auto;
}

.bundles_info {
  /*margin-top: 30px;123123*/
  max-width: 450px;
  margin: 45px auto 5px auto;
  font-size: 12px;
}

@media (max-width: 767px) {
  .bundles_info {
    margin: 75px auto 5px auto;
  }
}
.bundle_info_h1 {
  font-family: Raleway, Helvetica Neue, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
  font-weight: 400;
  color: #363636;
  font-size: 23px;
}

.bundle_other_info {
  text-align: center;
}

.bundle_meta {
  padding: 5%;
  border: 1px solid #e4e4e4;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "lnum" 1;
  text-align: right;
  font-size: 13px;
}

div.dropdown {
  cursor: pointer;
}

.sr .image-item-wrap {
  visibility: hidden;
}

.bundle_secondary_meta {
  text-align: left;
}

a.bundles_links:hover {
  text-decoration: none;
}

a.bundles_links {
  margin-left: 20px;
}

@media (max-width: 767px) {
  .bundle_buttons button, .bundle_buttons a {
    width: 100%;
    text-align: center;
    margin: 0;
    margin-bottom: 10px;
  }
}
.secondary_meny a {
  cursor: pointer;
}

.secondary_meny {
  margin-top: 30px;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding-top: 3px;
  z-index: 1;
}

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

.dropdown-content p {
  cursor: pointer;
}

/* STUDIO */
.cropit-image-preview {
  /* You can specify preview size in CSS */
  width: 500px;
  height: 540px;
}

#image-processing {
  position: relative;
}

.poster-settings > .settings-header {
  padding: 5px 10px;
  font-weight: bold;
  background: #eee;
}

.poster-settings > .settings-body {
  background: #f5f5f5;
  padding: 10px;
}

.poster-settings .setting-header {
  font-size: 14px;
  font-weight: bold;
  margin: 15px 0 10px;
  border-bottom: 1px dotted #e1e1e1;
}

.setting-list {
  padding: 0;
  margin: 0;
}

.setting-list > li {
  list-style: none;
}

.setting-list > li > .list-row {
  padding: 10px 5px;
  font-size: 13px;
  display: block;
  cursor: pointer;
}

.setting-list > li > .list-row:hover {
  padding: 10px 5px;
  background: #d3d3d3;
}

.setting-list > li > .list-row-info {
  padding: 10px 5px;
  font-size: 11px;
  margin-top: -0.5rem;
  display: block;
}

.setting-list > li > input:checked + .list-row {
  background: #ddd;
}

.setting-list .price {
  color: #018F0C;
  font-weight: bold;
  float: right;
  display: block;
}

.setting-list input[type=radio] {
  position: absolute;
  left: -10000px;
}

.setting-info {
  border: 1px solid #eee;
  padding: 5px;
  background: #f8f8f8;
  display: none;
}

.studio-btn {
  padding: 0.9rem 0.75rem;
  margin: 10px 0;
}

.format-box {
  text-align: center;
  width: 30%;
  background: rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  margin-bottom: 5px;
  cursor: pointer;
}

.format-box.selected {
  background: #00a0d6;
  color: #fff;
}

.format-box img {
  width: 25%;
}

#size-choices .canvas-sizes {
  display: none;
}

#size-choices .canvas-sizes.active {
  display: block;
}

.croppie-error {
  display: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -70%);
  left: 50%;
  z-index: 698;
  background: rgba(0, 0, 0, 0.67);
  color: #fff;
  padding: 20px;
  width: 60%;
}

@media screen and (max-width: 450px) and (max-width: 767px) {
  .croppie-error {
    padding: 10px;
    width: 80%;
  }
}
.poster-price {
  overflow: hidden;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #222;
}

.greyscale {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

.sepia {
  -webkit-filter: grayscale(80%);
  filter: sepia(80%);
}

/* IMAGE HOVER EFFECT */
.view {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
}

.view .mask, .view .content {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
}

.view img {
  display: block;
  position: relative;
}

.view a.info {
  text-decoration: none;
  padding: 0;
  color: #fff;
  top: 50%;
}

.view.img-effect .mask {
  opacity: 0;
  overflow: visible;
  border: 50% solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
}

.view.img-effect a.info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.3s 0s ease-in-out;
}

.view.img-effect a.info .fa-search {
  position: absolute;
  top: 50%;
  margin-top: -8px;
  margin-left: -7px;
}

.view.img-effect:hover .mask {
  opacity: 1;
  background: rgba(0, 0, 0, 0.4);
}

.view.img-effect:hover a.info {
  opacity: 1;
}

/* COMPLAINTS */
#uploaded-files {
  padding: 0;
  list-style: none;
  background: #f5f5f5;
  border-top: 2px solid #ccc;
  width: 100%;
  font-size: 15px;
  margin: 20px 0;
}

#uploaded-files li {
  padding: 5px 10px;
}

#uploaded-files li#no-files {
  text-align: center;
}

#uploaded-files .delete-file {
  float: right;
  font-size: 18px;
  cursor: pointer;
}

#uploaded-files .delete-file:hover {
  color: #E84343;
}

.frame-list .frame-box {
  text-align: center;
  font-size: 0.85rem !important;
}

.frame-list .frame-box .btn {
  font-size: 0.85rem !important;
}

.frame-list .frame-box:hover {
  border-color: #000;
}

.frame-list .frame-box .frame-price {
  text-align: center;
  padding: 2px;
  margin-top: 2px;
  font-weight: bold;
}

.frame-list .frame-box .frame-title {
  text-align: center;
  padding: 2px;
  margin-bottom: 2px;
}

.green-price {
  color: #018F0C;
  font-weight: bold;
}

/*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* OLD STUDIO */
.divider-top {
  border-top: 1px solid #eee;
  padding-top: 10px;
  margin-top: 20px;
}

.step-header {
  font-size: 17px;
  position: relative;
  padding-left: 33px;
  margin: 20px 10px;
}

.step-circle {
  border: 1px solid #000;
  border-radius: 12px;
  padding-top: 2px;
  display: block;
  position: absolute;
  left: 0;
  top: -3px;
  width: 25px;
  height: 25px;
  text-align: center;
}

#appmenu {
  overflow: auto;
  border-bottom: 1px solid #0087E6;
  font-size: 13px;
}

#appmenu, #appmenu ul {
  list-style: none;
  overflow: hidden;
}

#canvas-img {
  max-width: none;
}

#upload-btns {
  margin-top: 20px;
  margin-bottom: 20px;
}

#upload-btns small {
  margin-top: 10px;
  display: block;
}

.rec-table {
  font-size: 14px;
}

.rec-table .fa-check-square {
  color: #5cb85c;
}

.rec-table .fa-play {
  font-size: 11px;
}

.rec-table > tbody > tr > td {
  vertical-align: middle;
}

.rec-table thead > tr > th {
  border-bottom: 0;
}

.rec-table > tbody > tr > td {
  border-top: 0;
}

.canvas-specs .radio {
  margin: 10px 0;
}

#image {
  min-height: 200px;
}

#no-img {
  color: #eee;
  font-size: 180px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
}

.crop-bubble {
  position: absolute;
  top: 10px;
  margin: 0 10px;
  z-index: 1022;
  font-size: 12px;
  font-weight: normal;
  display: none;
  opacity: 0.7;
}

.crop-bubble #inner {
  background: #F1F2F2;
  border-radius: 2px;
}

.crop-bubble #text {
  background: #FA6232;
  padding: 10px;
  color: #FFF;
}

#canvas-bubble {
  position: absolute;
  top: 20px;
  left: 10px;
  z-index: 1022;
  font-size: 12px;
  display: none;
}

#canvas-bubble #text {
  background: #FFF;
  padding: 10px;
  border-radius: 10px;
  opacity: 0.9;
}

#canvas-bubble #tip {
  margin-left: 130px;
  width: 20px;
  height: 16px;
  background: url("/images/bubble_tip.png");
  opacity: 0.9;
}

.nav-tabs#effect-cats {
  border-bottom: 0;
}

#effect-cats {
  margin: 20px 0 5px 30px;
}

#effect-cats .active a {
  color: #fff;
}

#effect-cats a {
  background: rgba(0, 0, 0, 0);
}

#effect-cats a {
  color: #777;
}

#effect-cats a:hover {
  color: #fff;
  border-bottom: 0;
}

#preview-image-area img {
  margin: 0 auto;
  border: 1px solid #ffb400;
}

.spec-row {
  margin: 10px 0;
}

.spec-row:first-child {
  margin-top: 0;
}

#image-area #image {
  position: relative;
  border: 1px solid #ccc;
}

#image-area #canvas-img {
  width: 100%;
}

.jcrop-holder {
  margin: 0 auto;
}

h4#split-canvas-header {
  display: none;
  font-size: 12px;
  margin: 4px 0px;
}

#image-archive {
  margin-top: 15px;
}

#image-list {
  list-style: none;
  clear: both;
}

#image-list > li {
  float: left;
  margin: 0 7px 5px 0px;
  position: relative;
}

#image-list > li img {
  padding: 3px;
  border: 1px solid #AAA;
  cursor: pointer;
}

#image-list > li img:hover, #image-list > li img.active {
  background: #8ACDF4;
}

#image-list > li .remove-image {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  display: block;
  background: url("/img/close_icon.png") no-repeat;
  cursor: pointer;
}

#image-list > li .remove-image:hover {
  background-position: 0px -16px;
}

.deleting-image {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
  opacity: 0.5;
  -moz-opacity: 0.5;
  -webkit-opacity: 0.5;
}

.upload-button {
  position: relative;
}

#fileupload, .fileupload, #archive-fileupload {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  font-size: 23px;
  direction: ltr;
  cursor: pointer;
  display: block;
  width: 100%;
  height: 100%;
}

.black-bg {
  background: #171717;
}

.preview-effect {
  position: absolute;
  border: 1px solid #ccc;
  background: #333;
  padding: 5px;
  display: none;
  color: #fff;
  z-index: 100;
}

.price-text {
  color: #018F0C;
  font-size: 28px;
  font-weight: bold;
}

.crop-faceplate {
  position: absolute;
}

.crop-frame {
  position: absolute;
  width: 100%;
  height: 100%;
}

.crop-frame div {
  position: absolute;
  border: 2px dashed lime;
}

.crop-inner-frame {
  position: absolute;
  width: 100%;
  height: 100%;
}

.crop-inner-frame div {
  position: absolute;
  border: 1px solid #15FF50;
}

.no-frames .crop-frame {
  display: none;
}

.crop-hline, .crop-fline, .crop-lline, .crop-rline {
  background: url("/img/crop.gif") repeat 0 0 #fff;
  position: absolute;
  opacity: 0.4;
  overflow: hidden;
  font-size: 0.1em;
}

.crop-hline {
  height: 1px;
  width: 100%;
  left: 0;
  top: 0;
}

.crop-fline {
  height: 1px;
  width: 100%;
  left: 0;
  bottom: 0;
}

.crop-lline {
  height: 100%;
  width: 1px;
  left: 0;
  top: 0;
}

.crop-rline {
  height: 100%;
  width: 1px;
  right: 0;
  top: 0;
}

.option-thumb {
  border: 1px solid #ccc;
}

/* SMART NOTIFICATION */
.bigBox {
  position: fixed;
  right: 10px;
  bottom: 10px;
  background-color: #004d60;
  padding-left: 10px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  width: 390px;
  height: 150px;
  color: #fff;
  z-index: 99999;
  box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  border-left: 5px solid rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.bigBox span {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1px;
  padding: 5px 0 !important;
  display: block;
}

.bigBox p {
  font-size: 13px;
  margin-top: 10px;
}

#divMiniIcons {
  position: fixed;
  width: 415px;
  right: 10px;
  bottom: 180px;
  z-index: 9999;
  float: right;
}

.botClose {
  position: absolute;
  right: 10px;
  height: 16px;
  width: 15px;
  cursor: pointer;
  font-size: 18px;
  opacity: 0.5;
  display: block;
  top: 15px;
}

.botClose:hover {
  opacity: 1;
}

#divMiniIcons .cajita {
  text-align: center;
  vertical-align: middle;
  padding: 4px 6px;
  color: #FFF;
  float: right;
  cursor: pointer;
  display: block;
  background-color: red;
  font-size: 17px;
  margin-left: 4px;
  margin-top: 5px;
}

#divMiniIcons .cajita:active {
  top: 1px;
  left: 1px;
  position: relative;
}

.cajita img {
  width: 23px;
  height: 23px;
  padding-left: 3px;
  padding-top: 3px;
}

.bigBox .bigboxicon {
  font-size: 30px;
  text-align: left;
  position: absolute;
  top: 120px;
  left: 6px;
  z-index: 0;
}

.bigBox .bigboxnumber {
  width: 100%;
  text-align: right;
  font-size: 25px;
}

#divSmallBoxes {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.SmallBox {
  position: absolute;
  right: 5px;
  top: 20px;
  width: 420px;
  color: #fff;
  z-index: 9999;
  overflow: hidden;
  border: 1px solid transparent;
}

.SmallBox:hover {
  border: 1px solid #fff;
  cursor: pointer;
}

.SmallBox .foto {
  font-size: 50px;
  position: absolute;
  left: 17px;
}

.SmallBox .textoFull {
  width: 93%;
  float: left;
  padding-left: 20px;
}

.SmallBox .textoFoto {
  width: 78%;
  margin: 3px 20px 3px 80px;
  float: left;
}

.miniPic {
  position: absolute;
  bottom: 8px;
  right: 9px;
}

.miniIcono {
  height: 100%;
  font-size: 20px;
}

.SmallBox span {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: -1px;
  display: block;
  margin: 4px 0;
}

.SmallBox p {
  font-size: 13px;
  margin-top: 2px;
}

#pageslide {
  display: none;
  position: absolute;
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 999999;
  width: 305px;
  padding: 20px;
  background-color: #004d60;
  color: #FFF;
  -webkit-box-shadow: inset 0 0 5px 5px #222;
  -moz-shadow: inset 0 0 0 0 #222;
  box-shadow: inset 0 0 0 0 #222;
}

@media screen and (max-width: 450px) and (max-width: 767px) {
  #divSmallBoxes {
    position: fixed;
    width: 90%;
    right: 0;
    top: 0;
  }

  .SmallBox {
    width: 95%;
  }

  .SmallBox:hover {
    box-shadow: 0 0 10px #888;
    cursor: pointer;
  }

  .SmallBox span {
    font-size: 16px;
  }

  .SmallBox p {
    font-size: 12px;
    margin-top: 2px;
  }

  .SmallBox .textoFull {
    width: 93%;
    float: left;
    padding-left: 20px;
  }

  .SmallBox .textoFoto {
    width: 55%;
    margin: 3px 20px 3px 80px;
    float: left;
  }

  .bigBox {
    position: fixed;
    right: 10px;
    bottom: 10px;
    background-color: #004d60;
    padding-left: 10px;
    padding-top: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    width: 88%;
    height: 150px;
    color: #fff;
    z-index: 99999;
  }
}
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.fast {
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -ms-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
}

/* CHECKOUT */
.gatekeeper .gatekeeper-box {
  padding: 40px;
}

.gatekeeper .gatekeeper-box:first-child {
  border-right: 1px dashed #ccc;
}

@media screen and (max-width: 992px) {
  .gatekeeper .gatekeeper-box {
    padding: 20px;
  }

  .gatekeeper-login-btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .gatekeeper .gatekeeper-box:first-child {
    border-right: none;
    border-bottom: 1px dashed #ccc;
  }
}
.gatekeeper h4 {
  margin-bottom: 30px;
}

.gatekeeper-btn {
  margin: 10px;
  width: 100%;
}

.cart-table {
  border: none;
}

.table > tbody + tbody {
  border-top: 1px solid #ddd !important;
}

.cart-table .product-row {
  border-top: none !important;
}

.cart-table td {
  border-top: none !important;
}

.cart-actions {
  padding: 15px 0;
  display: flex;
}

.cart-actions button {
  min-width: 32%;
}

@media (max-width: 767px) {
  .cart-product-details {
    display: none;
    position: absolute;
    left: 0px;
    padding: 10px;
    background: white;
    width: 100%;
    z-index: 1;
  }
}
.input-group-number {
  display: flex;
  position: relative;
}

.input-group-number input {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding-right: 0;
  width: calc(100% - 36px);
  font-size: 14px;
  width: 38px;
  text-align: center;
  border: none;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
  color: #999;
  /* turn off spinners */
  -moz-appearance: textfield;
}

.input-group-number input::-webkit-outer-spin-button,
.input-group-number input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-group-number .spinner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #888;
  border: 1px solid #999;
}

.input-group-number .spinner-button:first-child {
  border-right: none;
}

.input-group-number .spinner-button:last-child {
  border-left: none;
}

.cart-price {
  font-size: 20px;
  font-weight: normal;
  padding-left: 15px;
}

@media (max-width: 767px) {
  .input-group-number {
    padding-left: 0px;
  }

  .input-group-number .spinner-button {
    width: 25px;
  }

  .cart-price {
    font-size: 18px;
  }
}
.radio-input input {
  width: 18px;
  height: 18px;
  -webkit-box-shadow: 0 0 0 0 #0a0808 inset;
  box-shadow: 0 0 0 0 #0a0808 inset;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: relative;
  cursor: pointer;
  vertical-align: -4px;
  border: 1px solid;
  border-color: #d9d9d9;
  border-radius: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: inherit;
  background: transparent;
  outline: none;
}

.radio-input input:checked {
  border: none;
  -webkit-box-shadow: 0 0 0 10px #0a0808 inset;
  box-shadow: 0 0 0 10px #0a0808 inset;
}

.radio-input input:after {
  width: 4px;
  height: 4px;
  margin-left: -2px;
  margin-top: -2px;
  background: #fff;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all 0.2s ease-in-out 0.1s;
  transition: all 0.2s ease-in-out 0.1s;
  opacity: 0;
}

.radio-input input:checked:after {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

.payment-methods {
  padding: 0;
  margin: 0;
  list-style: none;
}

.payment-methods > li {
  border-bottom: 1px solid #ccc;
  position: relative;
}

.payment-methods > li:last-child {
  border-bottom: none;
}

.payment-methods > li > label {
  display: flex;
  padding: 25px 10px;
  margin-bottom: 0;
}

.payment-methods > li small {
  display: block;
  color: #999;
  margin-top: 2px;
}

.payment-methods .payment-logo {
  width: 40px;
  margin-right: 17px;
}

.payment-methods .extra-payment {
  display: none;
  padding: 10px 42px;
  border-top: 1px solid #ccc;
  background: #f4f4f4;
}

.payment-methods .extra-payment label {
  font-weight: bold;
  font-size: 11px;
}

@media (max-width: 767px) {
  .payment-methods .payment-logo {
    width: 55px;
    margin-right: 0px;
  }
}
.payment-choices {
  overflow: hidden;
  padding: 0;
}

.payment-choices .payment-choice {
  display: block;
  min-height: 54px;
  padding: 0 5px;
  margin: 0 3px 10px 0;
  border: 1px solid #fff;
  min-width: 150px;
  color: #808080;
  overflow: hidden;
  font-size: 12px;
  padding: 10px;
  text-align: center;
}

.payment-choices .payment-choice:hover {
  border: 1px solid #ccc;
  color: #000;
  cursor: pointer;
}

.payment-choices .payment-choice.active {
  color: #000;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
}

.payment-choices .payment-choice .payment-icon {
  width: 100%;
  height: 28px;
}

.payment-card .payment-icon {
  background: url("/img/checkout/dibs.png") 50% no-repeat;
}

.payment-paypal .payment-icon {
  background: url("/img/checkout/paypal.png") 50% no-repeat;
}

.payment-klarna-standard .payment-icon {
  background: url("/img/checkout/klarnastd.png") 50% no-repeat;
}

.payment-klarna-checkout .payment-icon {
  background: url("/img/checkout/klarnastd.png") 50% no-repeat;
}

.payment-pbb .payment-icon {
  background: url("/img/checkout/pbb.png") 50% no-repeat;
}

.payment-choices input {
  display: none;
}

.payment-choices .payment-choice span {
  display: block;
  line-height: 45px;
}

.payment-choices .payment-choice small {
  color: #333;
  font-size: 11px;
  margin-top: -12px;
  height: 12px;
  display: block;
}

.payment-choices .payment-choice small:hover {
  text-decoration: underline;
}

#klarna-checkout {
  display: none;
}

#cart-sum {
  font-weight: bold;
  font-size: 18px;
}

#confirm-order {
  font-size: 20px;
}

#summary-discount {
  color: #c9302c;
}

.address-box {
  border: 1px solid #ccc;
  background: #fdfdfd;
  margin: 10px 0;
}

.address-box:first-child {
  margin-right: 10px;
}

@media screen and (max-width: 450px) and (max-width: 767px) {
  .address-box {
    margin: 10px 0px;
  }
}
.address-box .box-header {
  border-bottom: 1px solid #ccc;
  position: relative;
}

.address-box .box-header:before, .address-box .box-header:after {
  content: " ";
  display: table;
}

.address-box .box-header:after {
  clear: both;
}

.address-box .box-header .box-title {
  padding: 10px 15px;
  font-size: 16px;
  font-weight: bold;
  float: left;
}

.address-box .box-header .header-btn {
  padding: 10px 15px;
  font-size: 13px;
  line-height: 22px;
  float: right;
  border-left: 1px solid #ccc;
  font-weight: normal;
}

.address-box .box-header .header-btn:hover {
  cursor: pointer;
  background-color: rgba(55, 55, 55, 0.1);
}

.address-box .box-header input[type=checkbox]:not(:checked) + .header-btn {
  background-color: rgba(55, 55, 55, 0.1);
}

.address-box .box-header input[type=checkbox] {
  position: absolute;
  left: -9999px;
}

.address-box .box-content {
  padding: 15px;
}

.address-box #shipping-address-form {
  display: none;
}

.address-box .active#shipping-address-form {
  display: block;
}

/*--------------------------------------------------------------------------------------------------------------------------------------*/
/* OWL OVERLOAD */
.owl-theme .owl-dots .owl-dot.active span {
  background: #000;
}

.product-carousel {
  padding: 0 15px;
}

.product-carousel .gallery-list {
  float: none;
}

.recently-viewed .owl-item .gallery-list img {
  max-height: none !important;
}

.recently-viewed .owl-prev, .recently-viewed .owl-next {
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  font-size: 40px;
}

.recently-viewed .owl-prev:hover, .recently-viewed .owl-next:hover {
  color: #000;
}

.recently-viewed .owl-prev {
  left: -4px;
}

.recently-viewed .owl-next {
  right: -4px;
}

.img-vertical-middle {
  display: table-cell;
  vertical-align: middle;
  height: 100%;
}

.recently-viewed .item {
  height: 190px;
  display: table;
  padding: 5px;
  text-align: center;
}

.recently-viewed .item a {
  height: 100%;
}

.recently-viewed .owl-item img {
  border: none;
  vertical-align: middle;
  max-height: 185px;
}

.recently-viewed .owl-item:hover img {
  opacity: 0.7;
}

/* BOOTSTRAP OVERLOAD */
.modal-backdrop {
  background: #fff;
}

.modal-backdrop.show {
  opacity: 0.8;
}

/* MAGNIFIC POPUP OVERLOAD */
.mfp-bg {
  background: #fff;
}

.std-form .tooltip-bottom-right {
  top: 100%;
  margin-top: 15px;
}

.std-form .tooltip {
  position: absolute;
  z-index: 99;
  left: -9999px;
  padding: 2px 8px 3px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  opacity: 0;
  transition: margin 0.3s, opacity 0.3s;
  -o-transition: margin 0.3s, opacity 0.3s;
  -ms-transition: margin 0.3s, opacity 0.3s;
  -moz-transition: margin 0.3s, opacity 0.3s;
  -webkit-transition: margin 0.3s, opacity 0.3s;
}

.std-form .tooltip:after {
  bottom: 100%;
  right: 11px;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-left: 4px solid transparent;
}

.std-form .tooltip:after {
  content: "";
  position: absolute;
}

.std-form input:focus + .tooltip-hint, .std-form textarea:focus + .tooltip-hint,
.std-form .has-error input + .tooltip, .std-form .has-error textarea + .tooltip {
  right: 17px;
  left: auto;
  margin-top: 5px;
  opacity: 1;
}

.btn:focus, .btn:active {
  outline: none;
}

.btn-labeled {
  padding: 0;
}

.btn-label {
  position: relative;
  left: -12px;
  top: 0;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px 0 0 3px;
}

.btn-tagged-right {
  position: relative;
  padding: 6px 35px 6px 12px;
}

.btn-tagged-left {
  position: relative;
  padding: 6px 12px 6px 50px;
}

.btn-tag {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.15);
}

.btn-tagged-right .btn-tag {
  right: 0;
  border-radius: 0 3px 3px 0;
}

.btn-tagged-left .btn-tag {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.btn {
  border-radius: 0.4em;
  font-style: normal !important;
}

.btn-black {
  color: #fff;
  background-color: #343434;
  border: none;
}

.btn-black:hover, .btn-black:focus {
  color: #fff;
  background-color: #494949;
}

.btn-light-green {
  color: #fff;
  background-color: #5ea56f;
  border-color: #5ea56f;
}

.btn-light-green:hover, .btn-light-green:focus {
  color: #fff;
  background-color: #82c090;
  border-color: #82c090;
}

.btn-orange {
  color: #fff;
  background-color: #eda031;
  border-color: #eda031;
}

.btn-orange:hover, .btn-black:focus {
  color: #fff;
  background-color: #e9ad5a;
}

.btn-black-round {
  border-radius: 18px;
  color: #fff;
  background-color: #222;
  border-color: #222;
  font-family: "Open Sans Light", "Open Sans", "Arial";
  padding: 5px 15px;
}

.btn-black-round:hover, .btn-black-round:focus {
  color: #fff;
  background-color: #333;
}

.btn-black-round .fa {
  margin-left: 15px;
  font-size: 20px;
}

.btn-round {
  border-radius: 18px;
  color: #fff;
  background-color: #222;
  border-color: #222;
  font-family: "Open Sans Light", "Open Sans", "Arial";
  padding: 10px 20px;
  cursor: pointer;
}

.btn-green {
  background-color: #475b52;
  border-color: #475b52;
  color: #fff;
}

.btn-green:hover {
  background-color: #577467;
  border-color: #577467;
  color: #fff;
}

.btn-blue {
  border-color: #337ab7;
  background: #337ab7;
  color: #fff;
}

.btn-blue:hover {
  border-color: #448cc9;
  background: #448cc9;
  color: #fff;
}

.btn-rounded {
  border-radius: 18px;
}

.btn-outline-blue {
  border-color: #337ab7;
  background: #fff;
  color: #337ab7;
}

.btn-outline-blue:hover {
  border-color: #337ab7;
  background: #337ab7;
  color: #fff;
}

.btn-big {
  padding: 1em 2em;
  font-size: 1rem;
}

.btn-white {
  color: #475b52;
  background-color: #fff;
  border-color: #fff;
}

.btn-white:hover, .btn-white:focus {
  color: #475b52;
  background-color: #e3e3e3;
}

.gallery-buy-btn {
  width: 100px;
  border-radius: 18px;
  color: #222;
  background-color: #fff;
  border-color: #222;
}

.gallery-buy-btn:hover {
  color: #fff;
  background-color: #222;
  border-color: #222;
}

.pages-menu {
  margin: 35px 0;
}

.pages-menu li {
  margin: 0 15px;
}

.pages-menu a {
  color: #337ab7;
}

#frame-modal .modal-header {
  background: #333;
  color: #fff;
}

#frame-modal .modal-header .close {
  color: #fff;
}

.art-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #b3aaa2;
  color: #333;
  opacity: 0;
  transition: all 0.2s linear;
  font-size: 20px;
  z-index: 1;
}

.art-overlay:hover {
  opacity: 1;
}

.owl-item .design-image-wrapper {
  border: 5px solid #000;
  position: relative;
  cursor: pointer;
}

.owl-item .design-image-wrapper:after {
  content: "";
  display: block;
  padding-top: 140%;
}

.owl-item .design-image-wrapper .preview_div {
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 5.68% 5.68% 18%;
  text-align: center;
  -webkit-transition: 0.2s background-color linear;
  -o-transition: 0.2s background-color linear;
  transition: 0.2s background-color linear;
}

.owl-item .design-image-wrapper .image-holder {
  position: relative;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.owl-item .design-image-wrapper .preview_div .image-holder img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.owl-item .design-image-wrapper .footer-info {
  position: absolute;
  bottom: 3.5%;
  width: 100%;
  left: 0;
  text-align: center;
}

.owl-item .design-image-wrapper .info {
  width: 100%;
  border: none;
  display: block;
  margin-left: 0;
  text-align: center;
  font-size: 30%;
  font-family: Arial;
  line-height: 1.6;
  letter-spacing: 0.5px;
  font-weight: 300;
  padding: 0 10%;
  color: #666;
}

.owl-item .design-image-wrapper .preview_name.name span {
  font-size: 60%;
  color: #000;
  font-family: Arial;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

  .info {
    font-size: 4px;
  }

  .preview_name.name span {
    font-size: 7px;
  }

  .footer-info {
    bottom: 3.2%;
  }
}
@media screen and (max-width: 544px) {
  .design-image-wrapper {
    border: 3px solid #000;
  }
}
@media screen and (max-width: 440px) {
  .preview_more_info {
    font-size: 2px;
  }

  .info {
    font-size: 2px;
  }

  /* .preview_div {
      padding: 9% 9% 22%;
  } */
}
.babyart-grid > .grid-wrap {
  padding: 10px;
  display: flex;
}

.babyart-grid .grid-item {
  background-color: #F4F4F6;
  padding: 0;
  position: relative;
  height: 100%;
  width: 100%;
}

.babyart-grid .grid-item a, .jumbo-tile a {
  color: #333;
}

/* NEW PRODUCT DESIGNER */
main {
  /* height: 100%; */
  position: relative;
  display: flex;
  flex-direction: column;
}

#zoom {
  background-color: rgba(235, 235, 235, 0.5);
  position: fixed;
  top: 0;
  height: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
  text-align: center;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition-property: z-index, visibility, transform, opacity;
  transition-duration: 0s, 0s, 0.25s, 0.25s;
  transition-delay: 0.5s, 0.5s, 0s, 0s;
}

.preview-btns {
  position: absolute;
  top: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
}

.preview-btns button {
  margin: 5px 0;
}

#preview-zoom, #zoom-close {
  position: absolute;
  z-index: 1;
}

#preview-zoom, #zoom-close, .preview-btn, .ball-menu-btn {
  background: rgba(0, 0, 0, 0.7);
  border: 0;
  border-radius: 50%;
  color: #fff;
  width: 45px;
  height: 45px;
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}

#preview-zoom, #zoom-close, .preview-btn:focus {
  outline: none;
}

#preview-zoom, #zoom-close, .preview-btn label {
  display: block;
  margin: 0;
}

#preview-delete.enabled, .editor-sub-menu .remove_all_from_collage.enabled, .ball-menu .remove_all_from_collage.enabled {
  background: #ad0202 !important;
  color: #fff;
}

#zoom-close {
  top: 20px;
  right: 20px;
}

.preview-product-wrapper {
  border: 8px solid #000;
  padding: 19px;
  transform: scale(1);
  background: #fff;
  display: flex;
  align-items: center;
}

.preview-product-wrapper#collage-wrapper {
  width: 95%;
}

@media (max-width: 767px) {
  .preview-product-wrapper {
    max-width: 95vw;
  }
}
#zoom.active {
  z-index: 1210;
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0s, 0s, 0s, 0s;
}

#zoom-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#zoom-container > img {
  height: 100%;
  width: auto;
  /* max-width: 1000000%; */
  max-height: 100%;
  margin: 0 -100%;
}

/* BALL MENU */
.ball-menu, .ball-add-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 1002;
}

.ball-menu-check {
  display: none;
}

.ball-menu .menu-item, .ball-menu .ball-menu-open-btn, .ball-add-btn {
  border: none;
  background: #5f716b;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  position: absolute !important;
  padding: 0;
  right: 0;
  top: 0;
  color: #fff !important;
  text-align: center;
  line-height: 45px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: -webkit-transform ease-out 0.2s;
  transition: -webkit-transform ease-out 0.2s;
  transition: transform ease-out 0.2s;
  transition: transform ease-out 0.2s, -webkit-transform ease-out 0.2s;
  -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.1);
  z-index: 1010;
}

.ball-menu .menu-item:focus, .ball-menu .ball-menu-open-btn:focus, .ball-add-btn:focus {
  outline: none;
}

.ball-add-btn {
  left: 15px;
  top: 15px;
}

.ball-menu-open-btn {
  z-index: 932;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1011 !important;
}

.ball-menu-check:checked + .ball-menu-open-btn {
  transition: all 0.2s linear;
  transform: scale(0.9, 0.9) translate3d(0, 0, 0) rotate(180deg);
  background: #505050;
}

.ball-menu-check:checked ~ .menu-item {
  -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ball-menu-check:checked ~ .menu-item:nth-child(3) {
  transition: 0.15s;
  transform: translate3d(0, 48px, 0);
}

.ball-menu-check:checked ~ .menu-item:nth-child(4) {
  transition: 0.25s;
  transform: translate3d(0, 96px, 0);
}

.ball-menu-check:checked ~ .menu-item:nth-child(5) {
  transition: 0.35s;
  transform: translate3d(0, 144px, 0);
}

.ball-menu-check:checked ~ .menu-item:nth-child(6) {
  transition: 0.45s;
  transform: translate3d(0, 192px, 0);
}

.ball-menu-check:checked ~ .menu-item:nth-child(7) {
  transition: 0.55s;
  transform: translate3d(0, 240px, 0);
}

.editor-sub-menu {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  border-radius: 5px;
  overflow-x: auto;
  overflow-y: visible;
  background-color: #fff;
  z-index: 1001;
}

.editor-sub-menu.open {
  transform: translateY(-100%);
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.editor-sub-menu .menu-button {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  height: 4rem;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.4rem 0.4rem 0.25rem;
  border-bottom: 0.25rem solid transparent;
  background: transparent;
  border: none;
}

.editor-sub-menu .menu-button:focus {
  outline: none;
}

.editor-sub-menu .menu-button div {
  margin-top: 5px;
}

.render_wrapper {
  height: calc(100vh - 85px);
}

.product-preview {
  position: relative;
  height: calc(100vh - 84px);
  background-image: url("/img/poster/poster_background.jpg");
  /* background-image: url('/img/poster/poster_bg_50x70_portrait.jpg'); */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(235, 235, 235, 0.5);
  z-index: 1200;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-screen {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(235, 235, 235, 0.5);
  background-image: url("/img/loading-spinner.svg");
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1200;
}

.loading-screen span {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  font-size: 18px;
  font-weight: bold;
  transform: translate(-50%, 65px);
}

.pr-post-product-preview .pr-post-inner {
  width: 100%;
}

.albums-content > label {
  display: block;
}

.loading .loading-screen {
  display: block;
}

.settings-panel-inner {
  overflow: hidden;
  z-index: 2;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -1px 4px 0 rgba(0, 0, 0, 0.2);
}

.settings-panel .settings-menu {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  border-bottom: 1px solid #cacaca;
}

.settings-panel .settings-menu > li {
  flex: 1;
  text-align: center;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  flex-direction: column;
}

.settings-panel .settings-menu li.selected {
  background: #000;
  color: white;
  font-weight: 500;
}

.panels {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  position: relative;
  transition: margin-left 0.5s;
  overflow-x: hidden;
  overflow-y: scroll;
}

.panels > li {
  position: relative;
  float: left;
  padding: 15px;
  min-width: 500px;
  width: 500px;
  padding: 20px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.panels .panel-container {
  display: flex;
  flex-direction: column;
}

.panels .panel-container::-webkit-scrollbar {
  width: 4px;
  background-color: #e9e9e9;
}

.panels .panel-container::-webkit-scrollbar-thumb {
  background-color: #000;
}

.orientation-button-wrap input {
  display: none;
}

.orientation-button-wrap input:checked + .orientation-button {
  background: #333744;
  color: #fff;
}

.orientation-button {
  margin-right: 10px;
  line-height: 3rem;
  height: 45px;
  width: 120px;
  background: #fff;
  position: relative;
  cursor: pointer;
  text-align: center;
  border-radius: 3px;
  border: 1px solid #d1d1d1;
  color: rgba(51, 55, 68, 0.7);
  transition: color 150ms ease-in-out, background 150ms ease-in-out;
}

.archive-wrap .archive-btns {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.archive-wrap .archive-btns .btn {
  margin: 0 10px 0 0;
}

.archive-wrap .archive-photos {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  max-height: 440px;
}

.archive-wrap .archive-photo {
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  display: flex;
  border: 1px solid #ccc;
  width: 31%;
  margin: 5px;
  position: relative;
  overflow: hidden;
}

.archive-wrap .archive-photo:after {
  content: "";
  padding-top: 100%;
  display: block;
}

.archive-wrap .photo-btns {
  display: flex;
  justify-content: space-around;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #ccc;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.1s linear;
  transform: translateY(100%);
}

.archive-wrap .archive-photo:hover .photo-btns {
  transform: translateY(0%);
}

.archive-wrap .photo-btns > div {
  cursor: pointer;
  padding: 4px 0;
  flex-grow: 1;
  text-align: center;
}

.archive-wrap .photo-btns > div:first-child {
  border-right: 1px solid #ccc;
}

.archive-wrap .archive-photo img, .archive-wrap .archive-photo canvas {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
}

@media (max-width: 767px) {
  .archive-wrap .archive-btns .btn {
    padding: 7px 14px;
  }

  .archive-wrap .archive-btns .btn .btn-tag {
    display: none;
  }

  .render_wrapper {
    width: 100vw;
  }

  .preview-btn {
    display: none;
  }

  .editor-sub-menu {
    display: flex;
  }

  .product-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 100%;
  }

  #main-preview {
    max-height: 100%;
    width: auto;
    margin: 0 -100%;
    height: 70vh;
  }

  .panels .panel-container {
    min-height: 0%;
  }

  .settings-panel {
    background: white;
    box-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    /*margin-top: -10px;
     position: fixed;
    bottom:0;
    left:0;
    right:0; */
  }

  .settings-panel .settings-menu > li {
    padding: 10px 0px;
  }

  .panels > li {
    min-width: 100vw;
    padding: 10px 15px 0;
  }

  .panels.selected-2 {
    margin-left: -100vw;
  }

  .panels.selected-3 {
    margin-left: -200vw;
  }

  .panels.selected-4 {
    margin-left: -300vw;
  }

  .panels.selected-5 {
    margin-left: -400vw;
  }

  #preview-zoom {
    bottom: 20px;
    left: 10px;
  }

  .archive-wrap .archive-photo {
    width: 45%;
  }

  .archive-wrap .photo-btns {
    transform: translateY(0%);
  }
}
@media (min-width: 768px) {
  .ball-menu {
    display: none;
  }

  #preview-zoom {
    bottom: 35px;
    left: 20px;
  }

  .product-preview .loading-screen {
    background-size: 70px 70px;
  }

  .product-preview {
    overflow: hidden;
    height: calc(100vh - 129px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 400px;
    background-position: center center;
    background-repeat: no-repeat;
    width: 90vw;
    width: calc(100vw - 400px);
  }

  #main-preview {
    /* height: 600px; */
    width: 1200px;
    margin: auto 0;
  }

  .settings-panel {
    background: white;
    box-shadow: -2px 0px 4px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 0;
    bottom: 0;
    right: 0;
    width: 400px;
  }

  .panels.selected-2 {
    margin-left: -400px;
  }

  .panels.selected-3 {
    margin-left: -800px;
  }

  .panels.selected-4 {
    margin-left: -1200px;
  }

  .panels.selected-5 {
    margin-left: -1600px;
  }

  .settings-panel .settings-menu > li {
    line-height: 60px;
    height: 60px;
    letter-spacing: 2px;
  }
}
@media (min-width: 1200px) {
  .product-preview {
    width: calc(100vw - 500px);
  }

  #collage-wrapper {
    transform: scale(1.2);
  }

  #main-preview {
    /* height: 600px; */
    width: 1200px;
    margin: auto 0;
  }

  .settings-panel {
    width: 500px;
  }

  #babyart-wrapper #render-wrapper[data-size="50x70"] {
    height: 459px;
    width: 328px;
  }

  #babyart-wrapper #render-wrapper[data-size="30x40"] {
    height: 400px;
    width: 300px;
  }

  .panels.selected-2 {
    margin-left: -500px;
  }

  .panels.selected-3 {
    margin-left: -1000px;
  }

  .panels.selected-4 {
    margin-left: -1500px;
  }

  .panels.selected-5 {
    margin-left: -2000px;
  }
}
@media (min-width: 767px) {
  .product-preview.zoom {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    height: 100vh;
    background-size: 151%;
    width: 100vw;
  }

  .product-preview.zoom #main-preview {
    height: auto;
    width: 100%;
    margin: auto 0;
  }
}
@media (max-width: 1024px) {
  .product-preview.zoom {
    background-size: 195%;
  }

  .product-preview.zoom #main-preview {
    width: 120%;
    margin-left: -10%;
  }

  .product-preview.zoom .pr-post-product-preview {
    width: 32.8%;
    height: 46.5vw;
  }

  .product-preview.zoom.landscape #productpreview.pr-post-product-preview {
    transform: translate(-50%, -50%);
    width: 46.7%;
    height: 32.9vw;
  }
}
@media (max-width: 767px) {
  .product-preview.zoom {
    background-size: 195%;
  }

  .product-preview.zoom #main-preview {
    width: auto;
    margin: 0 -100%;
  }

  .product-preview.zoom .pr-post-product-preview {
    width: 45%;
  }

  .product-preview.zoom .pr-post-product-preview {
    width: 385px;
    height: 549px;
  }

  #main-preview {
    max-height: 100%;
    width: auto;
    height: 706px;
    margin: 0px -100%;
  }

  .product-preview.landscape #main-preview {
    width: 100%;
    height: auto;
    /*display: block;*/
    /*margin: 0 0 0 -50%;*/
    /*position: relative;*/
  }

  .product-preview.zoom.landscape #productpreview.pr-post-product-preview, .product-preview.landscape #productpreview.pr-post-product-preview {
    transform: translate(-50%, -50%);
    width: 78%;
    height: 55vw;
  }

  .preview-product-wrapper#babyart-wrapper {
    padding: 0;
    transform: scale(0.85);
  }
}
@media (max-width: 544px) {
  .product-preview.zoom .pr-post-product-preview {
    width: 289px;
    height: 411px;
  }

  .product-preview.zoom #main-preview {
    /*height: 530px;*/
    margin: 0 -368px;
  }

  .product-preview.zoom.landscape #productpreview.pr-post-product-preview, .product-preview.landscape #productpreview.pr-post-product-preview {
    transform: translate(-50%, -50%);
    /*width: 411px;*/
    /*height: 289px;*/
  }

  .product-preview.landscape #productpreview.pr-post-product-preview.img6 .primgbox {
    width: calc(11.111% - 4px);
  }

  #productpreview.pr-post.landscape .primgbox {
    margin: 2px;
  }

  .product-preview.zoom.landscape #productpreview.pr-post-product-preview, .product-preview.landscape #productpreview.pr-post-product-preview {
    transform: translate(-50%, -50%);
    width: 78%;
    height: 55vw;
  }

  #main-preview {
    height: 530px;
    margin: 0px -368px;
  }

  .product-preview.landscape #productpreview.pr-post-product-preview.img8 .primgbox {
    width: calc(8.3% - 4px);
  }

  .product-preview.landscape #productpreview.pr-post-product-preview.img4 .primgbox {
    width: calc(16.666% - 4px);
  }

  .product-preview.landscape #productpreview.pr-post-product-preview.img3 .primgbox {
    width: calc(33.333% - 4px);
  }

  .product-preview.landscape #productpreview.pr-post-product-preview.img3 .primgbox {
    width: calc(33.333% - 4px);
  }

  .panels > li:nth-child(2) .panel-container {
    min-height: 250px;
  }
}
.preview-product-wrapper#babyart-wrapper {
  padding: 0;
}

@media (max-height: 778px) {
  .product-preview .settings-btns {
    right: 10px;
    top: 10px;
  }
}
/*--------------------------------------------------------------------------------------------------------------------------------------*/
/* APP */
.app-padding {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

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