body, html {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  bottom: 0;
  right: 0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  background-color: #111111;
}

/* ng-cloak */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng.ng-cloak {
  display: none;
}

/************ COLORS ************/
/*
dark-grey: #111111;
dark-grey-2: #222222;
dark-grey-4: #444444;
dark-grey-6: #666666;
medium-grey: #777777;
light-grey: #CCCCCC;
light-yellow: #FFF7AE;
strong-yellow: #FFFF66;
*/

.app .header .yellow, 
.app .body .yellow,
.app .footer .yellow {
  color: #FFF7AE; /* light-yellow */
}

.app .header .white, 
.app .body .white,
.app .footer .white {
  color: #FFFFFF;
}

.app .header .grey, 
.app .body .grey,
.app .footer .grey {
  color: #666666; /* dark-grey-6 */
}

/************ GENERAL ************/

.app {
  position: relative;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #111111 url(../img/backgrounds/home.jpg) no-repeat center top fixed; /* dark-grey */
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  background-size: 100% auto;
}
.app.mobile {
  background: #111111 url(../img/backgrounds/home-mobile.jpg) no-repeat center top fixed; /* dark-grey */
}

.app .body {
  background-color: #111111;  /* dark-grey */
  color: #CCCCCC; /* light-grey */
}

.loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  text-align: center;
  overflow: hidden;
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  -khtml-opacity: 0.75;
  opacity: 0.75;
  z-index: 999999;
}

.loading img {
  margin-top: 30vh;
}

.clickeable {
  cursor: pointer;
}

.margin-small {
  margin: 1em;
}

.margin-xsmall {
  margin: 1ex;
}

.margin-left-small {
  margin-left: 1em;
}

.margin-left-xsmall {
  margin-left: 1ex;
}

.margin-right-small {
  margin-right: 1em;
}

.margin-right-xsmall {
  margin-right: 1ex;
}

.margin-top-small {
  margin-top: 1em;
}

.margin-top-xsmall {
  margin-top: 1ex;
}

.margin-bottom-small {
  margin-bottom: 1em;
}

.margin-bottom-xsmall {
  margin-bottom: 1ex;
}

