/*? sameh code  */
@import "navbar.css";
@import "controls.css";
@import "list_view.css";
/* @import "list_view_sammlungen.css"; */

#design_container {
  display: none;
  width: 98vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 703px;
  border: 1px solid black;
}

#loadingCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

.canvas_animation {
  animation: slide_animation 0.5s ease-out;
}

#slider_container {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  min-height: 500px;
  background-color: transparent;
  overflow-x: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0;
  transition: all 0.4s;
  background-color: transparent;
}

#title_container {
  text-align: center;
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  margin: auto;
  width: 100%;
}

#small_title {
  font-size: 23px;
  margin-bottom: 30px;
}

#title {
  font-size: 130px;
  margin-bottom: 40px;
}

.mehr {
  font-size: 30px;
  border-bottom: 2px solid;
}

#slider_menu {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  flex-flow: row nowrap;
  font-size: 18px;
  width: 70%;
  max-width: 1300px;
  justify-content: center;
  z-index: 1;
}

.slider_menu_item {
  margin: 0 25px;
  padding-bottom: 5px;
}

.slider_menu_item:hover {
  border-bottom: 2px solid !important;
}

.dot {
  height: 10px;
  width: 10px;
  border: 2px solid;
  border-radius: 50%;
  display: none;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 500px;
  width: 20vw;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.next_slide {
  z-index: -1;
  transform: translateX(100%);
}

.current_slide {
  opacity: 1;
  z-index: 0;
}

.prev_slide {
  z-index: -1;
  transform: translateX(-100%);
}

#impressum_container {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 1700px;
  font-size: 12px;
  padding-right: 86px;
}

#impressum_container > a {
  cursor: pointer;
  margin-left: 20px;
  float: right;
}

/* ! media queries */
@media only screen and (max-width: 1050px) {
  #title {
    font-size: 100px;
  }

  #impressum_container {
    display: none;
  }
}

@media only screen and (max-height: 780px) {
  #title {
    font-size: 100px;
  }
}

@media only screen and (max-height: 855px), screen and (max-width: 547px) {
  #title {
    font-size: 80px;
  }
}

@media only screen and (max-height: 591px), screen and (max-width: 433px) {
  #title {
    font-size: 55px;
  }

  #small_title {
    font-size: 20px;
  }

  .slider_menu_item:hover {
    border-bottom: 0px solid !important;
  }
}

/* ! animation */
/* loader animation */
/* Safari 4.0 - 8.0 */
@-webkit-keyframes slide_animation {
  0% {
    height: 0%;
  }

  20% {
    height: 100%;
  }

  40% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/* Standard syntax */
@keyframes slide_animation {
  0% {
    height: 0%;
  }

  20% {
    height: 100%;
  }

  40% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

/*? end sameh code  */

p {
  -webkit-margin-before: 0px;
  -webkit-margin-after: 0px;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -moz-margin-end: 0px;
  -moz-margin-start: 0px;
  -moz-padding-end: 0px;
  -moz-padding-start: 0px;
  padding: 0px;
  margin: 0px;
}

/* h1,
p {
	-webkit-transform: translate3d(0px, 0px, 0px);
} */

/*:focus {outline:0;}*/

img {
  border: 0px;
  image-rendering: crisp-edges;
}

a {
  text-decoration: inherit;
  color: inherit;
  border: 0;
}

/* strong,
b {
	font-family: 'Equitan Sans W05 Bold'
} */

body {
  -webkit-text-size-adjust: 100%;
  font-family: "Heebo", "Helvetica Neue";
  font-weight: 400;
  margin: 0px auto;
  padding: 0px;
  width: 99vw;
  height: 100%;
  font-size: 18px;
  color: #000;
  touch-action: manipulation;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 100%;


}



#container {
  visibility: visible;
  overflow-y: visible;
  /* -webkit-overflow-scrolling: touch; */
  max-width: 1700px;
  margin: 0 auto;
  height: 100%;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#container::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

input {
  border-radius: 0px;
}

#content {
  overflow-x: hidden;
  overflow-y: scroll !important;
  /*jquery fix */
  /* -webkit-overflow-scrolling: touch; */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#content::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

/* #cookie_warning {
	position: fixed;
	max-width: 270px;
	bottom: 10px;
	right: 10px;
	height: auto;
	min-height: 85px;
	padding: 15px;
	background: white;
	color: black;
	z-index: 1000000;
	box-shadow: inset 0px 0px 0px 0.2px darkgrey;
}


#warning_close {
	display: inline-block;
	font-size: 16px;
	cursor: pointer;
	padding: 7px 10%;
	background-color: #369DE1;
	color: white;
	font-size: 13px;
}


#cookie_title {
	width: calc(100% - 50px);
	margin-bottom: 10px;
	font-size: 15px;
}

#cookie_text {
	padding-bottom: 10px;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
}

#cookie_text>a {
	cursor: pointer;
} */

#cookie_warning {
  font-family: "GalanoGrotesque-Regular", sans-serif;
  padding: 20px 30px;
  margin: 10px;
  border-radius: 3px;
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  border: 2px solid white;
  z-index: 1000;
  background-color: white;
  box-shadow: 0 5px 15px 4px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

.cookie_warning_text {
  line-height: 1.4em;
  font-family: "GalanoGrotesque-Regular", sans-serif;
  font-weight: 400;
  -webkit-text-stroke-width: 0px;
  margin-bottom: 1em;
}

#cookie_warning button {
  padding: 10px 20px;
  border-radius: 3px;
  background-color: black;
  color: white;
  transition: all 0.1s linear;
  cursor: pointer;
  margin-top: 10px;
}

#cookie_warning button:hover {
  opacity: 0.8;
}

