::-webkit-input-placeholder {
    font-style: italic;
}
:-moz-placeholder {
    font-style: italic;
}
::-moz-placeholder {
    font-style: italic;
}
:-ms-input-placeholder {
    font-style: italic;
}

.alert-container {
    display: grid;
    place-items: center;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    width: 25%;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-message {
    display: flex;
    justify-content: center;
}

body {
    font-family: Helvetica, Arial sans-serif;
    background-color: white;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.error-container {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.error-container h1 {
    color: #EC0127;
    font-size: 2.5rem;
}

.error-container p {
    color: black;
    font-size: 1.5rem;
}

.error-container img {
    horiz-align: center;
    max-width: 60%;
    height: auto;
}

.file-inpt{
    padding:6px;
    font-size:16px;
}

.input-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: right;
    padding:10px 40px;
}

.logo {
    max-width: 100%;
    height: auto;
    display: inline;
    float: left;
    padding-left: 16px;
    padding-right: 16px;
}

.logo img {
    max-height: 64px;
}

.tab-menu {
    background-color: #0D082B;
    max-height: 64px;
    position: fixed;
    width: 100%;
}

.tab-menu button {
    background-color: inherit;
    color: white;
    float: left;
    height: 64px;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 17px;
}

.tab-menu button:hover {
    background-color: #ddd;
    color: black;
}

.tab-menu button.active {
    background-color: #B43E8E;
    color: white;
}

.tab-menu button#logoutButton {
    float: right;
}

.tab-content {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
}

.page-content {
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 64px;
    flex: auto;
}

.page-content.login{
    align-items: center;
    justify-content: center;
    display: flex;
    min-height: 450px;
}

.contrast-content{
    padding:10px 40px;
    background-color: white;
    box-shadow: 0 10px 60px 0 rgba(13, 8, 43, .3);
    border-radius:10px;
    width:min-content;
}

p.loginLabel {
    font-size: x-large;
}

.text-inpt{
    font-size:large;
    width:260px;
    height:35px;
    border:2px solid black;
    border-radius:5px;
    margin-left: 5px;

    justify-content:right;
}

.downloads-box {
    background-color: lightgray;
    border: solid #0D082B;
    border-radius: 10px;
    padding: 0 1rem 1rem;
    width: 600px;
}

.download-row {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr 1fr 0.5fr;
}

summary {
    cursor: pointer;
}

.text_center {
    margin: auto;
    width: fit-content;
    padding: 10px;
}

#eulaDisplay {
    height: 400px;
    width: 75%;
    margin-left: 12.5%;
    margin-right: 12.5%;
}

#eulaCheckbox {
    margin-left: 12.5%;
}

#eulaCheckbox:disabled + label {
    color: gray;
}

a {
    text-decoration: none;
}

