a { color: inherit; } 
/* The deal (background) */
.sideDeal {
    direction: rtl;
    display: none; 
    position: fixed; 
    z-index: 999; 
    right: 30px;
    bottom: 30px;
    width: 350px;
    height: auto;
    overflow: auto; 
 /* background-color: rgb(0,0,0); */
/*background-color: rgba(0,0,0,0.4); */
    -webkit-animation-name: fadeIn; 
    -webkit-animation-duration: 1.5s;
    animation-name: fadeIn;
    animation-duration: 1.5s     
}
/* Deal Content */
.deal-content {
    
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(255, 255, 255, .9) ;
    width: 350px;
    min-height: auto;
    border-radius: 10px;
    box-shadow: 1px 1px 10px #555;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 1.5s;
    animation-name: slideIn;
    animation-duration: 1.5s;      
}
.deal-content:hover {
  border: 2px solid  #fff;
}
.deal-content p{
    margin-right: 10px;
 font-weight: bold;
    text-shadow: 2px 1px 2px #ccc;
    color: #184d85;
    font-size: 18px;
    padding-bottom: 5px;
}
.dealbodytable{
 width: 100%;
    height: auto;
    margin-bottom: 32px;
    border: 0;
}
.dealbodytable td{
 vertical-align: middle;
}
/* The Close Button */
.close {
    border: 2px solid #fff;
    background-color: black;
    border-radius: 100px;
    color: white;
    float: right;
    font-size: 25px;
    font-weight: bold;
    height: 25px;
    width: 25px;
    text-align: center;
    margin-top: -5px;
    margin-right: -10px;
}

.close:hover,
.close:focus {
    color: black;
    background-color: #fff;
    border: 2px solid black;
    text-decoration: none;
    cursor: pointer;
}
/* continue button */
.btnsidediv{
 text-decoration: none;  
    font-size:18px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 80px;
    padding-left: 80px;
    font-weight: bold;
	color:#fff;
    width: 100%;
	text-align:center;
	border:1px solid #949393;
    background-color: #f1522c;   
    transition: all 0.2s ease-in-out; 
	-moz-border-radius: 10px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	-moz-box-shadow: inset 0 -1px 1px rgba(0,0,0,0.5);
    -webkit-box-shadow: inset 0 -1px 1px rgba(0,0,0,0.5);
    box-shadow: inset 0 -1px 1px rgba(0,0,0,0.5);
	text-shadow:
		1px 1px 1px rgba(000,000,000,0.2); 
}
.btnsidediv:hover{
    cursor: pointer;
    transform: scale(1.1);
}
.sidedivrightimg{
 border-radius: 5px;
    border: 1px solid #184d85;
    width: 100px; 
    height: 100px; 
 box-shadow: 3px 1px 3px #888;
}
.deal-header {
   text-align: center; 
    padding: 1px;
    height: 30px;
    background-color: #184d85;
    color: white;
    border-radius: 10px 10px 0 0;
}
.deal-header h3{
   margin-top: 3px;
}
.deal-body {padding: 2px 16px;}
.deal-footer {
    padding-right: 15px;
    background-color: #184d85;
    color: #fff;
    text-align: center;
    height: 30px;
    position: absolute;
    bottom: 0;
    width: 335px;
    border-radius: 0 0 10px 10px;
}
.deal-footer h4{
    margin-top: 5px;
}
/* Add Animation */
@-webkit-keyframes slideIn {
    from {right: -300px; opacity: 0} 
    to {right: 30; opacity: 1}
}
@keyframes slideIn {
    from {right: -300px; opacity: 0}
    to {right: 30; opacity: 1}
}
@-webkit-keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}
@keyframes fadeIn {
    from {opacity: 0} 
    to {opacity: 1}
}