.button
{
    display:inline-block;
    padding:12px 20px;
    transition: all 0.25s linear;
    cursor:pointer;
    font-size: 15px;
}
.button_neutral
{
    text-transform: uppercase;
    display:inline-block;
    padding:12px 0;
    transition: all 0.25s linear;
    cursor:pointer;
}
.button_border
{
    padding:6px 30px;
    border-width: 2px;
    border-style: solid;
}
/* top:14px; is for when it shares the line with text overwrite not remove */
.button_circle
{
    width: 40px;
    height: 40px;
    display:inline-block;
    border-radius: 9999px;
    position: relative;
    top:14px;
}
.button_circle--social
{
    width:60px;
    height:60px;
    border:1px solid white;
}
.button_circle i
{
    position: absolute;
    top:50%;
    left:50%;
    transform:translateY(-50%) translateX(-50%);
} 
.button_white
{
    border-color: white;
    color:white;
}
.button_yellow,
.button_yellow-hover:hover
{
    display:inline-block;
    transition: all 0.25s linear;
    cursor:pointer;
    background-color: #FDCD07;
    border-color: #FDCD07;
    color:#004183;
}
.button_yellow-hover:hover
{
    color:#004183 !important;
}
.button_blue,
.button_blue-hover:hover
{
    text-transform: uppercase;
    display:inline-block;
    padding:12px 20px;
    transition: all 0.25s linear;
    cursor:pointer;   
    background-color: #004183;
    border-color:#004183;
    color: white;
}
.button_blue-hover:hover
{
    color: white !important;   
}
.button_showonhover .button
{
    opacity: 0;
    transition:0.25s ease all;
}
.button_absolutecenter
{
    position: absolute;
    top:50%;
    left:50%;
    transform:translateX(-50%) translateY(-50%);
}
.button_showonhover:hover .button
{
    opacity: 1;
}

.sliderControl
{
    border:2px solid #FDCD07;
    height:70px;
    width:70px;
    text-align: center;
    font-size:20px;
    color:#FDCD07;
    border-radius:9999px;
    display:inline-block;
    position:relative;
    cursor:pointer;
}

.sliderControlMargin {
    margin-right: 20px;
}
.sliderControl:hover
{
    background-color:#FDCD07;
    color:#004183 !important;
}
.sliderControl i
{
    position:absolute;
    top:50%;
    left:50%;
    transform:translateY(-50%) translateX(-50%);
    font-size:22px;
}
.heroslider_controls
{
    position:absolute;
    bottom:50px;
    right:100px;
}
@media (max-width: 767.98px) {
    .sliderControl
    {
        height:40px;
        width:40px;
        font-size:12px;
    }
    .sliderControl i
    {
        font-size:12px;
    }
    .heroslider_controls
    {
        right:30px;
    }

    .sliderControlMargin
    {
        margin-right:10px;
    }
}