.rounded {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.top-rounded {
  -webkit-border-top-left-radius: 10px;
  -moz-border-top-left-radius: 10px;
  border-top-left-radius: 10px;

  -webkit-border-top-right-radius: 10px;
  -moz-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
}

.bottom-rounded {
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-bottom-left-radius: 10px;
  border-top-bottom-radius: 10px;

  -webkit-border-bottom-right-radius: 10px;
  -moz-border-bottom-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.break-word {
  word-wrap: break-word;
  word-break: break-all;
}

/************ FORM ************/
.form-input{
  padding-top: 1ex;
}

.form-input label{
  font-weight: 600;
  vertical-align: top;
}

.form-input input, .form-input select, .form-input textarea {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  border: 1px solid #CCCCCC;
  width: 55%;
  margin-left: 1em;
  color: #000000;
}

.form-input span.label {
  display: inline-block;
  font-weight: 400;
  font-size: 85%;
  margin: 1ex 0 3ex 0;
}

.alert.alert-info {
  margin-top: 2ex;
}

/************ TABLE ************/

.table tr th.left-image, .table tr td.left-image {
  width: 70px !important;
}

.table tr th.table-opt-1, .table tr td.table-opt-1 {
  width: 50px !important;
}

.table tr th.table-opt-2, .table tr td.table-opt-2 {
  width: 100px !important;
}

.table tr th.table-opt-3, .table tr td.table-opt-3 {
  width: 150px !important;
}

.table tr th.table-opt-3x, .table tr td.table-opt-3x {
  width: 175px !important;
}

.table tr th.table-opt-min-3, .table tr td.table-opt-min-3 {
  min-width: 150px !important;
}

.table tr th.table-opt-min-4, .table tr td.table-opt-min-4 {
  min-width: 200px !important;
}

.input-group {
  width: 100%;
}

.table tr th.left-image .input-group, .table tr td.left-image .input-group {
  margin:0;
  font-size: 20px;
}

/************ HEADER ************/

.navbar {
  border: none;
  background-color: transparent;
  margin-bottom: 25px;
}

.navbar-inverse .navbar-nav li {
  max-width: 140px;
  min-height: 70px;
  padding-top: 25px;
  text-align: center;
  vertical-align: middle;
}

.navbar-inverse .navbar-nav>li>a {
  background-color: transparent;
  color: #ddd;
  font-weight: 100;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
  background-color: transparent;
  color: #fff;
}

.navbar a.navbar-brand {
  min-height: 70px;
  padding: 25px;
}

.navbar a.navbar-brand span {
  line-height: 50px;
  font-size: 16px;
  font-weight: 100;
  color: #FFF7AE; /* light-yellow */
}

.navbar a.navbar-brand img {
  height: 70px;
  max-width: 100%;
}

/************ MOBILE-HEADER ************/

.mobile-menu-button {
  text-align: right;
}

.mobile-header {
  position: fixed;
  top: 130px;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mobile-header .navbar {
  background-color: #111111;
  text-align: center;
  overflow: hidden;
  max-height: 500px; /* approximate max height */
  -webkit-transition: all 1000ms ease-out;
  -moz-transition: all 1000ms ease-out;
  -o-transition: all 1000ms ease-out;
  transition: all 1000ms ease-out;
}

.mobile-header .navbar.collapsed {
  max-height: 0;
}

.mobile-header .navbar.navbar-inverse .nav.navbar-nav li {
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  min-height: 10px;
  padding: 10px 0 0 0;
}

.mobile-header .navbar.navbar-inverse .nav.navbar-nav li a {
  display: block;
  font-size: 16px;
  line-height: 1;
  /*
  background-color: #222222;
  border: 1px solid #444444;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  */
}

.mobile-header .navbar.navbar-inverse .nav.navbar-nav li a:hover,
.mobile-header .navbar.navbar-inverse .nav.navbar-nav li a:active,
.mobile-header .navbar.navbar-inverse .nav.navbar-nav li.active a,
.mobile-header .navbar.navbar-inverse .nav.navbar-nav li.active a:hover,
.mobile-header .navbar.navbar-inverse .nav.navbar-nav li.active a:active {
  font-size: 16px;
  /*
  background-color: #444444;
  */
}

/************ FOOTER ************/

.footer {
  background-color: #000000;
  padding-top: 4ex;
}

.footer .container a {
  display: block;
  color: #CCCCCC; /* light-grey */
  text-decoration: none;
}

.footer .container a:hover {
  color: #FFFFFF;
}

.footer .container a.yellow {
  display: block;
  color: #FFF7AE; /* light-yellow */
  text-decoration: none;
}

.footer .container a.yellow:hover {
  color: #FFFF66; /* strong-yellow */
}

.footer .container a.midlink {
  color: #CCCCCC; /* light-grey */
  text-decoration: none;
}

.footer .container a.midlink:hover {
  color: #FFFFFF;
}

.footer .container .logos {
  padding-top: 10px;
  text-align: center;
}

.footer .container .logos a {
  display: inline;
}

.footer .container .logos a.left {
  margin-right: 3%;
}

.footer .container .logos a img {
  width: 47%;
  max-width: 95px;
}

.footer .container .row.links {
  margin: 4ex -15px 2ex -15px;
}

.footer .container .links a,
.footer .container .links a:hover,
.footer .container .links a:active {
  display: inline;
  color: #333333;
  text-decoration: none;
}
.footer .container .links span {
  margin: 0 2ex 0 2ex;
}

.footer .container .links a.feli,
.footer .container .links a.feli:hover,
.footer .container .links a.feli:active {
  display: inline;
  color: #1c1c1c;
  text-decoration: none;
  font-size: 14px;
}

/************ CONTAINER ************/

.app .body .main-title {
  margin: 3ex 0;
}

.app .body .main-title h1, .app .body h2 {
  display: inline-block;
  margin-right: 1ex;
  padding-left: 1ex;
  border-left: 3px solid #CCCCCC; /* light-grey */
}

.app .body .main-title h1 {
  font-size: 32px;
  color: #CCCCCC; /* light-grey */
  border-left-color: #CCCCCC; /* light-grey */
}

.app .body .main-title h2 {
  font-size: 24px;
  color: #FFF7AE; /* light-yellow */
  border-left-color: #FFF7AE; /* light-yellow */
}

.app .body .main-title h1 a {
  color: #CCCCCC; /* light-grey */
  text-decoration: none;
}

.app .body .main-title h1 a:hover {
  color: #CCCCCC; /* light-grey */
  text-decoration: none;
}

.app .body .main-title h2 a {
  color: #FFF7AE; /* light-yellow */
  border-left-color: #FFF7AE; /* light-yellow */
  text-decoration: none;
}

.app .body .main-title h2 a:hover {
  color: #FFF7AE; /* light-yellow */
  border-left-color: #FFF7AE; /* light-yellow */
  text-decoration: none;
}

/************ HOME ************/

.app .body.home {
    background-color: transparent;
}

.app .body .homecont {
  text-align: right;
}

.app .body .homecont img.big-logo {
  max-width: 95%;
}

/************ BIO ************/

.app .body .biocont img {
  max-width: 100%;
  margin-bottom: 20px;
}

.app .body .biocont p {
  margin-bottom: 75px;
}

/************ ARTWORK ************/

.app .body .artworkcont ul {
  list-style: none;
  margin-top: 2%;
}

.app .body .artworkcont ul li {
  width: 96%;
  padding: 2%;
}

.app .body .artworkcont ul li a img {
  width: 100%;
}

/************ ARTWORK CATEGORY ************/

.app .body .artworkcategory .subcategory {
  margin-bottom: 2vw;
  text-align: center;
}

.app .body .artworkcategory .subcategory .preview {
  display: table;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 228px;
  height: 120px;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

.app .body .artworkcategory .subcategory .preview span {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  max-width: 188px;
  height: 120px;
  padding: 0 20px;
  font-size: 18px;
  color: #fff;
  font-weight: 100;
}

/*
.app .body .artworkcategory .subcategory img {
  width: 100%;
  max-width: 228px;
  cursor: pointer;
}
*/

/************ ARTWORK SUBCATEGORY ************/

.app .body .artworksubcategory .artwork {
  margin-bottom: 2vw;
}

.app .body .artworksubcategory .artwork a {
  display: block;
  width: 100%;
  padding: 35% 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
  color: #CCCCCC; /* light-grey */
}

.app .body .artworksubcategory .artwork a.bg-topper {
  background-position: center top;
}

.app .body .artworksubcategory .artwork a.bg-top {
  background-position: center -25px;
}

.app .body .artworksubcategory .artwork a.bg-bottom {
  background-position: center bottom;
}

.app .body .artworksubcategory .carousel,
.app .body .artworksubcategory .detail {
  width: 960px;
  margin: 0 auto;
}

/************ ARTWORK DETAIL ************/

.app .body .artworkdetail .artwork {
  text-align: center;
  vertical-align: middle;
  margin-bottom: 1ex;
}

.app .body .artworkdetail .artwork img {
  max-width: 90%;
  max-height: 640px;
}

.app .body .artworkdetail .detail,
.app .body .artworksubcategory .detail {
  padding-bottom: 3ex;
}

.app .body .artworkdetail .detail #artwork-detail,
.app .body .artworksubcategory .detail #artwork-detail {
  margin: 0 auto;
}

.app .body .artworkdetail .detail #artwork-detail .arrows {
  text-align: center;
  margin-top: 2ex;
}

.app .body .artworkdetail .detail #artwork-detail .arrows img {
  cursor: pointer;
}

.app .body .artworkdetail .detail #artwork-detail .arrows img.arrow-right {
  margin-left: 5ex;
}

