/** color scheme **/
/** color scheme end **/
form button, .btn {
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 14px 21px 13px 19px;
  text-decoration: none;
}

.input-box.inline, .clearfix, .flex, .inner-space, .row {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  -ms-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.align-bottom {
  -ms-align-items: flex-end;
  -webkit-box-align: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}

.input-box.inline, .justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.justify-end {
  -webkit-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  justify-content: flex-end;
}

html, body {
  width: 100%;
}

html {
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  background: #fff;
  font-family: "Volta Modern Display Web";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.45;
  padding: 0;
  color: #000;
  letter-spacing: normal;
  overflow-x: hidden;
}
body.body-lock {
  overflow-Y: hidden;
  position: fixed;
}

a:hover, a:active, a, a:focus, textarea:focus, a[href^=tel] {
  outline: none;
  text-decoration: none;
}

a, a[href^=tel] {
  color: inherit;
}

img, ul, li, input, select, textarea, button {
  outline: none;
  border: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

input, select, textarea, button, a {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}

select, input, textarea, button {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

textarea {
  resize: none;
  overflow: auto; /** remove scroller in IE **/
  min-height: 245px;
}

input, select, textarea {
  padding: 10px 20px;
  border: 2px solid #000;
  box-shadow: none;
  border-radius: 0;
  background: #fff;
  width: 100%;
  margin-bottom: 30px;
  font-family: "Volta Modern Display Web";
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #000;
}

form button {
  width: auto;
  display: block;
  cursor: pointer;
  color: #000;
  background: transparent;
  font-size: 16px;
  font-family: "Volta Modern Display Web";
  font-weight: 700;
  min-width: 240px;
  text-align: center;
  border-radius: 0;
  border: 2px solid #000;
  padding: 17px 15px;
  margin: 40px 0;
}
form button:hover {
  background: #0624bb;
  border-color: #0624bb;
  color: #fff;
}

.btn {
  width: auto;
  cursor: pointer;
  font-family: "Volta Modern Display Web";
  min-width: 240px;
  margin: 40px 0;
  background-color: #0059a3;
}
.btn:hover {
  background: #0624bb;
  border-color: #0624bb;
  color: #fff;
}
.btn img {
  float: right;
}

select::-ms-expand {
  display: none; /** IE fix **/
}

select {
  background-image: url(../images/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
}

select, input:not([type=checkbox]):not([type=radio]) {
  height: 48px;
}

input:not([type=checkbox]):not([type=radio]):focus, textarea:focus {
  -webkit-box-shadow: inset 0 0 0 2px #0624bb;
  box-shadow: inset 0 0 0 2px #0624bb;
  border-color: #0624bb;
}

.clear {
  clear: both;
}

img {
  max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 12px;
}

p {
  margin-bottom: 25px;
}
p:last-child {
  margin-bottom: 0 !important;
}

p a, li a {
  color: #0624bb;
  text-decoration: underline;
  word-break: break-word;
}
p a:hover, li a:hover {
  text-decoration: none;
}

@media \0 screen { /** IE 8 fix **/
  p a {
    word-break: break-all;
    display: inline-block;
  }
}
@media screen and (min-width: 0\0 ) and (min-resolution: 72dpi) { /** IE 9 and above fix **/
  p a {
    word-break: break-all;
    display: inline-block;
  }
}
sup {
  font-size: 0.75em;
  line-height: 1;
}

hr {
  border: none;
  border-bottom: 1px solid #cdcdcd;
  margin: 30px 0;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  clear: both;
  padding-left: 30px;
  padding-right: 30px;
}

.container-small {
  width: 100%;
  clear: both;
}

@media screen and (min-width: 821px) {
  .container-small {
    max-width: 800px;
  }
}
.row {
  margin-left: -15px;
  margin-right: -15px;
  flex-grow: 1;
}
.row [class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.inner-space {
  padding-top: 70px;
  padding-bottom: 70px;
  flex-grow: 1;
}

.hide-xs {
  display: inline-block;
}

.show-xs {
  display: none;
}

.col-2 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-3 {
  width: 33.33333%;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col-4 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-5 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
}

.col-two-third {
  -ms-flex: 0 0 66.66666%;
  flex: 0 0 66.66666%;
  max-width: 66.66666%;
}

.col-full {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.p-relative {
  position: relative;
}

.clearfix {
  width: 100%;
}

.text-center {
  text-align: center;
}

.color-white {
  color: #fff;
}

.inline-block {
  display: inline-block;
}

.show-md {
  display: none !important;
}

h1.sec-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 35px;
}

h2.sec-heading {
  font-weight: 700;
  margin-bottom: 35px;
}

h2.color-header {
  color: #0059a3;
  margin-bottom: 30px;
}

h3.sec-heading {
  font-weight: 700;
  margin-bottom: 20px;
}

.color-primary {
  color: #0624bb;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.font-black {
  font-weight: 900;
}

.w-100 {
  width: 100% !important;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

ul.dotted-list {
  margin-left: 10px;
  margin-bottom: 30px;
}
ul.dotted-list:last-child {
  margin-bottom: 0;
}
ul.dotted-list li {
  margin-bottom: 0;
  position: relative;
  padding-left: 25px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
ul.dotted-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}

/** basic style end **/
.header {
  position: relative;
  padding: 20px 0;
}
.header .header-content a {
  display: inline-block;
}
.header .header-content div + div {
  margin-left: 20px;
}
.header .header-content .lang-option a {
  font-size: 16px;
  text-decoration: underline;
}
.header .header-content .lang-option a:hover {
  text-decoration: none;
}
.header .header-content .lang-option a + a {
  margin-left: 10px;
}
.header .header-content .lang-option span {
  font-size: 14px;
}
.header .header-content .lang-option select {
  margin-left: 5px;
  width: auto;
  height: auto;
  padding: 5px 20px 5px 8px;
  font-size: 14px;
  float: right;
  background: url("../images/lang-select-arrow.png");
  background-position: center right 2px;
  background-repeat: no-repeat;
}

@media screen and (min-width: 821px) {
  .header {
    padding: 30px 0;
  }
}
.grey-bg-lg {
  background-color: #f8f8f8;
}

.white-back {
  background-color: #ffffff;
}

.cta-section .btn {
  margin: 0 0 30px;
}

.inner-space ul {
  margin-left: 30px;
}
.inner-space ul li {
  list-style: disc;
  padding-bottom: 10px;
}
.inner-space ol {
  margin-left: 30px;
}
.inner-space ol li {
  list-style: decimal;
  padding-bottom: 10px;
  padding-left: 10px;
}
.inner-space ol li ol li {
  list-style: lower-alpha;
}
.inner-space ol li ul {
  margin-top: 10px;
}
.inner-space ol li ul li {
  list-style: disc;
}

.page-banner {
  position: relative;
  width: 100%;
}
.page-banner .banner-content {
  position: relative;
  z-index: 999;
  color: #ffffff;
  padding-top: 80px;
  max-width: 400px;
}
.page-banner .banner-content .hero-btn {
  color: #0059a3;
  background-color: #ffffff;
}
.page-banner .banner-content .hero-btn:hover {
  color: #ffffff;
  background-color: #0059a3;
}
.page-banner img {
  margin: 0 auto;
}

@media screen and (min-width: 1200px) {
  .page-banner {
    height: 450px;
  }
  .page-banner img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.page-content {
  display: block;
  padding: 60px 0;
}

.accordion-section-content h2 {
  color: #0059a3;
}

.acc-section .acc-box {
  width: 100%;
  position: relative;
  padding: 25px;
  border: 1px solid #000000;
  margin-bottom: 20px;
}
.acc-section .acc-box h4 {
  color: #0059a3;
  cursor: pointer;
  padding-left: 40px;
  font-size: 24px;
}
.acc-section .acc-box .acc-answer {
  display: none;
  width: 100%;
  margin: 10px 0 30px;
}

.collapse-arrow {
  display: block;
  position: absolute;
  top: 36px;
  margin-left: -40px;
}
.collapse-arrow:before, .collapse-arrow:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #0059a3;
  transition: all 0.2s ease-in-out;
}
.collapse-arrow:after {
  transform: rotate(-90deg);
}
.collapse-arrow.open:after {
  transform: rotate(0deg);
}

/** form style **/
#copy-btn {
  cursor: pointer;
}

.copy-text {
  display: none;
  color: red;
  font-weight: bold;
}

.references {
  font-size: 80%;
}

.screener-form {
  padding: 20px 0 0;
  /** error handling styles **/
}
.screener-form .cz-field {
  width: 100%;
  display: inline-block;
}
.screener-form .cz-submit-invalid:not(.cz-field) {
  overflow: hidden;
  background: #fbf6f7;
  border: 3px solid #ed1c24;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  padding: 15px 15px 0;
  display: inline-block;
}
.screener-form .cz-submit-invalid .require {
  display: inline-block;
}
.screener-form .contact-block .cz-submit-invalid:not(.cz-field) input {
  border: 3px solid #c63535;
}
.screener-form .require {
  display: none;
  position: relative;
  right: 0;
  bottom: 0;
  padding: 10px 24px;
  background: #ed1c24;
  color: #fff;
  float: right;
  margin-right: -20px;
  margin-top: 20px;
}
.screener-form .require:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 20px;
  height: 100%;
  background: #ed1c24;
  transform: skew(-20deg);
  -webkit-transform: skew(-20deg);
}
.screener-form .require > p {
  font-weight: 500;
  margin: 0;
  display: inline-block;
}

.control {
  display: block;
  position: relative;
  padding-left: 37px;
  margin-left: 0;
  cursor: pointer;
}

.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
  left: 1px;
  top: 2px;
  margin: 0;
  padding: 0;
  border: none;
}

.radio-section .input-row {
  float: left;
  margin-right: 20px;
}

.radio-section .input-row:last-child {
  margin-right: 0;
}

.control-indicator {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #fff;
  border: 2px solid #000;
}

.control-indicator:after {
  content: "";
  position: absolute;
  display: none;
}

.control input:checked ~ .control-indicator:after {
  display: block;
}

.control-checkbox .control-indicator:after {
  left: 5px;
  top: 1px;
  width: 4px;
  height: 9px;
  border: solid #000;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.control-radio .control-indicator {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.control-radio .control-indicator:after {
  left: 2px;
  top: 2px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #000;
}

.input-box {
  padding: 0 0 15px 25px;
}
.input-box h4 {
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
}
.input-box h4 .number {
  position: absolute;
  left: -70px;
}
.input-box h4 a {
  text-decoration: underline;
  font-weight: 500;
  display: inline-block;
  color: #1a74ba;
  cursor: pointer;
}
.input-box h4 a:hover {
  text-decoration: none;
}
.input-box > h4 {
  margin-bottom: 21px;
}
.input-box.inline {
  padding-right: 25px;
}
.input-box.inline .input-row {
  max-width: 30%;
  flex: 0 0 30%;
  -ms-flex: 0 0 30%;
}

.input-row {
  text-align: left;
  position: relative;
}
.input-row .inline-block + .inline-block {
  margin-left: 30px;
}
.input-row > h4 {
  margin-bottom: 4px;
}
.input-row > p {
  padding-left: 35px;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.input-row > h5 {
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
}
.input-row input:not([type=checkbox]):not([type=radio]) {
  margin-bottom: 0;
}

.step-form {
  margin-bottom: 50px;
}
.step-form button {
  padding: 17px 50px;
  margin: 30px 0;
}

.step-row {
  margin-bottom: 25px;
}

.select-sec label {
  margin-left: 10px;
}

.input-240 {
  width: 240px;
}

.scroller-block {
  max-width: 840px;
  height: 440px;
  overflow-x: scroll;
  border: 2px solid #cdcdcd;
  padding: 25px;
  margin-bottom: 50px;
}
.scroller-block:last-child {
  margin-bottom: 20px;
}
.scroller-block ul {
  margin-left: 35px;
  margin-bottom: 20px;
}
.scroller-block ul li {
  position: relative;
  padding-left: 12px;
  margin-bottom: 6px;
}
.scroller-block ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 1px;
  background: #000;
}

.disclaimer {
  font-size: 16px;
  margin: 20px 0;
}

/** form style end **/
.footer {
  position: relative;
  font-size: 14px;
}
.footer p {
  margin-bottom: 10px;
}
.footer .footer-content {
  border-top: 1px solid #cdcdcd;
  padding: 40px 0;
}
.footer .footer-content .footer-logo a {
  display: inline-block;
  margin-bottom: 15px;
}
.footer .footer-content .site-info .copyright {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer .footer-content .site-info .footer-links a {
  color: #000;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .site-info .footer-links a + a {
  border-left: 1px solid #000;
  margin-left: 5px;
  padding-left: 5px;
}
.footer .footer-content .site-info .footer-links a:hover {
  color: #0624bb;
}

@media screen and (min-width: 821px) {
  .footer .footer-logo {
    text-align: right;
    order: 2;
  }
  .footer .site-info {
    order: 1;
    max-width: 52%;
  }
}
/** Start DSAR/CCPA Styles **/
.call-mdc-popup {
  cursor: pointer;
  font-size: 15px;
}

.call-mdc-popup:hover {
  text-decoration: underline;
}

.mdc-popup {
  position: fixed;
  flex-direction: column;
  justify-content: center;
  margin-top: -90px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.65);
  overflow-y: scroll;
  padding: 40px 0;
  display: none;
  opacity: 0;
  z-index: -99999;
}

.mdc-popup-inner {
  max-width: 700px;
  width: 90%;
  background: #fff;
  color: black;
  margin: 0 auto;
  position: relative;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  padding: 40px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.mdc-popup-inner ul {
  list-style-type: disc;
  color: #cd0b05;
  text-align: left;
  margin-bottom: 30px;
  text-indent: 0px;
  padding-left: 20px;
}

.mdc-popup-inner ul li {
  margin-bottom: 20px;
}

.mdc-popup-inner ul li span {
  font-weight: 300;
  font-size: 18px;
  color: black;
}

.mdc-popup-inner h2 {
  font-weight: 300;
  font-size: 36px;
  margin-bottom: 30px;
}

.mdc-popup-inner p {
  font-weight: 300;
  font-size: 18px;
}

.mdc-popup-inner a {
  color: #3f8bc7;
}

.mdc-popup-inner a:hover {
  text-decoration: none;
}

.mdc-popup-close-btn {
  position: absolute;
  right: -15px;
  top: -15px;
  z-index: 2;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  height: 44px;
  -webkit-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.75);
}

.dismiss-msg {
  cursor: pointer;
}

.page-popup {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.75);
  padding: 25px 0;
  overflow-y: scroll;
}
.page-popup > div {
  height: 100%;
}
.page-popup .page-popup-body {
  position: relative;
  max-width: 400px;
  width: 400px;
  margin: 0 auto;
  background: #ebeff3;
  border: 3px solid #fff;
  -webkit-border-radius: 25px;
  padding: 30px;
  font-size: 18px;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}
.page-popup .page-popup-body .popup-close {
  position: absolute;
  cursor: pointer;
  right: -15px;
  top: -15px;
  width: 44px;
  height: 44px;
  background: url(../images/popup-close-img.png) no-repeat center;
}
.page-popup .page-popup-body h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0624bb;
  margin-bottom: 30px;
}
.page-popup .page-popup-body .popup-form .cta-btn {
  margin: 10px;
}
.page-popup .page-popup-body button {
  margin: 0 auto 30px;
}
.page-popup .page-popup-body h4 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
}
.page-popup .page-popup-body h4:hover {
  text-decoration: none;
}
.page-popup .page-popup-body .exit-pop-no {
  text-align: center;
  font-size: 80%;
  color: #1874b8;
  cursor: pointer;
  display: inline-block;
  text-decoration: underline;
  justify-content: center;
}

