.full{
display: block;       /* iframes are inline by default */
border: none;         /* Reset default border */
height: 100vh;        /* Viewport-relative units */
width: 100%;
}

.white-txt{
  color: white;
}

.black-txt{
  color: black;
}


.edit, .save, .save-link  {
  width: 60px;
  display: block;
  position: absolute;
  top: 0px;
  right: 30px;
  padding: 4px 10px;
  border-top-right-radius: 2px;
  border-bottom-left-radius: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 1;
  box-shadow: -1px 1px 4px rgba(0,0,0,0.5);
}

.edit , .save-link {
  background: #557a11;
  color: #f0f0f0;
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.save {
  display: none;
  background: #bd0f18;
  color: #f0f0f0;
}
.box:hover .edit , .save-link {
  opacity: 1;
}
.box{
    position: relative;
}

/*IMG*/

div.show-image {
position: relative;
float:left;
margin:5px;
max-width: 98%;
}
div.show-image:hover span {
display: block;
}
div.show-image span {
position:absolute;
display:none;
}

@media (hover: none) {
  div.show-image span {
  position:absolute;
  display: block;
  }
}
div.show-image img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}
div.show-image span.update {
top:0;
left:0;
}
div.show-image span.saveimg {
top:0;
right:0%;
}


div.show-bottom {
position: relative;
float:left;
margin:5px;
max-width: 98%;
}
div.show-bottom:hover span {
display: block;
}
div.show-bottom span {
position:absolute;
display:none;
}

@media (hover: none) {
  div.show-bottom span {
  position:absolute;
  display: block;
  }
}
div.show-bottom img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
}

div.show-bottom span.update{
  bottom:20%;
  left:0;
  z-index: inherit;
}
div.show-bottom span.saveimg{
  bottom:20%;
  right:0%;

}

/* TABS */

/* Style the tab */
.tab-x {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}



/* Style the tab content */
.tabcontent-x {
  visibility: hidden;
  position: absolute;
  right: 0;
  left: 0;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}
.relative{
  position: relative;

}
