/*

1. Add your custom Css styles below
2. Place the this code in your template:

 <link href="css/custom.css" rel="stylesheet">

*/

#footer .copyright-text,
#footer .disclosures-text {
    line-height: 1.5;
    padding: 6px 0;
}

#footer .disclosures-text a:hover,
#footer .disclosures-text a:focus {
    text-decoration: underline;
}

#disclosuresModal,
#disclosuresModal * {
    box-sizing: border-box;
}

html.disclosuresModalOpen,
html.disclosuresModalOpen body {
    overflow: hidden !important;
}

#disclosuresModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 0;
    line-height: 100vh;
    text-align: center;
    z-index: 999;
}

#disclosuresModalInner {
    display: inline-block;
    position: relative;
    z-index: 5;
    width: 800px;
    margin: auto;
    padding: 40px 50px;
    box-sizing: border-box;
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    background: #fff;
    overflow: auto;
    overflow-x: hidden;
}

#disclosuresModalInner p:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

#disclosuresModalOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
}

#disclosuresModalClose {
    display: inline-block;
    margin-bottom: 5px;
}