/* -------------------------------------------------------------- 
   DSAR Styles
-------------------------------------------------------------- */
.page-id-6605,
.page-id-6607 {
  background: #455560;
  padding: 0 0 20px;
}

.page-id-6605 .header,
.page-id-6605 .footer,
.page-id-6607 .header,
.page-id-6607 .footer {
  display: none;
}

.dsar-page {
  max-width: 800px;
  margin: 0 auto;
}

.dsar-page.ty-request-sent {
  margin-top: 60px;
}

.dsar-page hgroup {
  text-align: center;
  font-weight: 600;
  color: white;
}

.dsar-page hgroup h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.dsar-page hgroup h2 {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: normal;
}

.dsar-page hgroup h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.dsar-page .dsar-main {
  text-align: center;
}

.dsar-page .dsar-main h4 {
  color: #63adce;
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
}

.dsar-page .dsar-main p {
  color: #fff;
  font-size: 18px;
}

.dsar-page .dsar-main a {
  color: #fff;
  font-weight: 400;
}

.dsar-webform {
  background: white;
  max-width: 610px;
  font-size: 18px;
  border: 1px solid #c0c0c0;
  padding: 25px 25px 40px 25px;
  margin: 40px auto 0;
}

.dsar-webform h3 {
  color: #333;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  max-width: 400px;
  margin: 30px auto;
  letter-spacing: 0.1px;
}

