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;
    
}
.discount{
position: absolute;
    background-color: rgba(190, 44, 44, .8);
    border: 2px solid #fff;
    border-radius: 100px;
    top:30px;
    right: 10px;
    width: 80px;
    height: 80px;
    box-shadow: 3px 1px 3px #333;

}
.discount h3{
    padding-top: 15px;
    text-shadow: 1px 1px 1px #000;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 16px;
}

.discount h2{
    text-shadow: 1px 1px 1px #000;
    text-align: center;
    color: #fff;
    font-size: 23px;
    line-height: 25px;
}
.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;
    line-height: 30px;
    height: auto;
    background-color: #0d2444;
    color: white;
    border-radius: 10px 10px 0 0;
}
.deal-header h3{
   margin-top: 3px;
}
.deal-body {padding: 2px 16px;}

.deal-footer {
    background-color: #0d2444;
    color: #fff;
    text-align: center;
    height: 30px;
    position: absolute;
    bottom: 0;
   width: 100%;
    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}
}
/*Mobile*/
@media screen and (max-width: 600px) {
    .deal-content {
        width: 90%;
}
    .sidedivrightimg{
        display: none;
    }
    .dealbodytable{
        table-layout:auto;
    }
    .dealbodytable td{
        width: 33%;
    }
    .discount{
    width: 70px;
    height: 70px;
}
.discount h3{
    padding-top: 15px;
    font-size: 14px;
    line-height: 14px;
}
.discount h2{
  
    font-size: 20px;
    line-height: 23px;
}
    .deal-header {
    padding: 1px;
    line-height: 20px;
        font-size: 14px;
        font-weight: normal;
}
}