.app .body .artworkdetail .detail h2,
.app .body .artworkdetail .detail h1,
.app .body .artworksubcategory .detail h2 {
  border: none;
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 16px;
  color: #666666; /* light-grey */
}

.app .body .artworkdetail .detail p,
.app .body .artworksubcategory .detail p {
  margin: 0;
  padding: 0;
  text-align: left;
  font-size: 12px;
  color: #666666; /* light-grey */
}

/************ VIDEO DETAIL ************/

.app .body .videodetail .videoplay {
    text-align: center;
    vertical-align: middle;
    margin-bottom: 5ex;
}

.app .body .videodetail .videoplay iframe {
    margin: 0 auto;
}

/************ PUBLICATION / REFERENCES-CATEGORY ************/

.app .body .publicationcont .highlighted {
  margin-bottom: 10ex;
}

.app .body .publicationcont .highlighted h3 {
  padding: 0;
  margin: 0;
  font-size: 20px;
  color: #FFFFFF;
  padding-bottom: 1ex;
  font-weight: bold;
}

.app .body .publicationcont .highlighted img {
  max-width: 100%;
  margin-bottom: 1ex;
}

.app .body .publicationcont .highlighted a, .app .body .publicationcont .highlighted a:hover {
  text-decoration: none;
}

.app .body .publicationcont .highlighted pre {
  border: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  background-color: #111111;
  color: #CCCCCC; /* light-grey */
  text-align: justify;
  white-space: pre-line;
  word-break: keep-all; /* IMPORTANT: if PRE has "word-break: break-all;" previously defined, it won't work without removing the previous definition */
  word-wrap: normal;
}