.dsar-webform .flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
}

.dsar-webform input,
.dsar-webform select {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgb(226, 226, 226);
  background-color: #f5faff;
  color: #333;
  margin: 0 5px;
  padding: 15px;
}

.dsar-webform select::placeholder,
.dsar-webform input::placeholder {
  color: #333;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.dsar-webform ul {
  max-width: 380px;
  list-style: none;
  margin: 20px auto;
  padding: 0;
  overflow: auto;
}

.dsar-webform ul li {
  color: #333333;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  font-size: 14px;
}

#requestTypesDSARElement li input[type=radio] {
  position: absolute;
  visibility: hidden;
  -webkit-appearance: radio;
}

#requestTypesDSARElement li label {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 25px 15px 60px;
  margin: 0px auto;
  z-index: 9;
  cursor: pointer;
  transition: all 0.25s linear;
  -webkit-transition: all 0.25s linear;
}

#requestTypesDSARElement li .check {
  display: block;
  position: absolute;
  border: 1px solid gray;
  background: #f5faff;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 15px;
  left: 20px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}

#requestTypesDSARElement li:hover .check {
  border: 1px solid #cd0b05;
}

#requestTypesDSARElement li .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 10px;
  width: 10px;
  top: 7px;
  left: 7px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}

#requestTypesDSARElement input[type=radio]:checked ~ .check {
  border: 1px solid gray;
}

