/**
 * Typography
 */

body {
    font-family: 'Roboto', Helvetica, sans-serif;
    color: #4C4C4C;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: #00529B;
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 2.875rem;
    font-weight: bold;
}

h2 {
    font-size: 2.125rem;
    font-weight: bold;
}

h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

h4 {
    font-size: 1rem;
}

a {
    color: #0092DD;
}

a:hover {
    color: #0092DD;
}

a.btn {
    border: 2px solid;
    padding: 8px 25px;
    border-radius: 0;
    font-weight: bold;
    font-size: 1.05rem;
}

a.btn.dark-btn {
    border-color: #0092dd;
    color: #fff;
    background: #0092dd;
    border-radius: 4px;
}

a.btn.light-btn {
    border-color: #0092dd;
    color: #0092dd;
    background: #fff;
    border-radius: 4px;
}

a.btn.gray-btn {
    border-color: #0092dd;
    color: #0092dd;
    background: #f2f2f2;
    border-radius: 4px;
}

a.btn.white-btn {
    border-color: #fff;
    color: #0092dd;
    background: #fff;
    border-radius: 4px;
}

.text-center .btn {
    margin: 0 10px;
}

a.btn.dark-btn:hover {
    border-color: #0092dd;
    color: #0092dd;
    background: #fff;
    border-radius: 4px;
}

a.btn.light-btn:hover {
    border-color: #0092dd;
    color: #fff;
    background: #0092dd;
    border-radius: 4px;
}

a.btn.gray-btn:hover {
    border-color: #0092dd;
    color: #f2f2f2;
    background: #0092dd;
    border-radius: 4px;
}

a.btn.white-btn:hover {
    border-color: #f2f2f2;
    color: #0092dd;
    background: #f2f2f2;
    border-radius: 4px;
}

strong {
    padding: 0 !important;
}

/**
 * Media Queries
 */

@media (min-width: 1280px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
    }
}

@media (max-width: 767px) {
    body .nav.justify-content-end {
        -ms-flex-pack: start!important;
        justify-content: flex-start!important;
    }
    body section.pref-form div.form-wrapper {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 1140px) {
    body section.pref-form .form-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }
    body header .toolbar {
        padding-left: 10px;
        padding-right: 10px;
    }
}


@media (max-width: 992px) {
    body section.pref-form .form-wrapper {
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}


/**
 * Section Guides
 */

main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

main.show-guides>section,
main.show-guides>header,
main.show-guides>footer {
    border: 2px dashed #000;
    position: relative;
}

main.show-guides>section:before,
main.show-guides>header:before,
main.show-guides>footer:before {
    counter-increment: section;
    content: attr(data-mod-name);
    position: absolute;
    background: yellow;
    padding: 5px;
    min-width: 100px;
    top: 0;
    left: 0;
    z-index: 750;
    color: #000 !important;
}


/**
 * Section Styles
 */

section {
    margin-top: 60px;
    margin-bottom: 60px;
}

section:first-of-type {
    margin-top: 0px;
}
     
section.tabbed-content .tabs-left>li {
    display: block;
    width: 100%;
    border: 1px solid #D0D0D0;
    background-color: #F9F9F9;
    margin-bottom: 10px;
    position: relative;
}

#free-text{
    background-color: "${sec1bgcolor}";
}

section.tabbed-content .tabs-left>li.active {
    border-right: 0;
    background-color: #ffffff;
}

section.tabbed-content .tabs-left>li.active::after {
    content: '';
    background-color: #fff;
    position: absolute;
    right: -5px;
    top: 0;
    width: 10px;
    height: calc(100% - 1px);
    z-index: 99;
}

section.tabbed-content .tabs-left>li>a {
    color: #707070;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none !important;
    padding: 12px 25px;
    display: block;
    width: 100%;
}

section.tabbed-content .nav-tabs {
    border: 0;
}

section.tabbed-content .tab-content {
    border: 1px solid #D0D0D0;
    margin-left: -31px;
    padding: 50px;
}

