/****** LOGIN MODAL ******/
@font-face {
  font-family: Poppins;
  font-weight: 400;
  src: local("Poppins Regular"), local("Poppins-Regular"), url(../fonts/Poppins-Regular.otf) format("truetype");
}

body {
  font-family: "Poppins" !important;
}

.loginmodal-container {
  padding: 20px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  -webkit-box-shadow: 20px 20px 20px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 20px 20px 20px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 15px 15px 25px 0px rgba(0, 0, 0, 0.6);
  transition: ease-in-out 2s;
  border-radius: 18px;
  animation-name: coolAnim;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background: lightgrey;
  max-width: 900px;
   text-align:center;
}

.loginmodal-title-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loginmodal-title {
  margin-right: 10px;
  margin-bottom: 0;
}


.loginmodal-container div {
  text-shadow: 1px 1px 1px #fff;
}

.btn {
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.6);
  box-shadow: 5px 5px 20px 0px rgba(0, 0, 0, 0.6);
}

.btn:hover {
  -webkit-box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
}

.loginmodal-container h1 {
  text-align: center;
  font-size: 1.8em;
  text-shadow: 1px 1px 1px #fff;
}

.loginmodal-container input[type="submit"] {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  position: relative;
  transition: ease-in-out 2s;
  border-radius: 12px;
}

.loginmodal-container input[type="submit"]:hover {
  transition: ease-in-out 1s;
  -webkit-box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
  -moz-box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
  box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.65);
  border-radius: 12px;
}

.loginmodal-container input[type="text"],
input[type="number"],
select {
  height: 44px;
  font-size: 16px;
  width: 33%;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 8px;
}

.loginmodal-container input[type="password"],
input[type="number"],
select {
  height: 44px;
  font-size: 16px;
  width: 33%;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-top: 1px solid #c0c0c0;
  padding: 0 8px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 8px;
}

.loginmodal-container input.input-w-100 {
  width: 100%;
}

.loginmodal-container input[type="text"]:hover,
input[type="number"]:hover,
select:hover {
  border: 1px solid #b9b9b9;
  border-top: 1px solid #a0a0a0;
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.loginmodal {
  text-align: center;
  font-size: 14px;
  font-family: "Arial", sans-serif;
  font-weight: 700;
  height: 36px;
  padding: 0 8px;
}

.loginmodal-submit {
  border: 0px;
  color: #fff;
  text-shadow: 0 1px rgba(0, 0, 0, 0.1);
  background-color: #4d90fe;
  padding: 17px 0px;
  font-size: 14px;
  margin-top: 20px;
}

.loginmodal-submit:hover {
  border: 0px;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  background-color: #357ae8;
}

.loginmodal-container a {
  text-decoration: none;
  color: #666;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  opacity: 0.6;
  transition: opacity ease 0.5s;
}


.loginmodal-container.posman input[type="text"],
.loginmodal-container.posman input[type="number"],
.loginmodal-container.posman select {
  width: 49%;
}

body {
  background: grey !important;
  opacity: 0;
}

.logo {
  margin: 10px;
}

.modal-dialog {
  width: 100%;
}

#pasteButton {
  cursor: pointer;
}


#packButton {
  border-radius: 12px;
  padding: 10px 35px;
  color: white;
  user-select: none;
  outline: 0;
  border: 0;
  background-color: #4d90fe;
}


.width-15{
	width: 15% !important;
}

.width-19{
	width: 19% !important;
}

.width-20{
	width: 20% !important;
}

.width-21{
	width: 21% !important;
}


.loginmodal-container.posman{
	background: rgba(255,255,255,.9);
}

.loginmodal-container.posman .loginmodal-submit{
	background-color: #1b1c1d;
}