#requestTypesDSARElement input[type=radio]:checked ~ .check::before {
  background-color: #cd0b05;
}

#requestTypesDSARElement input[type=radio]:checked ~ label {
  color: #333;
}

.dsar-webform .btn-ctr {
  display: flex;
  justify-content: center;
}

.dsar-webform button {
  background-color: #cd0b05;
  color: white;
  font-size: 16px;
  padding: 8px 40px;
  margin-bottom: 20px;
  border-radius: 2px;
  width: 300px;
  height: 42px;
}

.dsar-webform button:hover {
  background-color: #d80600;
  text-decoration: underline;
}

/* END DSAR/CCPA STYLE */
/** Tooltip style **/
.tooltip {
  width: 20px;
  height: 20px;
  background: transparent;
  font-weight: 500;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #a3a3a3;
  color: #a3a3a3;
  line-height: 20px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  margin: 4px 0 0 7px;
  font-size: 16px;
  cursor: pointer;
}

/* Tipso Bubble Styles */
.tooltip-section .tooltip-content {
  display: none;
}

.tipso_bubble,
.tipso_bubble > .tipso_arrow {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.tipso_bubble {
  position: absolute;
  border-radius: 0;
  z-index: 9999;
  padding: 17px 23px 2px;
  background: #fff;
  border: 3px solid #e2dddd;
}

.tooltip-content {
  padding-bottom: 10px;
  font-size: 16px;
}
.tooltip-content > h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: #0624bb;
  padding-bottom: 5px;
}
.tooltip-content ul {
  margin-bottom: 5px;
}