#cookie_warning button:first-of-type {
  margin-right: 10px;
}

#cookie_warning #cookie_consent {
  background-color: black;

  border: 2px solid transparent;
  font: inherit;
}

#cookie_warning #cookie_noconsent {
  background-color: transparent;
  color: grey;
  border: 2px solid lightgrey;
}

#bottom_part {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 50px;
}

#exh_logo {
  width: 30px;
  height: 30px;
}

#exh_logo a {
  margin: 0 auto;
  max-width: 30px;
  max-height: 30px;
}

#exh_logo img {
  max-width: 100%;
  max-height: 100%;
}

.bottom_element {
  margin: 5px 0;
  min-width: 100px;
}

#detail_holder {
  position: relative;
  padding-top: 100px;
  width: 1000px;
  max-width: 100%;
  margin: 200px auto 0;
}

div#content_columns {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 16px;
  line-height: 1.4em;
  vertical-align: baseline;
  font-family: "GalanoGrotesque-Regular", sans-serif;
  font-weight: 400;
  -webkit-text-stroke-width: 0px;
}

.module.module_text {
  max-width: 600px;
  margin: 0 auto;
}

.module.module_text {
  max-width: 600px;
  margin: 0 auto;
}

.module.module_text p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.module_text a {
  background-image: linear-gradient(120deg, #fcc 0%, #cdd 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.2em;
  background-position: 0 88%;
  transition: background-size 0.1s ease-in;
}

.module a:hover {
  background-size: 100% 95%;
}

.module_image {
  margin-bottom: 70px;
}

.module.module_image img {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1200px) {
  html,
  body {
    font-size: 1.2em;
  }

  #mc_embed_signup .clear {
    display: inline-block;
    position: relative;
    top: -2px;
  }

  #collection_items_holder #collection_items_count {
    top: 44px;
  }

  .module.module_text {
    max-width: 720px;
  }
}

/********* not canceled *******/

input,
textarea {
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

/* count down page */
#countdown_container {
  margin-bottom: 40vh;
}

#countdown_container #collection_title {
  font-size: 45px;
  margin-bottom: 40px;
  font-size: 1.6em;
  margin-bottom: 20px;
}

#counter {
  display: none;
}

#counter span {
  font-family: "GalanoGrotesque-Bold", sans-serif;
}

/* end count down page */

#landing_page_video_holder_mobile {
  display: none;
}

#landing_page_video_holder,
#landing_page_video_holder_mobile {
  margin-top: 120px;
  border: none;
  /* max-width: calc(100vh + 520px); */
  margin-left: auto;
  margin-right: auto;
}

#landing_page_video_holder video,
#landing_page_video_holder_mobile video {
  display: block;
  object-fit: cover;
}
.video_holder {
  position: relative;
  width: 100%;
  height: 100%;
}
.embed_holder {
  width: 100%;
  height: 100%;

  display: inline-block;

  position: relative;
  overflow: hidden;
}

.embed_holder {

  width: 100%;
  height: 100%;
}

.video_buttons_holder {
  position: absolute;
  z-index: 1;
  margin: 10px 0px 5px;
  right: 0px;
  top: 0px;
}

.video_play,
.video_pause,
.video_mute,
.video_unmute {
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
  margin-right: 10px;
}


/* newsletter */
div#check_boxes_container {
}

#mc_embed_signup #check_boxes_container label {
  display: inline;
  margin-right: 10px;
}

/* general */
#overlay_bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
}

/* overlays */
.overlay {
  z-index: 13;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: scroll;
  display: none;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}


.overlay::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.dash_overlay .overlay_content{
  flex-flow: row wrap;
  justify-content: space-evenly;
  
}
.dash_overlay .overlay_content .overlay_text{
  width: 100%;
  margin-bottom: 20px;
}

.dash_overlay .overlay_content .dash_btn{
  margin-top: 5px;
  padding: 3.5px 10px;
  width: 40%;
}
.dash_overlay .overlay_content #cancel_sub_overlay_close{
  background-color: white;
  color: black;
  border: 1px solid black;
}
.dash_overlay .overlay_content #cancel_sub_overlay_close:hover{
  background-color: black;
  color: white;
  border: 1px solid white;
}



.overlay_content {
  margin: 60px 0;
  text-align: center;
  z-index: 15;
  position: absolute;
  background-color: white;
  top: 10vh;
  left: 50%;
  transform: translate(-50%, 0px);
  padding: 10px;
  width: 80%;
  max-width: 800px;
  display: flex;
  flex-flow: column nowrap;
  align-self: center;
  justify-content: center;
}

.overlay_header {
  margin-bottom: 20px;
  font-size: 1.5em;
}