.adptButton {
    border-width: 1px;
    border-color: #5f0b80;
    border-radius: 100px;
    letter-spacing: 1px;
    font-size: 14px;
    padding: 16px 24px;
    font-weight: 700;
    font-style: normal;
    background-image: linear-gradient(89deg, #5f08b0 0, #ec0127 100%);
    color: #fff;
    display: block;
    margin: auto;
    cursor: pointer;
}

.adptButton:hover {
    background-image: linear-gradient(89deg, #5f0b80 13%, #a40654 79%, #ec0127 100%);
    background-color: #ec0127;
}

.adptButton:disabled {
    border-color: gray;
    background: white;
    color: gray;
    cursor: default;
}

.modal {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

.modal-content h2 {
    color: green;
    text-align: center;
}

#downloadSHA {
    word-wrap: break-word;
}

.count-select{
    width: 300px;
    margin-bottom: 25px;
}

.countForm{
    display: inline-block;
    padding-right: 100px;
    padding-bottom: 25px;
}

.count-label,.count-input{
    display: flex;
    flex-direction: column;
}

.count-btn{
    margin-bottom: 25px;
}

.count-resp{
    height: 20em;
    width: 45em;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    background-color: #FAF9F6;
    z-index: 1;
}

.cookie-banner-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 0;
}

.cookie-banner-header {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 24px;
}

.cookie-banner-description {
    font-size: 16px;
    line-height: 24px;
}

.cookie-table {
    background-color: lightgray;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.cookie-table td {
    min-width: 100px;
}

.cookie-table td.left {
    font-weight: bold;
    width: 103px;
}

.cookie-necessary {
    padding: 12px;
}

.cookie-necessary summary {
    cursor: pointer;
}

.cookie-necessary summary > * {
    display: inline;
}

.cookie-necessary p.summary {
    font-weight: bold;
}

.cookie-necessary span.green {
    color: green;
    float: right;
}

.cookie-button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 100px;
    padding: 5px 10px;
    border-radius: 2px;
    background-image: linear-gradient(89deg, #5f08b0 0, #ec0127 100%);
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    line-height: 20px;
}

.footer_inner_content{
    position: relative;
}

div.pb_footer_top{
    background-image: linear-gradient(180deg, #0f0122 0, rgba(255, 255, 255, 0) 30%);
    !important;
}

.pb_footer_top{
    padding-bottom: 25px;
    background-color: #0d082b !important;
}

.pb_footer_bot.pb_section{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #0d082b !important;
}

.footer_inner_content .pb_column_1_5,
.footer_inner_content.pb_row .pb_column_1_5{
    width: 15.6%;
}

.footer_inner_content .pb_column,
.footer_inner_content.pb_row .pb_column{
    margin-right: 5.5%;
}

.footer_inner_content .pb_column_1_5 .pb_module,
.footer_inner_content.pb_row .pb_column_1_5 .pb_module{
    margin-bottom: 17.628%;
}

.footer_inner_content .pb_column_footer_bot,
.footer_inner_content.pb_row .pb_column_footer_bot{
    width: 100%;
}

.pb_text_footer_cat.pb_text,
.pb_text_footer_cat.pb_text a{
    color: #fff !important;
}

.pb_text_footer_itm.pb_text,
.pb_text_footer_itm.pb_text a,
.pb_footer_text_bot.pb_text{
    color: rgba(255, 255, 255, .75);
}

.pb_module, .pb_with_background{
    position: relative;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.pb_text_footer_cat{
    line-height: 1.4em;
    font-family: Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px !important;
}

.pb_text_footer_itm{
    line-height: 1.6em;
    margin-bottom: 10px !important;
}

.pb_footer_text_bot{
    font-family: Lato, Helvetica, Arial, Lucida, sans-serif;
    font-size: 11px;
}

@media only screen and (min-width: 1350px){
    .pb_section{
        padding: 54px 0;
    }
}

@media (min-width: 981px){
    .pb_section{
        padding: 2% 0;
    }
}

.pb_section{
    position: relative;
    background-color: #fff;
    background-position: 50%;
    background-size: cover;
}

.pb_with_background{
    position: relative;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.pb_with_border{
    position: relative;
    border: 0 solid #333;
}

.pb_footer_bot{
    border-top-width: 1px;
    border-top-color: rgba(45, 13, 128, .4);
}

.pb_column, .pb_row, .pb_row_inner{
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}

.pb_row:after, .pb_row_inner:after{
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
    width: 0;
}

.pb_row{
    width: 80%;
    max-width: 1080px;
    margin: auto;
    position: relative;
}

.pb_column{
    float: left;
    background-size: cover;
    background-position: 50%;
    z-index: 2;
    min-height: 1px;
}

.pb_row_footer_bot.pb_row{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.pb_row .pb_column.last-child,
.pb_row .pb_column:last-child,
.pb_row_inner .pb_column.last-child,
.pb_row_inner .pb_column:last-child{
    margin-right: 0 !important;
}

.pb_css_mix_blend_mode_passthrough{
    mix-blend-mode: unset !important;
}

.pb_module{
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-duration: .2s;
    animation-duration: .2s;
}

.pb_module.pb_text_align_left{
    text-align: left;
}

.pb_module.pb_text_align_center{
    text-align: center;
}

.pb_text{
    word-wrap: break-word;
}

.pb_text>:last-child{
    padding-bottom: 0;
}

.pb_text_inner{
    position: relative;
}

.pb_image{
    display: block;
    margin-left: auto;
    margin-right: auto;
    line-height: 0;
}

.pb_image img{
    position: relative;
}

.pb_footer_image{
    margin-bottom: 13px !important;
    padding-top: 20px;
    text-align: center;
}

.pb_image_wrap{
    display: inline-block;
    position: relative;
    max-width: 100%;
}

.pb_footer_image .pb_image_wrap img{
    max-height: 80px;
    width: auto;
}