body{
	overflow-x: hidden;
	overflow-y: scroll;
	margin: 0;
	padding: 0;
	font-size: 16px;
}
/* Full-width input fields */
input[type=text], input[type=password], input[type=date] {
    font-size: 1em;
    width: 100%;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 85px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  padding: 10px 18px;
  background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
  text-align: center;
  margin: 24px 0 12px 0;
  position: relative;
}

img.avatar {
  width: 40%;
  border-radius: 50%;
}

.container {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

.modal {
	display: block;
	position: relative;
	background-color: #5c5c5c;
	width: 100%;
	height: 100vh;
	min-height: 800px;
	margin: 0;
	padding: 0;
}

/* Modal Content/Box */
.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fefefe;
	border: 1px solid #888;
	width: 80%;
	max-width: 460px;
}

/* The Close Button (x) */
/* .close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
} */

/* Add Zoom Animation */
/* .animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
} */
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
    cursor: default;
}
@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)}
  to {-webkit-transform: scale(1)}
}

@keyframes animatezoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 1400px) {
    body{
        font-size: 11.5px;
    }
	img.avatar {
	    width: 32%;
	}
}
@media screen and (max-width: 1160px) {
    body{
        font-size: 11px;
    }
}
@media screen and (max-width: 900px) {
    body{
        font-size: 10px;
    }
}
@media screen and (max-width: 500px) {
    .modal{
        padding-top: 0;
    }
    .modal-content{
        margin: 0;
        border: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
    }
    .imgcontainer{
        margin-top: 0px;
        padding-top: 30px;
    }
}
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}
