/*********************************************************************************/
/* Login / Register                                                              */
/*********************************************************************************/

.login{
    float: left;
    width:300px;
    padding: 0em 10em 5em 3em;
}
.register{
    float: right;
    width: 300px;
    padding: 0em 8em 0em 0em;
}

.vline {
  border: 2px solid #2c80a2;
  height: 450px;
  position: absolute;
  left: 50%;
  margin-left: -3px;
  top: 250px;

}



/* Full-width input fields */
input[type=text], input[type=password] { 
  width: 60%;
  padding: 15px;
  margin: 5px 0 22px 0;
  display: inline-block;
  border: 1px;
  background: #ffffff;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ddd;
  outline: none;
}

/* Overwrite default styles of hr */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}


/* Set a grey background color and center the text of the "sign in" section */
.signin {
  background-color: #f1f1f1;
  text-align: center;
}

.login-wrapper {
    padding: 5em 10em 40em 3em;
  
}

.login-button {
	 padding: 0em 0em 0em 10em;
  
}


.thumbnail {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 150px;
}

.thumbnail:hover {
  box-shadow: 0 0 2px 1px rgba(0, 140, 186, 0.5);
}


#shopingcart{
    float: left;
    width:400px;
    padding: 0em 10em 5em 3em;
}

#shopingcart ul {
   display: inline-block;
}

.checkout{
    float: right;
    width: 200px;
    padding: 0em 8em 0em 0em;
    background-color: #f1f1f1;
    text-align: center;
}

/***************************************************************************************************
ShoppingCart - checkout
***************************************************************************************************/

label {
  margin-bottom: 0px;
  display: block;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  /*
  margin: 0 -16px;
  margin-top: 30px;
  */
}

.col-25 {
  -ms-flex: 5%; /* IE10 */
  flex: 5%;
  margin-right: 80px;
  padding: 0px 100px 0px 20px;
}

.col-12 {
  -ms-flex: 10%; /* IE10 */
  flex: 10%;
}

.col-10 {
  -ms-flex: 8%; /* IE10 */
  flex: 8%;
  margin-right: 10px;
 
}

.col-50 {
  -ms-flex: 30%; /* IE10 */
  flex: 30%;
  margin: 0 20px;
  padding: 0px 20px 0px 0px;
}

.col-75 {
  -ms-flex: 75%; /* IE10 */
  flex: 75%;
  padding: 0 30px;
}


.cartcontainer {
 /* background-color: #f2f2f2; */
  padding: 0px 20px 15px 20px;
  border: 1px solid lightgrey;
  border-radius: 3px;
}


.icon-container {
  margin-bottom: 20px;
  padding: 7px 0;
  font-size: 24px;
}

.paybtn {
  background-color: #4CAF50;
  color: white;
  padding: 12px;
  margin: 10px 0;
  border: none;
  width: 100%;
  border-radius: 3px;
  cursor: pointer;
  font-size: 17px;
}

.paybtn:hover {
  background-color: #45a049;
}

span.price {
  /*float: right; */
  margin-left: 35px;
  color: grey;
}

span.qty {
  margin-left: 25px;
  color: grey;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other (and change the direction - make the "cart" column go on top) */
@media (max-width: 800px) {
  .row {
    flex-direction: column-reverse;
  }
  .col-25 {
    margin-bottom: 20px;
  }
}