.overlay_text {
  font-size: 1em;
  margin-bottom: 20px;
}

/* close btn */
#overlay_close {
  width: 40px;
  height: 50px;
  position: fixed;
  top: 30px;
  right: 20px;
  background: transparent;
  margin-left: 10px;
  cursor: pointer;
  z-index: 14;
  display: none;
}

.overlay_hr {
  transition: all ease-out 0.5s;
  width: 100%;
  border: none;
  border-radius: 3px;
  position: absolute;
  background-image: linear-gradient(90deg, #ff2da1 20%, #ff0023 80%);
  top: 10%;
  height: 2px;
}

#overlay_close #overlay_hr1 {
  transform: rotate(45deg);
}

#overlay_close #overlay_hr2 {
  transform: rotate(-45deg);
}

/* inquire overlay */
.inquire_overlay .overlay_content {
  text-align: left;
  padding: 30px;
  box-sizing: border-box;
}

.overlay_form {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: center;
  font-size: 18px;
  font-family: "GalanoGrotesque-Regular", sans-serif;
  width: 100%;
  margin: auto;
}

.overlay_text_input {
  width: 100%;
  margin-bottom: 20px;
  border: 0;
  font-size: 18px;
  font-family: "GalanoGrotesque-Regular", sans-serif;
  border-bottom: 1px solid;
  outline: none;
}

.overlay_name {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.overlay_text_input_name {
  width: calc(50% - 20px);
}

.form_btn {
  cursor: pointer;
  width: 50%;
  min-width: 100px;
  max-width: 200px;
  height: 30px;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
  margin-top: 20px;
  border: 1px solid;
  outline: none;
  /* height: 40px; */
  font-size: 18px;
  font-family: "GalanoGrotesque-Regular", sans-serif;

  display: inline-block;
  text-align: center;
  padding: 5px 0;
}

.form_btn:hover {
  color: white;
  background-color: black;
}

.reg_error_holder {
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 12px;
  text-align: center;
}

/* logo */
#city_nav {
  width: 100%;
  margin-bottom: 30px;
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

#city_nav_background {
  /* transition: all 0.3s ease-in-out; */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  z-index: -1;
  background-color: #efe1f0;
  border-bottom: 1px solid black;
}

#city_nav_background:hover,
#city_nav:hover #city_nav_background {
  background: linear-gradient(308deg, #007e7669, #ffd4a87b, #ffc0cb6b);
  background-size: 300% 200%;
  -webkit-animation: AnimationName 20s ease infinite;
  -moz-animation: AnimationName 20s ease infinite;
  animation: AnimationName 20s ease infinite;
}

.city_nav_item {
  margin-right: 10px;
  border-right: 1px solid #000;
}

.city_nav_item:last-child {
  margin-right: 10px;
  border-right: 1px solid transparent;
}

.city_nav_btn {
  font-size: 20px;
  display: inline;
  float: right;
  border: 1px solid black;
  padding: 0 16px;
  position: relative;
  top: 2px;
}
.city_nav_btn:hover {
  color: white;
  background-color: black;
}

.city_nav_item_right_desktop {
  float: right;
  margin-left: 16px;
  padding-right: 16px;
  border-right: 1px solid;
  font-size: 16px;
  position: relative;
  top: 2px;
}

.city_nav_item_right_mobile {
  display: block;
  margin-top: 15px;
  float: none;
}

@media screen and (max-width: 800px) {
  .city_nav_item,
  .city_nav_btn_desktop,
  .city_nav_item_right_desktop {
    display: none;
  }

  #city_nav_background {
    transition: all 0.3s ease-in-out;
  }
}

@media screen and (min-width: 800px) {
  #mobile_city_nav_btn,
  #mobile_city_nav_drop {
    display: none;
  }

  #city_nav_background {
    height: 100px;
  }
  #city_nav {
    padding-top: 30px;
    margin-bottom: 60px;
  }
}

/* mobile city nav */
#mobile_city_nav_btn {
  height: 50px;
  position: relative;
  background: transparent;
  width: 40px;
  cursor: pointer;
  top: -14px;
  float: right;
}

.mobile_menu_hr {
  transition: all ease-out 0.5s;
  width: 115%;
  height: 4px;
  border: none;
  position: absolute;
  background-color: black;
  left: -8px;
}

#menu_hr_1 {
  top: 5%;
}

#menu_hr_2 {
  top: 35%;
}

#menu_hr_3 {
  top: 65%;
}

/* when opened */

#mobile_menu_right.active .mobile_menu_hr {
  top: 35%;
}

#mobile_menu_right.active #menu_hr_1 {
  transform: rotate(135deg);
}

#mobile_menu_right.active #menu_hr_2 {
  transform: rotate(-135deg);
}

#mobile_menu_right.active #menu_hr_3 {
  transform: rotate(-135deg);
}

#mobile_city_nav_drop {
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: 0;
}

#mobile_city_nav_drop.active,
#city_nav_background.active {
  height: calc(100vh - 100px);
  height: 440px;
}

.mobile_city_nav_item {
  display: block;
  margin-bottom: 20px;
}

