@import url("/wp-content/themes/ti-theme-master/fonts-style.css");
body {
    background: url("/offlinedatasaver/bg-pattern.png") #176ac5;
    background-size: 100% auto;
    color: white;
    font-family: proxima-nova;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    padding: 15px;
}
h1 {
    font-weight: 800;
    margin: 10px 0;
}
p {
    font-weight: 600;
    font-size: 18px;
    margin: 10px 0;
}
.exportedDataLabel {
    font-weight: 700;
    display: block;
}
textarea {
    font-family: proxima-nova;
    width: 100%;
    max-width: 700px;
    height: 250px;
    display: block;
    margin: 15px auto;
}
.saveButton {
    text-decoration: none;
    color: #fff!important;
    min-width: 200px;
    padding: 10px 25px;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 6px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 6px 6px rgba(0,0,0,.1);
    background-color: #004b9e;
    cursor: pointer;
}
.saveButton:before {
    font-family: 'theme_icons';
    font-weight: 400;
    content: '\E024';
    padding-right: 10px;
}

.instructionsLink, .instructionsLink:visited {
    color: white;
}
.errorMessage {
    display: none;
    background-color: #cc0000;
    border-radius: 12px;
    padding: 15px;
    color: white;
    font-weight: 600;
    box-shadow: 6px 6px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}
.errorMessage span:before {
    font-family: theme_icons;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    font-size: 24px;
    content: '\e00c';
    padding-right: 10px;
}
.success {
    display: none;
    background-color: #907dfc;
    border-radius: 12px;
    box-shadow: 6px 6px rgba(0, 0, 0, 0.1);
    padding: 15px;
}
.success h2, .success p {
    margin: 5px;
}
.success h2 {
    font-weight: 800;
}
.success p {
    font-weight: 600;
    font-size: 16px;
}
.success .thankYou {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 5px;
}
.privacyNote, .safariNote {
    display: block;
    font-size: 14px;
    margin-top: 10px;
}