@charset "utf-8";
/* CSS Document */
.container {
    position: absolute;
    display: block;
  	margin-left: auto;
  	margin-right: auto;
	z-index :800;
}

.settings {
    text-align: center;
    color: white;
	z-index :850;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}

.bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
}

.top-left {
    position: absolute;
    top: 8px;
    left: 16px;
}

.top-right {
    position: absolute;
    top: 8px;
    right: 16px;
}

.bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
}

.centered {
    position: absolute;
    left: 50%;
	margin-right: -50%;
	transform: translate(-50%);
	z-index: 700;
}
.bottom-center {
	;
    position: absolute;
    bottom: 10px;
    left: 50%;
    margin-right: -50%;
	size: 20px;
	transform: translate(-50%);
}
#myImg {
  transition: all 0.3s ease;
  border: 0.0625em solid black;
  border-radius: 3.75em;
}
* {box-sizing: border-box;}

.img-magnifier-container {
  position:relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 3px solid #000;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 200px;
  height: 200px;
  z-index: 700;
}