section.hightlight-box-content .content-box {
    height: 100%;
    -webkit-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 5px 40px 0px rgba(0, 0, 0, 0.16);
}

section.hightlight-box-content .copy-wrapper {
    padding: 40px 30px;
}

section.hightlight-box-content .col-md-4:nth-of-type(1) .content-box {
    margin-right: 15px;
}

section.hightlight-box-content .col-md-4:nth-of-type(2) .content-box {
    margin-left: 7.5px;
    margin-right: 7.5px;
}

section.hightlight-box-content .col-md-4:nth-of-type(3) .content-box {
    margin-left: 15px;
}

section.accordion-content .card {
    border: 0;
}

section.accordion-content .card .card-header {
    border-bottom: 1px solid #D0D0D0;
    background-color: #fff;
    padding: 0;
}

section.accordion-content .card .card-header a {
    padding: 20px 25px;
    display: block;
    width: 100%;
}

section.accordion-content .card .card-header a::after {
    content: '';
    background-image: url('http://info.tainstruments.com/rs/561-HTD-468/images/accordion-icon.png');
    background-size: 100%;
    position: absolute;
    right: 25px;
    top: 18px;
    width: 28px;
    height: 28px;
}

section.tabbed-content-top .tabs-top {
    border: 0;
    margin-bottom: 15px;
}

section.tabbed-content-top .tabs-top>li>a {
    display: inline-block;
    padding: 15px 20px;
    color: #4C4C4C;
    margin-right: 15px;
    margin-bottom: 15px;
    text-decoration: none !important;
    border-radius: 5px;
}

section.tabbed-content-top .tabs-top>li.active>a {
    background-color: #0092DD;
    color: #fff;
}

table.spec-table {
    width: 100%;
}

table.spec-table .bullet {
    color: #00529B;
    font-size: 2rem;
}

table.spec-table th {
    border-bottom: 1.5px solid #D0D0D0;
    color: #00529B;
    font-size: 1.125rem;
    font-weight: bold;
}

table.spec-table th,
table.spec-table td {
    padding: 10px 15px;
}

table.spec-table tr:nth-of-type(odd) td {
    background-color: #F2F2F2;
}

table.spec-table tr:last-of-type td {
    border-top: 1.5px solid #D0D0D0;
    background-color: #fff;
}

.tab-content section.tabbed-content .tabs-left>li.active::after {
    top: 1px;
}

a.resource-link {
    padding-left: 40px;
    display: block;
    padding-bottom: 15px;
    position: relative;
}

a.resource-link::before {
    content: '';
    background-image: url('http://info.tainstruments.com/rs/561-HTD-468/images/resource-icon.png');
    background-size: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 24px;
    height: 24px;
}

section.banner-section {
    background-position: center;
    background-size: cover;
}

header .toolbar {
    background-color: #F2F2F2;
    color: #A0A0A0;
    font-size: 1rem;
    padding: 10px 70px;
}

header .toolbar .toolbar-wrapper {
    text-align: right;
}

header .btn-group .dropdown-toggle {
    background-color: #fff;
    min-width: 225px;
    text-align: left;
    text-decoration: underline;
    font-weight: bold;
    font-size: 0.875rem;
    margin-right: 20px;
    border-radius: 0;
}

header .btn-group .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 15px;
}

header .btn-group .dropdown-menu {
    border-radius: 0;
}

header .btn-group.links a {
    color: #A0A0A0;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: underline;
}

header .nav-link {
    color: #000000;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none !important;
    padding: 0.5rem 2rem;
    position: relative;
}

header .nav-link.active::after {
    content: '';
    height: 2px;
    position: absolute;
    bottom: 5px;
    left: 1.875rem;
    right: 1.875rem;
    background-color: #0092DD;
}

footer.full-footer {
    background-color: #00529B;
    padding-top: 40px;
    padding-bottom: 40px;
    color: #fff;
}

