.button{
    text-align: center;
    display: inline-block;
    border-radius: 42px;
    padding:12px 24px;
    font-family:'Open Sans', sans-serif;
    font-weight:bold;
    color:#fff !important;
    text-decoration: none !important;
    font-size: 14px;
    white-space: nowrap;
    margin-bottom: 6px;
    position: relative;
    text-transform: uppercase;
    top:0;
    background: #e2000e;
    transition: top 0.3s ease;
    cursor:pointer;
}

.closebutton {
    background: #e4000f;
    border-radius: 24px;
    text-align: center;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    color: #fff;
    cursor: pointer;
}

.closebutton i{
    color:#fff;
}

.button a{
    color: #fff;
    font-weight: bold;
    text-decoration: none;
}

.button:hover{
    top:2px;
    transition: top 0.2s ease;
}

.button.white{
    background: #fff;
    color: #101010 !important;
}

.button.outline{
    background: transparent;
    border:2px solid #000;
    color:#000 !important;
    padding:6px 12px;
}

.button.outline *,
.button.outline i{
    color:#000 !important;
}

@media only screen and (max-width : 768px){
    .button.cta{
        line-height:32px;
        height:43px;
    }
    .button.cta:hover{
        height:41px;
    }
}

.button.round{
    padding:0;
    color:#fff;
    border-radius: 24px;
    width: 48px;
    height: 48px;
    line-height:32px;
    background: #e2000e;
    border:8px solid rgba(255,255,255,1);
    text-align:center;
}

.button.round i{
    color:#fff;
}
.button.inverse
{
    color:black !important;
    border:1px solid black;
    background:white;
    font-weight:normal;
}
.button.inverse i

{
    margin-right:10px;
}