.logo_text,
.category {
  font-family: "GalanoGrotesque-Bold", sans-serif;
  font-size: 39px;
  margin: 0;
  margin-right: 0.3rem;
  margin-top: 13px;
  line-height: 1.1em;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  -webkit-text-stroke-width: 0px;
}

.logo_text_big {
  font-size: 1.8rem;
  line-height: 1.1em;
}

.category {
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

#by_treat {
  margin-left: auto;
  font-size: 30px;
  font-size: 0.9em;
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

@media screen and (max-width: 500px) {
  #by_treat {
    margin-right: auto;
    margin-left: unset;
    width: 100%;
  }
}

.inline {
  display: inline;
}

@media screen and (max-width: 900px) {
  .logo_text,
  .category,
  .logo_text_big {
    font-size: 1.3em;
  }

  /* #by_treat {
		position: relative;
		font-size: 0.7em;
		top: 1px;
	} */
}

/* videos  */
#embed_vid_container {
  box-sizing: border-box;
  width: 100%;
  padding: 5% 10%;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;

  background: #ffc0cb;

  background: linear-gradient(308deg, #007e7669, #ffc0cb6b, #ffd4a87b);
  background-size: 600% 600%;
  -webkit-animation: AnimationName 28s ease infinite;
  -moz-animation: AnimationName 28s ease infinite;
  animation: AnimationName 28s ease infinite;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 47%;
  }

  50% {
    background-position: 100% 54%;
  }

  100% {
    background-position: 0% 47%;
  }
}

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 47%;
  }

  50% {
    background-position: 100% 54%;
  }

  100% {
    background-position: 0% 47%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 47%;
  }

  50% {
    background-position: 100% 54%;
  }

  100% {
    background-position: 0% 47%;
  }
}

#embed_vid_container video {
}

#main_video {
  width: 90%;
  height: 100%;
  max-width: 800px;
}

#main_video .vid_con {
  width: 100%;
  height: 100%;
}

#main_video .vid_con .vid_preview_title,
#main_video .vid_thumbnail {
  display: none;
}

#main_video .vid_con .vid_main_title {
  font-size: 1.6em;
  padding: 3px 10px;
}

#main_video .vid_con .html_container {
  -webkit-box-shadow: 0px 8px 16px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 8px 16px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 16px 10px rgba(0, 0, 0, 0.2);
}

#main_video .description_trigger {
  cursor: pointer;
  margin: 20px 0 10px;
  padding: 2px 10px;
  background: white;
  display: inline-block;
}

.zoom_note {
  font-size: 14px;
  background-color: white;
  padding: 10px 5px;
  margin: 15px 0 0;
  opacity: 0.6;
  transition: all 0.3s ease-out;
}

.zoom_note:hover {
  opacity: 1;
}

/* small videos */
#small_vid_con {
  margin-top: 10px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(90% + 20px);
  padding: 0 10px;
  max-width: 820px;
  overflow: scroll;
  /* box-sizing: border-box; */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

#small_vid_con::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

#small_vid_con .vid_con {
  transition: 0.3s all ease-in-out;
  opacity: 0.6;
  margin: 10px;
  width: calc(25% - 20px);
  max-width: 185px;
  min-width: 125px;
  cursor: pointer;
}

#small_vid_con .vid_con .vid_main_title,
#small_vid_con .vid_con .vid_text,
#small_vid_con .html_container {
  display: none !important;
}

#small_vid_con .vid_con .vid_preview_title {
  font-size: 0.6em;
  padding: 2px 4px;
  max-width: 100%;
  min-width: 10px;
}

#small_vid_con .vid_con:hover {
  opacity: 1;
  transform: scale(1.1);
}

#small_vid_con .description_trigger {
  display: none;
}

/* general for videos */
.description_trigger.active .arrow_down {
  transform: rotate(134deg) translate(5px, -5px);
}

.vid_con {
  position: relative;
  /* display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end; */
}

.vid_con .html_container {
  width: 100%;
  margin: 10px 0 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.vid_thumbnail {
  width: 100%;
  height: 115px;
  margin: 10px 0 5px;
  /* max-width: 185px; */
  max-height: calc(25vw - 20px);
  /* min-width: 115px; */
  min-height: 50px;
}

.vid_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vid_con .vid_main_title,
.vid_con .vid_preview_title {
  display: inline-block;
  background-color: white;
  box-sizing: border-box;
}

#video_under_text {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}

#video_under_text #media_partner {
  font-size: 0.9em;
}

#video_under_text img {
  margin-left: 20px;
  width: 100px;
}

/******** art work (gallery) ********/

