html, body{
  width:100%;
  height:100%;
  padding:0;
  margin: 0;
	background-color: #ECEFF1;
  font-size: 0.87rem;
}
.main{
  position: relative;
  background-color: #7d5421ba; background-blend-mode:multiply; background-size:cover; 
  background-repeat: no-repeat; background-position: bottom center; background-image: url('../images/bg.jpg');
  padding:20px 10px;width: 100%; min-height: 100vh;
}
.center-box{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  min-width:280px;
}
label {
  margin-bottom: 0;
}
input[type=text], select {
    width: 100%;
    padding: 12px 20px;
    margin: 1px 0 10px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit] {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}


.text-center{
	text-align: center !important;
}
.button {
  display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 150ms ease-in-out, background-color 150ms ease-in-out, border-color 150ms ease-in-out, box-shadow 150ms ease-in-out;
	position: relative;
	z-index: 9;
}
.button:hover {
  transition: all 150ms linear;
  opacity: .85;
}
.button:active {
  transition: all 150ms linear;
  opacity: .75;
}
.button:focus {
  outline: 1px dotted #959595;
  outline-offset: -4px;
}

.button.button-primary {
  color: #FFFFFF;
  background-color: #455a64;
}
.button.button-block{
	width: 100%;
}
.button:disabled {
    opacity: 0.5;
	cursor: no-drop;
}
.swal2-popup .swal2-styled.swal2-confirm,
.swal-button, .wheel-with-image-spin-button, .btn-custom {
	padding: 12px 29px;
	border-radius: 2px;
	background-color: #c09632;
	background-image: linear-gradient(to right, #f5af5e, #f19c09);
	font-size: 16px;
	border: 1px solid #455a64;
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
}
.btn-custom{color:#fff;}
.superWheel .sWheel > .sWheel-txt-wrap > .sWheel-txt > div img {
  max-width: 20% !important;
}

/* ----popuo------ */
.pop-up-layer{
  position: fixed;
  top: 0; left: 0;
  width:100%;
  height:100%;
  background:rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
}
.pop-up{
  position: absolute;
  top: 50%; left:50%;
  transform:translate(-50%,-50%);
  min-width: 350px;
  max-width: 400px;
  min-height:100px;
  height: auto;
  padding:14px 20px;
  background: rgb(244, 244, 244);
  border-radius:5px;
}
.pop-cancel{
  position: absolute;
  top:2%; right:2%;
  font-size:1.2rem;
  color:#333;
  cursor:pointer;
  padding:4px 10px 8px;
  line-height:1;
  display:inline-block;
  transition:all 0.5s ease;
}
.pop-cancel:hover{
  background:#eee;
}
.show-popup{display: block;transition:all 0.7s ease-in-out;}
.popit{top:50%;transition:all 0.5s ease-in-out;}
.hideit{display: none;}
.showmore{display:block; transition: all .5s ease-in-out;}
/* ------------------ */
.float-btn{
  padding:7px 15px;
  position: fixed;
  bottom:10px;
  right:10px;
  text-align:center;
  background:#654702;
  color:#fff;
  display: inline-block;
  cursor: pointer;
  font-size:.9rem;
  border-radius: 4px;
  text-decoration:none;
}
.float-btn:hover{ text-decoration: none; color:#eee; background:rgb(65, 44, 1); z-index:997;}
/* ---------------------- */
@media(max-width:480px){
  .main{
    padding-top:10%;
    background-position: right center;
  }
}