
.webShopCheckOutRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: black;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  height: auto;
}

/* ---------------------------------------- */
/* Three main columns in webShopCheckOutRow */
/* ---------------------------------------- */

.webShopCheckOutMainColumn1 {
  float: left;
  width: 1%;
  color: white;
  background-color:black;
  margin-top: 10px;
}

.webShopCheckOutMainColumn49 {
  float: left;
  width: 49%;
  color: white;
  background-color:black;
  margin-top: 10px;
  border:1px solid brown;
  padding-left:10px;
  padding-right:10px;
}

.webShopCheckOutMainColumn50 {
  float: left;
  width: 50%;
  color: white;
  background-color: black;
  margin-top: 10px;
}
/* ------------------------------------------------ */
/* The End Three main columns in webShopCheckOutRow */
/* ------------------------------------------------ */

.webShopCheckOutColumn1 {
  float: left;
  width: 1%;
  color: white;
  background-color:black;
}

.webShopCheckOutColumn2 {
  float: left;
  width: 2%;
  color: white;
  background-color:black;
}

.webShopCheckOutColumn6 {
  display: block;
  float: left;
  width: 6%;
  color: white;
  background-color:black;
  border:1px solid black;
  margin-top: 15px;
}

.webShopCheckOutColumn47 {
  float: left;
  width: 47%;
  color: white;
  background-color:black;
/*    border:1px solid brown; */
  margin-top: 15px;
}

.webShopCheckOutColumn49 {
  float: left;
  width: 49%;
  color: white;
  background-color:black;
}

.webShopCheckOutColumn50 {
  float: left;
  width: 50%;
  color: white;
  background-color: black;
}

.webShopCheckOutColumn100 {
  float: left;
  width: 100%;
  color: white;
  background-color: black;
 /*  border:1px solid brown; */
  margin-top: 15px;
}


.modal.rightCheckOut .modal-dialog {
	position: fixed;
	margin: auto;
	width: 100%;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.rightCheckOut .modal-content {
	-webkit-animation-duration: .3s;
	animation-duration: .3s;
	-webkit-animation-name: fsb-rs_slideIn;
	animation-name: fsb-rs_slideIn;
	background-color: #fefefe;
	bottom: 0;
	-webkit-box-shadow: -4px 0 8px 0 rgba(0, 0, 0, 0.2), -6px 0 20px 0 rgba(0, 0, 0, 0.19);
			box-shadow: -4px 0 8px 0 rgba(0, 0, 0, 0.2), -6px 0 20px 0 rgba(0, 0, 0, 0.19);
	height: 100%;
	position: fixed;
	right: 0;
	width: 100%;
	overflow-y: auto;
}
	
.modal.rightCheckOut .modal-body {
	padding: 15px 15px 15px;
}

        

.modal.rightCheckOut.fade .modal-dialog {
		right: 0px;
		-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
		   -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
		     -o-transition: opacity 0.3s linear, right 0.3s ease-out;
		        transition: opacity 0.3s linear, right 0.3s ease-out;
}
	
.modal.rightCheckOut.fade.in .modal-dialog {
	right: 0;
}

.myInputTitle {
	font-size: 1rem;
}

.myInput {
	min-width: 100%;
	width: 100%;
	padding-left: 5px;
	box-sizing: border-box;
	font-size: 1rem;
}

.myInputPromoCode {
  height: 30px;
  padding-left: 0px;
  text-decoration: underline;
  border: none;
  outline: none;
  background: none;
  color: white;
  text-align: left;
  font-size: 1.1rem;
  /* font-weight: bold; */
}

.myInputPromoCode:hover{
  color: brown;
  border: none;
}

.myInputPromoCode:active {
  background-color: black;
  border: none;
  outline: none;
  box-shadow: 0 2px black;
  transform: translateY(1px);
}

.myInputPromoCode:focus {
    outline: 0 !important;
}

.myInputPromoCodeSubmit {
  height: 30px;
  font-size:0.9em;
  padding-left: 0px;
  background-color: brown;
}

.myInputNumber { 
  /* remove arrows */
  -moz-appearance: textfield;
  -webkit-outer-spin-button;
  -webkit-inner-spin-button {
  -webkit-appearance: none;
	margin: 0;
  }
}

/* ------------------------------------------ */
/* Popup container - can be anything you want */
/* ------------------------------------------ */
.popup {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-decoration: underline;
}

.popup:hover{
  color: brown;
}

.myInputPromoCode:active {
  box-shadow: 0 2px black;
  transform: translateY(1px);
}

/* The actual popup */
.popup .popuptext {
  visibility: hidden;
  width: 160px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 8px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -80px;
}

/* Popup arrow */
.popup .popuptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Toggle this class - hide and show the popup */
.popup .show {
  visibility: visible;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
  from {opacity: 0;} 
  to {opacity: 1;}
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity:1 ;}
}

/* ------------------------------------------ */
/* Alert as modal - can be anything you want  */
/* ------------------------------------------ */
/* Background */
.modal.myAlert {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Content */
.myAlert-content {
  background-color: black;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

.myAlert.success {background-color: #04AA6D;}
.myAlert.info {background-color: #2196F3;}
.myAlert.warning {background-color: #ff9800;}

.myAlertCloseBtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.myAlertCloseBtn:hover {
  color: black;
}

@media screen and (max-width: 600px) {
	.webShopCheckOutMainColumn50 {
		width: 50%;
	}

	.webShopCheckOutMainColumn49 {
		width: 49%;
		padding-left: 10px;
		padding-right: 10px;
	}

	.webShopCheckOutMainColumn1 {
		width: 1%;
	}
}

@media screen and (max-width: 352px) {
	.webShopCheckOutMainColumn50 {
		width: 100%;
	}

	.webShopCheckOutMainColumn49 {
		width: 100%;
		padding-left: 5px;
		padding-right: 5px;
	}

	.webShopCheckOutMainColumn1 {
		width: 0%;
	}
}