.collection_item {
  width: calc(33% - 30px);
  min-width: 485px;
  margin: 10px 10px 15px;
  display: flex;
  flex-flow: column nowrap;
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

.collection_item_row_col.row_image {
  width: 100%;
  padding: 0;
  border: 1px solid;
  
  position: relative;
}

.collection_item_row_col.row_image .front_image {
  /* width: 100%;
    height: 400px; */
  /* object-fit: cover; */
  max-width: 70%;
  max-height: 60%;
  -webkit-box-shadow: 4px 7px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 4px 7px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 4px 7px 5px 0px rgba(0, 0, 0, 0.2);
}

.collection_item_row_col.row_image .front_image.sculpture {
  /* width: 100%; 
	height: 100%;

	*/
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 0 0 0 white !important;
}

.row_image_link {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.collection_item_row {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
}

.collection_item_row_col {
  padding: 5px;
  min-height: 20px;
}

.collection_item_row_col.last {
  /* border-bottom: 1px solid black; */
}

.row_col1 {

  position: relative;
  border: 1px solid black;
  border-top: none;
  width: 30%;
}

.row_col2 {
  border: 1px solid black;
  border-top: none;
  border-left: none;
  width: 70%;
  word-break: break-word;
}

.collection_item_row.row_btn {
  border: 1px solid black;
  box-sizing: border-box;
  text-align: center;
  /* align-items: center;
	justify-content: center;
	display: flex; */
  /* height: 40px; */
  margin-top: 5px;
  cursor: pointer;
  display: inline-block;
  padding: 5px 0;
}

/* no hover for touch screens */
@media (hover: hover) and (pointer: fine) {
  .collection_item_row.row_btn:hover {
    color: white;
    background-color: black;
  }
}

/* scale images */

.scale_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  overflow: scroll;
  display: none;
  background-color: rgba(0, 0, 0, 0.6);
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.scale_container::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.scale_dark_background {
  position: absolute;
  width: 100%;
  height: 100%;

  z-index: 11;

  box-sizing: border-box;
}

/* wall */
.scale {
  background-color: rosybrown;
  text-align: center;

  width: 60vw;
  height: 70vh;
  max-width: 800px;
  max-height: 900px;

  z-index: 12;
  /* box-shadow: inset 0px 0px 2px 0px rgba(0, 0, 0, 0.2); */

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: 0;
  padding: 0;
}

.scale.fix_it {
  position: relative;
  margin: 0px auto 60px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translate(0px, 0px);
}

/* image col */
.scaled_img_container {
  position: relative;
  margin: auto;
  max-width: 800px;
  max-height: 800px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* img */
.scaled_img {
  /* left: 0; */
  /* position: absolute; */
  /* top: 35%; */
  /* transform: translate(0px, -50%); */
  width: 100%;
  -webkit-box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 5px 5px 0px rgba(0, 0, 0, 0.2);
}

.object {
  position: absolute;
  top: 100%;
  left: 0px;
  transform: translate(0px, -50%);
  image-rendering: auto;
}

/* close btn */
.scale_close {
  width: 40px;
  height: 50px;
  position: absolute;
  top: 30px;
  right: 20px;
  background: transparent;
  margin-left: 10px;
  cursor: pointer;
  z-index: 14;
}

.scale_hr {
  transition: all ease-out 0.5s;
  width: 100%;
  border: none;
  border-radius: 3px;
  position: absolute;
  background-image: linear-gradient(90deg, #ff2da1 20%, #ff0023 80%);
  top: 10%;
  height: 2px;
}

.scale_close #scale_hr1 {
  transform: rotate(45deg);
}

.scale_close #scale_hr2 {
  transform: rotate(-45deg);
}

/* small width screens */
@media screen and (max-width: 850px) {
  .scale {
    width: 70vw;
    height: 75vh;
    min-width: 300px;
    min-height: 300px;
  }

  .collection_item {
    min-width: 355px;
  }
}

@media screen and (max-width: 850px) and (min-height: 460px) {
  .scale {
    /* position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0; */
  }
}

/* big height screens*/
@media screen and (min-height: 860px) {
  .scale {
    /* position: relative; */
    /* position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		margin: 0; */
  }
}

#mc_embed_signup {
  max-width: 80%;
  margin: 10px 0px auto;
  padding-bottom: 50px;
}

#mc_embed_signup form {
  text-align: left;
  padding: 10px 0 10px 0;
}

.mc-field-group {
  display: inline-block;
}

/* positions input field horizontally */
#mc_embed_signup input.email {
  border: 1px solid #abb0b2;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #343434;
  background-color: #fff;
  box-sizing: border-box;
  height: 32px;
  padding: 0px 0.4em;
  display: inline-block;
  margin: 0;
  width: 350px;
  vertical-align: middle;
}

#mc_embed_signup label {
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
  font-weight: bold;
}

#mc_embed_signup .clear {
  display: inline-block;
  position: relative;
  /* top: -2px; */
}

/* positions button horizontally in line with input */
#mc_embed_signup .button {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #fff;
  background-color: #aaa;
  box-sizing: border-box;
  height: 32px;
  line-height: 32px;
  padding: 0 18px;
  display: inline-block;
  margin: 0;
  transition: all 0.23s ease-in-out 0s;
  -webkit-appearance: none;
}

#mc_embed_signup .button:hover {
  background-color: #777;
  cursor: pointer;
}

#mc_embed_signup div#mce-responses {
  float: left;
  top: -1.4em;
  padding: 0em 0.5em 0em 0.5em;
  overflow: hidden;
  width: 90%;
  margin: 0 5%;
  clear: both;
}

#mc_embed_signup div.response {
  margin: 1em 0;
  padding: 1em 0.5em 0.5em 0;
  font-weight: bold;
  /* float: left; */
  top: -1.5em;
  z-index: 1;
  width: 80%;
  margin: 0 auto;
}

#mc_embed_signup #mce-error-response {
  display: none;
}