.app .body .publicationcont .publication-list .publication,
.app .body .bibliographycontcategory .bibliography-list .book {
  background-color: #000000;
  margin-bottom: 5ex;
  height: 200px;
  overflow: hidden;
}

.app .body .publicationcont .publication-list .publication .col-xs-6,
.app .body .bibliographycontcategory .bibliography-list .book .col-xs-6 {
  position: relative;
  height: 100%;
}

.app .body .publicationcont .publication-list .publication .col-xs-6 .bottom,
.app .body .bibliographycontcategory .bibliography-list .book .col-xs-6 .bottom {
  position: absolute;
  bottom: 5px;
  left: 3%;
  width: 94%;
}

.app .body .publicationcont .publication-list .publication .col-xs-6 .bottom a,
.app .body .bibliographycontcategory .bibliography-list .book .col-xs-6 .bottom a {
  font-size: 12px;
}

.app .body .publicationcont .publication-list .publication h4,
.app .body .bibliographycontcategory .bibliography-list .book h4 {
  margin: 0;
  padding: 2ex 0 1ex 0;
  font-size: 14px;
}

.app .body .publicationcont .publication-list .publication p,
.app .body .bibliographycontcategory .bibliography-list .book p{
  margin: 0;
  padding: 2ex 0 0 0;
  font-size: 12px;
 color: #666666; 
}


.app .body .publicationcont .publication-list .publication h3,
.app .body .bibliographycontcategory .bibliography-list .book h3 {
  margin: 0;
  padding: 2ex 0 0 0;
  font-size: 12px;
}

.app .body .publicationcont .publication-list .publication h3,
.app .body .bibliographycontcategory .bibliography-list .book h3 {
  padding: 1ex 0 1ex 0;
  color: #CCCCCC; /* grey */
}

.app .body .publicationcont .publication-list .publication .image,
.app .body .bibliographycontcategory .bibliography-list .book .image {
  width: 100%;
  height: 200px;
  background-position: up center;
  background-repeat: no-repeat;
  background-size: contain;
}

