﻿body {
    
}

.simplebutton1
{

	background-color:#ffffff;
    color:#de3142;
	height: 30px;
	width: 30px;
	padding:2px;

    border:solid 1px #de3142;
	font-size: 18px;
	font-weight: lighter;
	webkit-border-radius: 2px 2px 2px 2px;
	-moz-border-radius:  2px 2px 2px 2px;
	border-radius:  2px 2px 2px 2px;
}

.simplebutton1:hover
{
	padding:1px;
     color:#fff;
	background-color:#de3142;
	border:solid 1px #fff;
}

.simplebutton1:focus
{
	color: #383838;
	background-color: #fff;
	border:solid 3px rgba(98,176,255,0.3);
}

.modal 
{
    position: fixed;
    top: 0;
    left: 0;
    background-color: black;
    z-index: 99;
    opacity: 0.8;
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    min-height: 100%;
    width: 100%;
}

.loading 
{
    font-family: Arial;
    font-size: 10pt;
    width: 50px;
    height: 50px;
    display: none;
    position: ffixed;
    z-index: 999;
}     


#BuyingItemBox {
  background-color: #234f33;
  position: fixed;
  top: -100px;
  width: 100%;
  display: block;
  transition: 1s;
}

#AlertRedBox {
  background-color: #7c2128;
  position: fixed;
  top: -100px;
  width: 100%;
  display: block;
  transition: 1s;
}
#AlertGreenBox {
    background-color: #234f33;
    position: fixed;
    top: -100px;
    width: 100%;
    display: block;
    transition: 1s;
}

#BuyingCartBox {
  background-color: #de3142;
  position: fixed;
  top: -100px;
  width: 30%;
  display: none;
  transition: 1s;
}

.CartNumberItems:hover + .BuyingCartBox {
  display: block;
  color: red;
  
}

.ButtonSameAddress {
    background-color: #3e7351;
    color: #fff;
}
    .ButtonSameAddress:hover {
        background-color: #234f33;
        color: white;
    }