#mc_embed_signup #mce-success-response {
  color: #529214;
  display: none;
}

#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: 0.5em 0;
}

@media (max-width: 768px) {
  .mc-field-group {
    display: block;
  }

  #mc_embed_signup input.email {
    width: 100%;
    margin-bottom: 5px;
  }

  #mc_embed_signup .clear {
    display: block;
    width: 100%;
  }

  #mc_embed_signup .button {
    width: 100%;
    margin: 0;
  }
}

#mc_embed_signup div.mce_inline_error {
  display: none !important;
}

/** gallery register  **/

.page_title {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.page_holder {
  font-family: "GalanoGrotesque-Regular", sans-serif;
  width: 95%;
  margin: 200px auto 0;
  max-width: 2000px;
  position: relative;
}

.page_intro {
  font-family: "GalanoGrotesque-Regular", sans-serif;
  width: 95%;
  margin: 200px 0 0;
  max-width: 2000px;
  position: relative;
}

#gallery_register_form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 60px;
  max-width: 700px;
  min-width: 300px;
  width: 80%;
}

.form_title {
  margin-top: 20px;
}

.lable_field {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.lable_field.newsletter {
  margin-top: 25px;
  align-items: center;
  justify-content: flex-end;
  font-size: 16px;
}

.lable_field.newsletter .lable {
  margin-right: 0px;
}

.newsletter_check {
  margin-right: 20px;
}

@media screen and (max-width: 665px) {
  .lable_field {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
  }

  .lable_field.newsletter {
    flex-flow: row wrap;
    justify-content: flex-start;
  }
}

.gallery_register_lable {
  margin-right: 20px;
  position: relative;
}

.hint_trigger {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  border-left: 1px solid;
  border-right: 1px solid;
  padding: 2px 5px 0;
  line-height: 17px;
  cursor: pointer;
}


.hint_trigger:hover span {
  color: #ffc0cb;
}

.hint_trigger:hover .hint {
  display: inline-block;
}

.hint {
  line-height: 30px;
  position: absolute;
  left: calc(100% + 20px);
  width: 300px;
  text-align: center;
  padding: 10px;
  top: 50%;
  z-index: 2;
  background-color: white;
  transform: translate(0, -50%);
  box-shadow: 0 0 10px 0px #a5a5a5;
  border-radius: 5px;
  display: none;
}

.hint.dash_hint {
 
  left: 5px;
  top: calc(100% + 16px);
  box-shadow: 0 0 40px 10px #a4a4a4;
  transform: translate(0, 0);
}

.hint::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
  /* box-shadow: 0 0 5px 0 grey; */
  border-bottom: 10px solid transparent;
  border-right: 10px solid black;
  border-top: 10px solid transparent;
  border-left: 10px solid transparent;
}


.hint.dash_hint::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  transform: translate(0, -100%);
  /* box-shadow: 0 0 5px 0 grey; */
  border-bottom: 14px solid black;
  border-right: 14px solid transparent;
  border-top: 14px solid transparent;
  border-left: 14px solid transparent;
}



.sub_lable {
  /* opacity: 0.5; */
  font-size: 12px;
}

.gallery_register_input {
  font-family: "GalanoGrotesque-Regular", sans-serif;
  max-width: 350px;
  min-width: 300px;
  width: 55%;
  height: 35px;
  border: 1px solid;
  outline: none;
  padding-left: 10px;
  font-size: 16px;
}

select.gallery_register_input {
  background-color: white;
  width: 55%;
  max-width: 363px;
  height: 40px;
}

.form_error {
  width: 100%;
  color: brown;
  font-size: 12px;
}

.lable_field.submit {
  justify-content: flex-end;
}

#gallery_register_submit_btn,
#event_gallery_register_submit_btn {
  color: white;
  background-color: black;
  opacity: 0.8;
  height: 25px;
  max-width: 300px;
  width: 42%;
}

#gallery_register_submit_btn:hover,
#event_gallery_register_submit_btn:hover {
  opacity: 1;
}

.form_ok {
  font-size: 16px;
  color: #026502;
  width: 100%;
}

/* form confirm */

#types_container {
  margin: 30px 0;
  max-width: 600px;
}

.sub_type {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 20px;
  font-size: 0.83em;
}

.sub_type div {
  margin-top: 18px;
}

.additional_ls {
  margin-top: 50px;
}

.type_desc {
  display: flex;
  flex-flow: column nowrap;
  max-width: calc(100% - 50px);
}

.type_desc_container {
  display: none;
}

.type_desc .filter_controler {
  margin: 0;
}

.type_btn,
.additional_ls_btn,
.total_place_holder {
  width: 30px;
  height: 30px;
  border: 3px solid black;
  background-color: white;
  cursor: pointer;
  margin-right: 20px;
  border-radius: 50px;
  box-sizing: border-box;
}

.additional_ls_btn {
  border-radius: 0;
}

.total_place_holder {
  border: 3px solid transparent;
}

.type_btn.active,
.additional_ls_btn.active {
  background-color: black;
}

.total_to_pay {
  margin-top: 50px;
  border-top: 1px solid;
  padding-top: 20px;
}

.total_rows {
  width: 100%;
}

