body {

  font-family: "Roboto", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

.main-container {
  margin-top: 30px;
  //height: calc(100vh - 30px);
}

@-webkit-keyframes autofill {
    to {
     background: #ffffff;
    border: 1px rgba(9,130,140,0.3) solid;

    }
}

input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* ------------- Container -----------------------*/

.container {
  position: relative;
  z-index: 1;
  //max-width: 300px;
  margin: 0 auto;
  margin-left:15px;
  margin-right: 15px;

}
/*
.container:before, .container:after {
  content: "";
  display: block;
  clear: both;
}
*/

.container .info {
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
}
.container .info h1 {
  margin: 0 0 15px;
  padding: 0;
  font-size: 36px;
  font-weight: 300;
  color: #fff;
}
.container .info span {
  color: #fff;
  font-size: 12px;
}
.container .info span a {
  color: #fff;
  text-decoration: none;
}
.container .info span .fa {
  color: #fff;
}


/* ------------- Form -----------------------*/
.form {
  position: relative;
  z-index: 1;
  background: rgba(247,221,14,0.9);
  max-width: 350px;
  margin: 0 auto 50px;
  padding: 20px;
  padding-top:15px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  text-align: center;
}
.form .thumbnail {
  //background: #ffffff;
  //width: 100px;
  //height: 100px;
  margin: 0 auto 3px;
 // padding: 25px;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  box-sizing: border-box;
}
.form .thumbnail img {
  display: block;
  width: 300px;
  margin:auto;
  //margin-bottom: 20px;
}

.form .thumbnail h4 {
  margin:3px;
  font-size: 14px;
  color:#555555;
}

.form input ,.form select {
  outline: 0;
    text-align: center;
  background: #ffffff;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  padding: 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-sizing: border-box;
  font-size: 14px;
}

#id-stockcounts
{
  width: 75%;
}

.form button{
  outline: 0;
  background: var(--sub);
  width: 70%;
  border: 0;
  padding: 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  color: #FFFFFF;
  font-size: 14px;
  -webkit-transition: all 0.3 ease;
  transition: all 0.3 ease;
  cursor: pointer;
}

.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
  display: none;
}
.form .message a {
  color: #EF3B3A;
  text-decoration: none;
}


/*----------------- extra -------------------*/
.admin-button
{
  margin-bottom:5px;
  background: var(--sub) !important;
  cursor: pointer;
}

.personal-button
{
  margin-bottom:5px;
  background: var(--main) !important;
  color:#222 !important;
  cursor: pointer;
}

.form .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 12px;
  display: none;
}
.form .message a {
  color: #EF3B3A;
  text-decoration: none;
}

#id-stores , #id-branches
{
  width:100%;
  padding:10px;
  direction:rtl;
  background: #f8f8f8;
}

/* ------------- login -----------------------*/

.login-box
{
  background: #f8f8f8;
  margin-top: 10px;
  border-radius: 7px;
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.login-box-continue
{
  background: #f8f8f8;
  margin-top: 10px;
  border-radius: 7px;
  padding-bottom: 25px;
  margin-bottom: 20px;
}

.login-box-button
{
  margin-top: 25px;
  //margin-bottom: 20px;
}

.login-button
{
  background-color: #4ecc5e;
  color:#fff;
  padding:10px;
  border-radius: 5px;
  text-decoration: none;
  padding: 10px 20px 10px 20px;
}

/* ------------- registration -----------------------*/



.join-box
{
  //background: #f8f8f8;
  margin-top: 20px;
  border-radius: 7px;
}

.join-box a
{
  //background-color: #f8f8f8;
  color: #222;
  font-weight: bold;
  font-size: 16px;
  //text-decoration: none;
  padding:10px;
   border-radius: 3px;
}

.join-box span
{

}

.expire-message {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    font-size: 15px;
    font-weight: bold;
    width: 80%;
    margin: auto;
    padding: 5px;
}


/* ------------- Footer -----------------------*/
.fixed {
	bottom: 0;
	position: absolute;
}

@media (max-width: 767px) , (max-width: 1024px)
{

    .form button
    {
        width:85%;
    }

    .storage-count-link
    {
        position: absolute;
        bottom: 20px;
        right: 5px;
    }
}



