.retailTable{
    border: 1px dashed;
    padding-bottom: 25px;
    text-align: center;
}
.retailTable .retailTable-header{
    padding: 25px;
    background: #ef233c;
    color: #ffffe5;
}
.retailTable .retailTable-platinum{
    padding: 25px;
    background: #00aba9;
    color: #ffffe5;
}
.retailTable .heading{
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    text-transform: capitalize;
}
.retailTable .subtitle{
    font-size: 12px;
    margin: 10px 0 0;
    display: block;
}
.retailTable .retail-value{
    border: 1px solid #d90429;
}
.retailTable .price-platinum{
    border: 1px solid #00aba9;
}
.retailTable .month{
    display: inline-block;
    width: 55%;
    padding: 19px;
    font-size: 22px;
    color: #2a3a73;
    float: left;
    position: relative;
}
.retailTable .month:after{
    content: "";
    border-width: 10px 0 10px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffe5;
    position: absolute;
    top: 39%;
    right: -12px;
    z-index: 1;
}
.retailTable .amount{
    display: inline-block;
    width: 45%;
    padding: 10px;
    font-size: 35px;
    font-weight: 700;
    color: #ffffe5;
    background: #d90429;
}
.retailTable .amount-platinum{
    display: inline-block;
    width: 45%;
    padding: 10px;
    font-size: 35px;
    font-weight: 700;
    color: #ffffe5;	
    background: #018e8d;
}	
.retailTable .currency{
    font-size: 22px;
    position: relative;
    top: -17px;
    left: -4px;
}
.retailTable .pricing-content ul{
    padding: 25px 0;
    margin: 0;
    list-style: none;
    color: #2a3a73;
}
.retailTable .pricing-content ul li{
    font-size: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #e3e3e3;
}
.retailTable .pricing-content ul li i{
    font-size: 16px;
    margin-right: 5px;
}
.retailTable .read{
    display: inline-block;
    background: #ef233c;
    font-size: 14px;
    color: #ffffe5;
    padding: 10px 40px;
    text-transform: capitalize;
    border-radius: 5px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease 0s;
}
.retailTable .read:hover{
    background: #d90429;
}
.retailTable.middle .retailTable-header,
.retailTable.middle .read{
    background: #f7ac22;
}
.retailTable.middle .retail-value{
    border: 1px solid #ff8a05;
}
.retailTable.middle .amount,
.retailTable.middle .read:hover{
    background: #ff8a05;
}
@media screen and (max-width: 990px){
    .retailTable{ margin-bottom: 25px; }
}
/*********************************************************/
/* SUBMIT BUTTON */
/*********************************************************/	  	  	  
.btn-retail{
    display: inline-block;
    padding: 8px 40px !important;
    background: #f70655;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    border: 2px solid #f70655;
    border-radius: 0px;
    transition: all 0.5s ease 0s;
}
.btn-retail:hover{
    background: transparent;
    border: 2px solid #fff;
    color: #fff !important;
}