.total_row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.total_row.small_text {
  font-size: 14px;
  margin-bottom: 20px;
}

#confirm_submit_submit_btn {
  width: 60%;
  max-width: 250px;
  color: white;
  background-color: black;
  opacity: 0.8;
}

#confirm_submit_submit_btn:hover ,#promo_code_btn:hover{
  opacity: 1;
}

#promo_code_btn{
  display: inline-block;
  margin-left: 10px;
  color: white;
  background-color: black;
  opacity: 0.8;
  padding: 3px 10px;
  cursor: pointer;
}

/* payment */
#checkout-message {
  color: #005500;
}

#checkout-message.error {
  color: #49000a;
}

#checkout-message h1 {
  margin-bottom: 0;
}

/******* Log in  ******/
#login_container {
  font-size: 18px;
  max-width: 300px;
  margin: 30vh auto 100px;
  padding-bottom: 10px;
}

.form_title {
  font-size: 30px;
  text-align: left;
}

#log_in_input_btn {
  margin-top: 30px;
}

.login_row {
  width: 100%;
}

#log_in_btn {
  margin-top: 10px;
}




.side_btn {
  position: absolute;
  right: 0;
  top: -10px;
  border: 1px solid black;
  color: white;
  background: black;
  padding: 7px 10px;
  margin-left: auto;
  margin-bottom: 10px;
  /* width: 90px; */
  cursor: pointer;
  text-align: center;
}

div#upgrade_btn {
  transform: translate(0px, 85px);
}

div#upgrade_events_btn {
  transform: translate(0px, 170px);
}
.side_text {
  color: #777;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.6;
}
#upgrade_text {
  transform: translate(0px, 55px);
}
#upgrade_events_text {
  transform: translate(0px, 140px);
}

.information_container {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 3 0px;
}

.dash_title {
  font-size: 1.2em;
}
.dash_desc_text {
  font-size: 14px;
  margin: 0px 0 8px 0;
  opacity: 0.6;
}

.field_row .dash_desc_text {
  max-width: 300px;
}
#update_space_form .dash_field {
  width: 300px;
  max-width: 90vw;
}
.dash_form_trigger {
  cursor: pointer;

  margin-bottom: 10px;
}

.arrow_right {
  margin-left: 20px;
  margin-bottom: 2px;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-bottom: 2px solid black;
  border-right: 2px solid black;
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.dash_form_trigger.active .arrow_right {
  transform: rotate(225deg) translate(-3px, -5px);
}

.information_form {
  width: 80%;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-start;
}

#space_information_container {
  position: relative;
  margin: 20px 0;
  /* bottom: 53px; */
}

#space_information_container .dash_title {
  margin-bottom: 10px;
}

#space_information_btn {
  color: white;
  background: black;
  padding: 7px 10px;
  text-align: center;
  margin-top: 10px;
}

.invited_email {
  font-size: 20px;
  position: relative;
  padding-left: 30px;
}

.delete_invited_email {
  position: absolute;
  left: 0;
  padding: 5px;
  background-color: white;
  opacity: 0.2;
  padding: 1px 5px 5px;
  cursor: pointer;
}

.delete_invited_email:hover {
  opacity: 1;
}

.invited_status {
  margin-left: 10px;
  margin-left: 10px;
  font-size: 14px;
  opacity: 0.6;
}

#invited_alert {
  position: fixed;
  left: 0;
  border: 1px solid;
  /* height: 50px; */
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  padding: 8px 8px 0 10px;
  border-left: 0;
  transform: translate(-100%, 0px);
  max-width: 600px;
  transition: all 0.3s ease-in-out;
  background: white;
  z-index: 10;
}

#invited_alert.active {
  position: fixed;
  left: 0;
  transform: translate(0, 0px);
}

#invited_alert_bell {
  width: 50px;
  position: absolute;
  height: 50px;
  right: 0;
  top: -1px;
  border-radius: 0 5px 5px 0;
  border: 1px solid black;
  transform: translate(100%, 0px);
  display: inline-block;
  cursor: pointer;
  background: linear-gradient(308deg, rgb(191, 0, 0), #ffd4a87b, #ffc0cb6b);
  background-size: 300% 200%;
  -webkit-animation: AnimationName 20s ease infinite;
  -moz-animation: AnimationName 20s ease infinite;
  animation: AnimationName 20s ease infinite;
}

#invited_alert_bell img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;

  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  animation-direction: infinite;
  animation-iteration-count: infinite;
}

#invited_alert span {
  text-decoration: underline;
  margin: 0 5px;
}

#invite_alert_btns {
  margin: 20px auto 10px;
  display: flex;
}

.invite_alert_btn {
  padding: 0 10px;
  border: 1px solid black;
  margin: 10px;
  cursor: pointer;
}

#invite_no {
  opacity: 0.5;
  background-color: black;
  color: white;
}

.invite_alert_btn:hover,
#invite_no:hover {
  opacity: 1;
  background-color: black;
  color: white;
}