/************ REFERENCES ************/

.app .body .bibliographycont ul {
  list-style: none;
}

.app .body .bibliographycont ul li {
  margin-bottom: 2ex;
}

.app .body .bibliographycont ul li span {
  color: #777777; /* light-grey */
  vertical-align: middle;
  font-size: 28px;
  line-height: 28px;
  margin-right: 1ex;
}

.app .body .bibliographycont ul li span.select {
  font-size: 18px;
}

.app .body .bibliographycont ul li a,
.app .body .bibliographycont ul li a:hover {
  vertical-align: middle;
  font-size: 22px;
  line-height: 28px;
  text-decoration: none;
  color: #CCCCCC; /* light-grey */
}

/************ TEXTS ************/

.app .body .textcont .text-list .text {
  margin-bottom: 1ex;
  padding: 1ex;
  height: 165px;
  overflow: hidden;
  cursor: pointer;
}

.app .body .textcont .text-list .text:hover,
.app .body .textcont .text-list .text:active {
  background-color: #000000;
}

.app .body .textcont .text-list .text h2 {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 18px;
  border: none;
}

.app .body .textcont .text-list .text h3 {
  margin: 0;
  padding: 0 0 2ex 0;
  font-size: 14px;
  border: none;
}

.app .body .textcont .text-list .text span,
.app .body .textcont .text-list .text a {
  font-size: 14px;
  color: #666666; /* grey */
}

/************ TEXT-DETAIL ************/

.app .body .textdetail .text-detail h2 {
  margin: 0;
  padding: 0 0 5px 0;
  font-size: 22px;
  border: none;
}

.app .body .textdetail .text-detail h3 {
  margin: 0;
  padding: 0 0 2ex 0;
  font-size: 18px;
  border: none;
}

.app .body .textdetail .text-detail span {
  font-size: 14px;
  color: #666666; /* grey */
}

.app .body .textdetail .text-detail pre {
  border: none;
  padding: 5ex 0 5ex 0;
  margin: 0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  background-color: #111111;
  color: #CCCCCC; /* light-grey */
  text-align: justify;
  white-space: pre-line;
  word-break: keep-all; /* IMPORTANT: if PRE has "word-break: break-all;" previously defined, it won't work without removing the previous definition */
  word-wrap: normal;
}

/************ NOVELTY ************/

.app .body .noveltycont .novelty-list .novelty {
  margin-bottom: 1ex;
  padding: 1ex;
  overflow: hidden;
  cursor: pointer;
}

.app .body .noveltycont .novelty-list .novelty:hover,
.app .body .noveltycont .novelty-list .novelty:active {
  background-color: #000000;
}

.app .body .noveltycont .novelty-list .novelty img {
  width: 100%;
}

.app .body .noveltycont .novelty-list .novelty .detail h2 {
  margin: 0;
  padding: 20px 0 5px 0;
  font-size: 18px;
  border: none;
  color: #fff;
}

.app .body .noveltycont .novelty-list .novelty .detail h3 {
  margin: 0;
  padding: 0 0 2ex 0;
  font-size: 14px;
  border: none;
}

.app .body .noveltycont .novelty-list .novelty .detail p {
  font-size: 14px;
}

/************ CONTACT ************/

.app .body .contactcont,
.app .body .noveltydetailcont {
  padding-bottom: 10ex;
}

.app .body .contactcont img,
.app .body .noveltydetailcont img {
  width: 100%;
}

.app .body .contactcont h2,
.app .body .contactcont h3,
.app .body .contactcont h4,
.app .body .contactcont h5,
.app .body .noveltydetailcont h2,
.app .body .noveltydetailcont h3 {
  border: none;
  margin: 0;
  padding: 0;
}

.app .body .contactcont h2,
.app .body .noveltydetailcont h2 {
  font-size: 24px;
  color: #FFFFFF;
}