footer.full-footer .footer-heading {
    font-size: 1.125rem;
    font-weight: 500;
}

.footer-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-links>li {
    padding: 10px 0;
}

.footer-links>li a {
    color: #fff;
    text-decoration: none;
}

.footer-links>li:not(:last-of-type) {
    border-bottom: 0.5px solid #7FA8CD;
}

.social-icons>a {
    display: inline-block;
    margin-right: 2px;
}

footer.legal-footer {
    background-color: #00204E;
    color: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 0.8125rem;
}

.legal-links {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.legal-links>li {
    display: inline-block;
    padding: 0 5px;
}

.legal-links>li a {
    color: #fff;
    text-decoration: none;
}

section.pref-form {
    -webkit-box-shadow: inset 0px 3px 10px 0px rgba(0, 0, 0, 0.07);
    -moz-box-shadow: inset 0px 3px 10px 0px rgba(0, 0, 0, 0.07);
    box-shadow: inset 0px 3px 10px 0px rgba(0, 0, 0, 0.07);
    background-color: #F2F2F2;
    margin-bottom: 0;
    padding-top: 60px;
    padding-bottom: 60px;
}

section.pref-form .form-wrapper {
    background-color: #fff;
    padding: 50px 125px;
    -webkit-box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.16);
}

/**
 * Marketo Form Styles
 */

form.mktoForm,
form.mktoForm .mktoFormRow,
form.mktoForm .mktoFormCol,
form.mktoForm .mktoFieldWrap,
form.mktoForm .mktoHtmlText,
form.mktoForm .mktoLabel,
form.mktoForm input[type=text],
form.mktoForm input[type=url],
form.mktoForm input[type=email],
form.mktoForm input[type=tel],
form.mktoForm input[type=number],
form.mktoForm input[type=date],
form.mktoForm textarea.mktoField,
form.mktoForm select.mktoField,
form.mktoForm .mktoLogicalField,
form.mktoForm .mktoRadioList > label,
form.mktoForm .mktoCheckboxList > label,
form.mktoForm .mktoButtonRow,
form.mktoForm .mktoButtonRow .mktoButtonWrap  {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 1rem !important;
}

form.mktoForm input[type=text],
form.mktoForm input[type=url],
form.mktoForm input[type=email],
form.mktoForm input[type=tel],
form.mktoForm input[type=number],
form.mktoForm input[type=date],
form.mktoForm textarea.mktoField,
form.mktoForm select.mktoField {
    padding: 10px !important;
    border-radius: 5px !important;
    border: 1px solid #848484 !important;
}

form.mktoForm .mktoOffset,
form.mktoForm .mktoAsterix {
    display: none !important;
}

form.mktoForm .mktoRadioList > label,
form.mktoForm .mktoCheckboxList > label {
    margin-left: 30px !important;
    width: calc(100% - 30px) !important;
}

form.mktoForm .mktoRadioList > label strong,
form.mktoForm .mktoCheckboxList > label strong {
    color: #00529B;
    font-size: 1.125rem;
}

form.mktoForm .mktoFormRow,
form.mktoForm .mktoButtonRow {
    margin-bottom: 30px !important;
}

form.mktoForm .mktoRadioList > input,
form.mktoForm .mktoCheckboxList > input {
    margin-top: 2px !important;
}

form.mktoForm input[name=Unsubscribed] + label {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.pref-form form.mktoForm input[name=Email] {
    max-width: 400px !important;
    margin: 0 auto !important;
    float: none !important;
    margin-bottom: 30px !important;
}

.marketo-form-header,
.marketo-form {
    margin-bottom: 20px;
}

form.mktoForm .mktoButtonRow .mktoButtonWrap {
    text-align: center;
}

form.mktoForm .mktoButtonRow button {
    background-color: #0092DD !important;
    color: #fff !important;
    font-weight: bold !important;
    border: 0 !important;
    padding: 10px 25px !important;
}