@-webkit-keyframes wiggle {
  89% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) skewX(9deg) scale(1);
  }

  91% {
    transform: translate(-50%, -50%) skewX(-8deg) scale(1.1);
  }

  92% {
    transform: translate(-50%, -50%) skewX(7deg) scale(1.2);
  }

  93% {
    transform: translate(-50%, -50%) skewX(-6deg) scale(1.3);
  }

  94% {
    transform: translate(-50%, -50%) skewX(5deg) scale(1.4);
  }

  95% {
    transform: translate(-50%, -50%) skewX(-4deg) scale(1.5);
  }

  96% {
    transform: translate(-50%, -50%) skewX(3deg) scale(1.4);
  }

  97% {
    transform: translate(-50%, -50%) skewX(-2deg) scale(1.3);
  }

  98% {
    transform: translate(-50%, -50%) skewX(1deg) scale(1.2);
  }

  99% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1);
  }
}

@keyframes wiggle {
  89% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1);
  }
  90% {
    transform: translate(-50%, -50%) skewX(9deg) scale(1);
  }

  91% {
    transform: translate(-50%, -50%) skewX(-8deg) scale(1.1);
  }

  92% {
    transform: translate(-50%, -50%) skewX(7deg) scale(1.2);
  }

  93% {
    transform: translate(-50%, -50%) skewX(-6deg) scale(1.3);
  }

  94% {
    transform: translate(-50%, -50%) skewX(5deg) scale(1.4);
  }

  95% {
    transform: translate(-50%, -50%) skewX(-4deg) scale(1.5);
  }

  96% {
    transform: translate(-50%, -50%) skewX(3deg) scale(1.4);
  }

  97% {
    transform: translate(-50%, -50%) skewX(-2deg) scale(1.3);
  }

  98% {
    transform: translate(-50%, -50%) skewX(1deg) scale(1.2);
  }

  99% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1.1);
  }

  100% {
    transform: translate(-50%, -50%) skewX(0deg) scale(1);
  }
}

.field_row {
  margin: 0 15px 10px 0;
}

.full_width {
  width: 100%;
}

.dash_field_lable {
  font-size: 16px;
  margin-top: 10px;
}

.dash_field {
  border: 1px solid black;
  padding: 5px;
  width: 220px;
  font-size: 16px;
  outline: none;
  font-family: "GalanoGrotesque-Regular", sans-serif;
}

.dash_field iframe {
  height: 100%;
}

.dash_field.dash_field_small {
  width: 120px;
}

.dashfield_select {
  height: 30px;
  border-radius: 0;
  background-color: white;
}

.dash_btn {
  cursor: pointer;
  border: 1px solid black;
  font-size: 18px;
  padding: 0 10px;
  color: white;
  background-color: black;
  display: inline-block;
  margin-top: 20px;
}

.error_msg {
  /* display: inline; */
  font-size: 14px;
  color: #b40202;
}


/* videos */

.code_hint {
  background-size: 100% 95%;
  background-image: linear-gradient(120deg, #fcc 0%, #cdd 100%);
  background-repeat: no-repeat;
  /* background-size: 100% 0.2em; */
  background-position: 0 88%;
  transition: background-size 0.1s ease-in;

}

#vid_code_alert.active{
  transition: all 0.3s;
    transform: scale(1.01);
    display: inline-block;
    box-shadow: 0 0 7px 1px #8325255e;
    padding: 5px;
    animation: shake 0.5s forwards;
}
@keyframes shake {
  10%, 90% {
    transform: scale(1.01) translate(-1px,  0);
  }
  
  20%, 80% {
    transform: scale(1.01) translate(2px,  0);
  }

  30%, 50%, 70% {
    transform: scale(1.01) translate(-4px,  0);
  }

  40%, 60% {
    transform: scale(1.01) translate(4px,  0);
  }
}




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

.dashfield_file input {
  height: 100%;
  display: block;
  width: 100%;
  /* opacity: 0; */
  position: absolute;
  top: 0;
  left: 0;
}

#video_add_thumb_progress {
  bottom: absolute;
  top: 5px;
  left: 5px;
}

#video_add_thumb_img,
.video_update_img {
  width: 100%;
  margin-top: 10px;
}

/* art work for dashboard */

.color_list_box {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 1px solid #00000047;
  cursor: pointer;
}



#gallery_btns {
  /* position: absolute; */
  top: 0;
  left: 0;
  max-width: 550px;
  width: 100%;
  margin: 20px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

#gallery_btns .gallery_btn {
  border: 1px solid black;
  padding: 10px;
  margin-top: 5px;
  cursor: pointer;
}

.gallery_btn:hover {
  color: white;
  background-color: black;
}



.drop_zone_container {
  position: absolute;
  top: 0;
  /* background: transparent; */
  width: 100%;
  height: 100%;
}

.dropzone,
.dropzone_sub {
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.dropzone input,
.dropzone_sub input {
  position: absolute;
  opacity: 0;
}

.dz-default.dz-message {
  display: none;
}

.dropzone .dz-preview.dz-image-preview {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
}

.dropzone .dz-preview:hover {
  z-index: 0;
}

.dropzone .dz-preview .dz-image {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.dropzone .dz-preview .dz-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.dropzone .dz-preview:hover .dz-image img {
  filter: none;
  transform: scale(1);
}

.dropzone .dz-details,
.dropzone .dz-size,
.dropzone .dz-filename {
  display: none;
}

/* dashboard  */