.app .body .contactcont h3,
.app .body .noveltydetailcont h3 {
  padding-bottom: 2ex;
}

.app .body .contactcont h3 a,
.app .body .noveltydetailcont h3 {
  font-size: 16px;
}

.app .body .noveltydetailcont h3 {
  padding-top: 2ex;
}

.app .body .contactcont h4 {
  font-size: 18px;
  padding-top: 20px;
}

.app .body .contactcont h5,
.app .body .noveltydetailcont h4 {
  font-size: 13px;
}

.app .body .contactcont pre,
.app .body .noveltydetailcont pre {
  border: none;
  padding: 1ex 0 1ex 0;
  margin: 0;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  font-weight: normal;
  background-color: #111111;
  color: #CCCCCC; /* light-grey */
  text-align: justify;
  white-space: pre-line;
  word-break: keep-all; /* IMPORTANT: if PRE has "word-break: break-all;" previously defined, it won't work without removing the previous definition */
  word-wrap: normal;
}

.app .body .contactcont h1 a,
.app .body .noveltydetailcont h1 a {
  font-size: 36px;
}

.app .body .contactcont a,
.app .body .noveltydetailcont a {
  display: inline-block;
  font-size: 13px;
}

.app .body .contactcont a.top,
.app .body .noveltydetailcont a.top {
  margin-top: 8px;
}

/************ LOGIN ************/

.app .body .logincont .signin {
  width: 100%;
  min-height: 25vh;
  color: #FFFFFF;
  text-shadow: 1px 1px 1px #999999;
  border-bottom: none;
  padding-bottom: 2ex;
}

.app .body .logincont .signin h1 {
  font-size: 30px;
  font-weight: 600;
  padding: 0;
  margin: 1em 0 0 0;
}

.app .body .logincont .signin .form-input {
  margin: 1em 0 1em 0;
}

.app .body .logincont .signin .form-input input {
  max-width: 350px;
  margin-left: 50px;
}

.app .body .logincont .signin .form-input input.password {
  margin-left: 20px;
}

.app .body .logincont .signin .form-input span {
  display: block;
  max-width: 350px;
}


/************ ADMIN-NAVBAR ************/
.admin-nav-bar {
  height: 30px;
  line-height: 30px;
  margin-top: 20px;
  text-align: center;
}

.admin-nav-bar div {
  border-left: 2px solid #999;
}

.admin-nav-bar div:first-child {
  border-left: none;
}

.admin-nav-bar div a,
.admin-nav-bar div a:active,
.admin-nav-bar div a:hover {
  text-decoration: none;
  font-family: sans-serif;
  font-size: 16px;
  color: #CCCCCC; /* light-yellow */
}

.admin-nav-bar div a:hover,
.admin-nav-bar div a.selected {
  color: #FFFFFF; /* strong-yellow */
}

/************ ADMIN ************/
.admin {
  width: 96%;
  padding: 3ex 0;
  margin: 0 2%;
}

.admin .filters .form-control {
  display: inline;
  width: auto;
  margin: 0 1ex 0 1ex;
}

.admin.table-responsive table.table.table-striped {
  /*
  min-width: 1500px;
  overflow-x: scroll;
  */
  background-color: #ddd;
  color: #000;
}

.admin.table-responsive tr, .admin.table-responsive tr td {
  vertical-align: middle;
}

.admin.table-responsive tr td button {
  font-size: 16px;
}

/************ IMAGE UPLOAD ************/
.image-upload {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  color: #000;
  background-color: rgba(255,255,255,0.7);
  z-index: 0;
}

.image-upload.shown {
  right: 0;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  transition: 1s;
  z-index: 9999999;
}

.image-upload .panel {
  position: relative;
  width: 80%;
  margin-left: 10%;
  margin-top: 10vh;
  height: 80vh;
}

.image-upload .panel .action-buttons {
  position: absolute;
  right: 5%;
  top: 5%;
}