.tipso_style {
  cursor: help;
  position: relative;
}

.tipso_title {
  border-radius: 6px 6px 0 0;
}

.tipso_content {
  word-wrap: break-word;
}

.tipso_bubble.tiny {
  font-size: 0.6rem;
}

.tipso_bubble.small {
  font-size: 0.8rem;
}

.tipso_bubble.default {
  font-size: 1rem;
}

.tipso_bubble.large {
  font-size: 1.2rem;
  width: 100%;
}

.tipso_bubble > .tipso_arrow {
  position: absolute;
  width: 0;
  height: 0;
  border: 12px solid;
  pointer-events: none;
}

.tipso_bubble.top > .tipso_arrow {
  border-top-color: #e2dddd;
  border-right-color: transparent;
  border-left-color: transparent;
  border-bottom-color: transparent;
  top: 100%;
  left: 50%;
  margin-left: -12px;
}

.tipso_bubble.bottom > .tipso_arrow {
  border-bottom-color: #e2dddd;
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  bottom: 100%;
  left: 50%;
  margin-left: -12px;
}

.tipso_bubble.left > .tipso_arrow {
  border-left-color: #e2dddd;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  top: 50%;
  left: 100%;
  margin-top: -12px;
}

.tipso_bubble.right > .tipso_arrow {
  border-right-color: #e2dddd;
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-left-color: transparent;
  top: 50%;
  right: 100%;
  margin-top: -12px;
}

