﻿.vertical-bef {
    position: relative;
    padding-left: 1.5rem;
    font-family: myriad-pro,sans-serif;
    font-weight:900;
}

    .vertical-bef::before {
        content: '';
        background: #d7cbbd;
        width: 8px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
    }

.alert {
    width: 100%;
    bottom: 0;
    text-align: center;
    font-weight: bold;
    position: fixed;
    border: 0;
    border-radius: 0;
    margin-bottom: 0;
    background-color: tomato;
    z-index: 1000000;
    color: white;
    padding: 12px 5px 0px 5px;
}

.alert .r-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-items: center;
    align-items: center;
    width: 100%;
    grid-row-gap: 1rem;
}

.alertBtnContainer {
    position: relative;
    width: 30px;
    height: 30px;
    justify-self: right;
}

.alertButton {
    background-color:black;
    color:white;
    border-radius:4px;
    box-shadow:rgba(0,0,0,0.5) 0px 0px 3px 0px;
    border:none;
    padding:12px;
    right:0;
    margin-right:0;
}

.alertMsg {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
}

.ih-white {
    color: #ffffff !important;
}