/*
*
{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
label
{
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 600;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary
{
    display: block;
}
a
{
    text-decoration: none;
    color: #B9ACCB;
}
a:hover
{
    color: #6B3398;
}
li, ul
{
    margin: 0;
    padding: 0;
}
li
{
    list-style: none;
}
body
{
    font-family: Raleway,Helvetica,sans-serif;
}
h1, h2, h3
{
    color: #02214C;
}
h1
{
    font-weight: 500;
    font-size: 40px;
    margin-bottom: .2em;
}
h2
{
    font-weight: 300;
}
#main
{
    width: 1000px;
    margin: 0 auto;
}
.main-header
{
    text-align: center;
    padding: 40px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e1e1e1;
}
.button
{
    color: #3CB3E7;
    font-family: Raleway,Helvetica,sans-serif;
    border-radius: 4px;
    padding: 15px 25px;
    border: 1px solid #3CB3E7;
    background: 0 0;
    font-size: 14px;
    cursor: pointer;
}
.button:hover
{
    color: #fff;
    background: #3CB3E7;
}
.center-button-wrapper
{
    text-align: center;
    padding: 50px 0;
}
*/
.rv-vanilla-modal
{
    position: absolute;
    top: -100%;
    left: 50%;
    width: 45%;
    min-height: 300px;
    margin: -300px 0 0 -22.5%;
    background: #fff;
    z-index: 10;
    -webkit-transition: .3s all ease-out;
    transition: .3s all ease-out;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 6px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 6px 0 rgba(0,0,0,.3);
}
.rv-vanilla-modal-is-open
{
    top: 70%;
}
.rv-vanilla-modal-overlay
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.5);
    opacity: 0;
    display: none;
    -webkit-transition: .4s opacity linear;
    transition: .4s opacity linear;
}
.rv-vanilla-modal-overlay.is-shown
{
    opacity: 1;
    display: block;
}
.rv-vanilla-modal-header
{
    padding: 20px;
    background: #DEDEDE; /* org blue - #3CB3E7 ;*/
    border-radius: 4px 4px 0 0;
}
.rv-vanilla-modal-body
{
    padding: 25px 20px 20px;
    overflow: auto;
    color: #555;
}
.rv-vanilla-modal-body p
{
    line-height: 150%;
    margin: 0 0 1em;
}
.rv-vanilla-modal-title
{
    color: #fff;
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}
.rv-vanilla-modal-close
{
    color: #1a9dd6;
    font-size: 16px;
    float: right;
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: rgba(255,255,255,.4);
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
}
.rv-vanilla-modal-close .text
{
    position: relative;
    top: -1px;
}
.rv-vanilla-modal-close:hover
{
    color: #1996cd;
    background: rgba(255,255,255,.5);
}
.hidden
{
    display: none !important;
    visibility: hidden;
}
.group:after, .group:before
{
    content: "";
    display: table;
}
.group:after
{
    clear: both;
}
.centered
{
    text-align: center;
}