.tipso_bubble .top_right_corner,
.tipso_bubble.top_right_corner {
  border-bottom-left-radius: 0;
}

.tipso_bubble .bottom_right_corner,
.tipso_bubble.bottom_right_corner {
  border-top-left-radius: 0;
}

.tipso_bubble .top_left_corner,
.tipso_bubble.top_left_corner {
  border-bottom-right-radius: 0;
}

.tipso_bubble .bottom_left_corner,
.tipso_bubble.bottom_left_corner {
  border-top-right-radius: 0;
}

/** Tooltip style end **/
@media screen and (max-width: 1250px) {
  .container {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .input-box.inline {
    padding-right: 0;
  }
  .scroller-block {
    max-width: 100%;
  }
}
@media screen and (max-width: 820px) {
  .page-content {
    padding: 40px 0;
  }
  h1.sec-heading {
    font-size: 40px;
    margin-bottom: 30px;
  }
  h2.sec-heading {
    font-size: 28px;
    margin-bottom: 25px;
  }
  h3 {
    font-size: 22px;
  }
  .page-banner {
    background-color: #0059a3;
  }
  .page-banner .container {
    padding: 0;
  }
  .page-banner .container .banner-content {
    color: #fff;
    padding: 30px;
  }
  .page-banner .container .banner-content h1 {
    font-size: 34px;
  }
  .page-banner .container .banner-content .btn {
    margin: 20px 0;
  }
  .show-xs {
    display: block;
  }
  .hide-xs {
    display: none;
  }
  .cta-section .btn {
    width: 100%;
    text-align: left;
  }
  .cta-section .btn img {
    position: absolute;
    right: 15px;
    margin-top: -9px;
  }
  .inner-space {
    padding-top: 50px;
  }
  .col-2 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .input-box {
    padding: 0 0 35px 40px;
  }
  .input-box h4 .number {
    left: -40px;
  }
  .footer {
    text-align: center;
  }
  .footer .footer-logo {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  .input-box.inline .input-row {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 40px;
  }
  .input-box.inline .input-row:last-child {
    margin-bottom: 0;
  }
  .cz-field .column-3 {
    width: 100% !important;
  }
}
@media screen and (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  input, select, textarea {
    margin-bottom: 20px;
  }
  .col-xs-full {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .header {
    padding: 15px 0;
  }
  .header .logo {
    max-width: 150px;
  }
  .page-content {
    padding: 30px 0;
  }
  h1.sec-heading {
    font-size: 36px;
    margin-bottom: 25px;
  }
  h2.sec-heading {
    font-size: 24px;
    margin-bottom: 20px;
  }
  p {
    margin-bottom: 20px;
  }
  .screener-form {
    padding: 10px 10px 0 0;
  }
  .input-box {
    padding: 0 0 30px 25px;
  }
  .input-box h4 .number {
    left: -25px;
  }
  .input-box > h4 {
    margin-bottom: 15px;
  }
  .step-row .input-box {
    padding-left: 10px;
  }
  .step-form button {
    padding: 17px 25px;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
