/**
 * @tableofcontents
 *
 * a. Global
 * b. Navigation MainPage
 * c. Loader
 * 1. Banner
 * 2. About Covid-19
 * 3. Partners Covid-19
 * 4. Footer Mainpage
 * 5. Tools Page
 * 5a. Tools Page Header
 * 5b. Tools Page Discount Cards
 * 5c. Tools Page Footer
 * 6. Form Submission Page
 * 7. Congrats Page
 */
/* @section a. Global */
.cwGlbStripLines {
  height: 9px;
  text-align: center;
  position: relative;
  width: 125px;
  margin: 0 auto;
}

.cwGlbStripLines::before, .cwGlbStripLines::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  border-radius: 20px;
}

.cwGlbStripLines::before {
  width: 85px;
  background-color: #042276;
  margin-right: 5px;
  left: 0;
}

.cwGlbStripLines::after {
  width: 30px;
  background-color: #39dcb1;
  right: 0;
}

.covid19Cta {
  background: #2f39bf;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  outline: none !important;
  text-decoration: none !important;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #2f39bf;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.covid19Cta:hover {
  -webkit-box-shadow: 0 7px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 7px 12px rgba(0, 0, 0, 0.3);
  background-color: #4852d6;
  border-color: #4852d6;
}

a {
  display: inline-block;
  text-decoration: none !important;
}

* {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#cw-footer {
  display: none;
}

/* @section b. Navigation MainPage */
.covid19Nav .ppc-nav {
  width: 70%;
  margin: 6px 10px 0;
  text-align: center;
}

.covid19Nav .ppc-nav li {
  float: none;
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px;
}

/* @Section c. Loader */
.mainLoaderWrap {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 999999;
  overflow: hidden;
}

.mainLoaderWrap .searchLoaderBox {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: auto;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.mainLoaderWrap .searchLoader:before {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -18px;
  left: 50%;
  margin-left: -18px;
  border-radius: 50%;
  border-width: 2px 1px;
  border-style: solid;
  border-color: #2f39bf #39dcb1;
  -webkit-animation: spin 3s infinite;
  animation: spin 3s infinite;
}

.mainLoaderWrap .searchLoader:after {
  content: "";
  position: absolute;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 6px;
  height: 6px;
  top: 50%;
  margin-top: 3px;
  left: 50%;
  margin-left: 3px;
  border-radius: 50%;
  background-color: #2f39bf;
  -webkit-animation: pulse 3s infinite;
          animation: pulse 3s infinite;
}

.mainLoaderWrap.stop {
  opacity: 0;
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(1080deg);
    transform: rotate(1080deg);
  }
}

@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* @section 1. Banner */
.cw_covid19BnrSec {
  padding: 160px 0 180px;
  background: url(../../img/landing/covid19-bnr-dotted.png) no-repeat center center #042276;
  position: relative;
}

.cw_covid19BnrSec::before, .cw_covid19BnrSec::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../../img/landing/covid19-bnr-dotted.png) no-repeat -10% 70%;
}

.cw_covid19BnrSec::before {
  background-position: 110% -20%;
}

.cw_covid19BnrSec .txtWrap {
  position: relative;
  z-index: 1;
}

.cw_covid19BnrSec .txtWrap h1 {
  color: #ffffff;
  font-size: 56px;
  font-weight: 700;
  margin: 0 0 15px;
}

.cw_covid19BnrSec .txtWrap p {
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
}

.cw_covid19BnrSec .txtWrap .covid19Cta {
  margin-top: 30px;
  border-color: #fff;
  background-color: #fff;
  color: #192072 !important;
}

.cw_covid19BnrSec .cwGlbStripLines {
  margin: 45px auto;
}

.cw_covid19BnrSec .cwGlbStripLines::before {
  background-color: #fff;
}

.cw_covid19BnrSec .socialShareWrap {
  padding: 0;
  margin: 0;
  list-style: none;
  vertical-align: middle;
  position: fixed;
  top: 30%;
  left: 0;
  z-index: 99;
}

.cw_covid19BnrSec .socialShareWrap li.fbShare a {
  background-color: #4267b2;
}

.cw_covid19BnrSec .socialShareWrap li.twtShare a {
  background-color: #1da1f2;
}

.cw_covid19BnrSec .socialShareWrap li.lkdinShare a {
  background-color: #2867b2;
}

.cw_covid19BnrSec .socialShareWrap li a {
  text-align: center;
  width: 50px;
  height: 50px;
}

.cw_covid19BnrSec .socialShareWrap li a i {
  font-size: 22px;
  color: #fff;
  line-height: 50px;
}

.cw_covid19BnrSec .socialShareWrap li a:hover {
  width: 70px;
}

/* @Section 2. About Covid-19 */
.aboutCwCovid19Sec {
  background: #f8f8f8;
  padding: 0 0 80px;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap {
  max-width: 900px;
  margin: 0 auto;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap img {
  margin: -140px auto 50px;
  position: relative;
  width: 650px;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap h2 {
  color: #0a1e43;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap p {
  color: #42526e;
  font-size: 20px;
  line-height: 32px;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap .cwGlbStripLines {
  margin: 35px auto;
}

.aboutCwCovid19Sec .aboutCwCovid19wrap .covid19Cta {
  margin-top: 35px;
}

/* @Section 3. Partners Covid-19 */
.covid19DiscountPartnersSec {
  background-color: #fff;
  padding: 100px 0;
  text-align: center;
}

.covid19DiscountPartnersSec h2 {
  color: #0a1e43;
  font-size: 36px;
  font-weight: 700;
}

.covid19DiscountPartnersSec .cwGlbStripLines {
  margin: 35px auto 20px;
}

.covid19DiscountPartnersSec .covid19DiscountPartners {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.covid19DiscountPartnersSec .covid19DiscountPartners img {
  display: inline-block;
  vertical-align: middle;
  max-height: 30px;
  margin: 30px 10px 0;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.covid19DiscountPartnersSec .covid19DiscountPartners img:hover {
  -webkit-filter: none;
          filter: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.covid19DiscountPartnersSec .covid19DiscountPartners + a.covid19Cta {
  margin-top: 50px;
}

.modal-open {
  padding: 0 !important;
}

.becomePartnerModal {
  -webkit-transform: none;
          transform: none;
  -webkit-transition: none;
  transition: none;
  margin: auto;
}

.becomePartnerModal.in {
  width: 100%;
  height: 100%;
}

.becomePartnerModal.modal {
  text-align: center;
  padding: 0 !important;
}

.becomePartnerModal.modal:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.becomePartnerModal .modal-dialog {
  display: inline-block;
  vertical-align: middle;
}

.becomePartnerModal .modal-backdrop.in {
  background-color: rgba(0, 0, 0, 0.9);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.becomePartnerModal .modal-dialog {
  width: auto;
  max-width: 1100px;
  height: auto;
  min-height: 300px;
  min-width: 300px;
  background-color: var(--bg-box);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  overflow: hidden;
}

.becomePartnerModal .modal-body {
  padding: 40px 25px;
  text-align: left;
}

.becomePartnerModal .modal-body input:not([type="submit"]),
.becomePartnerModal .modal-body textarea {
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid rgba(66, 82, 110, 0.39);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
  resize: none;
}

.becomePartnerModal .modal-body input:not([type="submit"]):placeholder-shown, .becomePartnerModal .modal-body input:not([type="submit"])::-webkit-input-placeholder, .becomePartnerModal .modal-body input:not([type="submit"])::-webkit-input-placeholder, .becomePartnerModal .modal-body input:not([type="submit"]):-moz-placeholder, .becomePartnerModal .modal-body input:not([type="submit"])::-moz-placeholder,
.becomePartnerModal .modal-body textarea:placeholder-shown,
.becomePartnerModal .modal-body textarea::-webkit-input-placeholder,
.becomePartnerModal .modal-body textarea::-webkit-input-placeholder,
.becomePartnerModal .modal-body textarea:-moz-placeholder,
.becomePartnerModal .modal-body textarea::-moz-placeholder {
  color: rgba(66, 82, 110, 0.4);
}

.becomePartnerModal .modal-body input:not([type="submit"]):placeholder-shown, .becomePartnerModal .modal-body input:not([type="submit"])::placeholder, .becomePartnerModal .modal-body input:not([type="submit"])::-webkit-input-placeholder, .becomePartnerModal .modal-body input:not([type="submit"]):-moz-placeholder, .becomePartnerModal .modal-body input:not([type="submit"])::-moz-placeholder,
.becomePartnerModal .modal-body textarea:placeholder-shown,
.becomePartnerModal .modal-body textarea::placeholder,
.becomePartnerModal .modal-body textarea::-webkit-input-placeholder,
.becomePartnerModal .modal-body textarea:-moz-placeholder,
.becomePartnerModal .modal-body textarea::-moz-placeholder {
  color: rgba(66, 82, 110, 0.4);
}

.becomePartnerModal .modal-body span.wpcf7-not-valid-tip {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.becomePartnerModal .modal-header {
  position: relative;
}

.becomePartnerModal .modal-header h4 {
  font-size: 28px;
  color: #000;
}

.becomePartnerModal .modal-content {
  background-color: #000;
}

.becomePartnerModal .modal-content {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) !important;
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.4) !important;
  border: 0 !important;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

.becomePartnerModal.opacity-animate3 {
  -webkit-animation: opt-animation3 1s;
          animation: opt-animation3 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

@-webkit-keyframes opt-animation3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes opt-animation3 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/* @Section 4. Footer Mainpage */
.cwCovid19_footer {
  padding: 40px 0;
  background-color: #fff;
}

.cwCovid19_footer .footerLinksWrap {
  padding-bottom: 30px;
}

.cwCovid19_footer .footerLinksWrap ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.cwCovid19_footer .footerLinksWrap ul li {
  display: inline-block;
}

.cwCovid19_footer .footerLinksWrap ul li a {
  padding: 5px;
  margin: 0 5px;
  color: #0e134f;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none !important;
}

.cwCovid19_footer .footerLinksWrap ul li a:hover {
  color: #2f39bf;
}

.cwCovid19_footer .copyrightWrap {
  color: #000000;
  font-size: 16px;
}

/* @Section 5. Tools Page */
.sections {
  display: none;
}

#step1 {
  display: block;
}

/* @Section 5a. Tools Page Header */
.toolsPageNavSec {
  padding: 12px 0;
  background: #2e39bf;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.toolsPageNavSec a.hdrCwLogo {
  background: url(../../img/sprite-hdr-logos.png) no-repeat center top transparent;
  display: inline-block;
  width: 183px;
  height: 33px;
}

.toolsPageNavSec a.backToHome {
  float: left;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  margin-top: 10px;
}

.toolsPageNavSec a.backToHome::before {
  position: absolute;
  content: "";
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #fff;
}

/* @Section 5b. Tools Page Discount Cards */
.discountToolsSec {
  padding: 100px 0;
}

.discountToolsSec .topTxt h2 {
  color: #19232d;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 15px;
}

.discountToolsSec .topTxt p {
  color: #606569;
  font-size: 16px;
}

.discountToolsSec .discountToolsWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.discountToolsSec .discountToolsWrap .discountToolBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: calc(33% - 20px);
  max-width: 32%;
  margin: 30px 10px 0;
  background: #ffffff;
  -webkit-box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.08);
          box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.discountToolsSec .discountToolsWrap .discountToolBox .exclusive {
  background-color: #ffa944;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  position: absolute;
  top: -10px;
  right: 20px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.discountToolsSec .discountToolsWrap .discountToolBox img {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  height: 25px;
  margin-bottom: 15px;
}

.discountToolsSec .discountToolsWrap .discountToolBox p {
  color: #42526e;
  font-size: 14px;
  margin: 0 0 20px;
  min-height: 60px;
}

.discountToolsSec .discountToolsWrap .discountToolBox .discountsBox {
  color: #0a1e43;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.discountToolsSec .discountToolsWrap .discountToolBox .discountsBox b {
  font-size: inherit;
  color: inherit;
  font-weight: 700;
}

.discountToolsSec .discountToolsWrap .discountToolBox .selectionCta {
  border: 2px solid #2f39bf;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  display: inline-block;
  padding: 8px 20px;
  min-width: 120px;
  color: #0e134f;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
}

.discountToolsSec .discountToolsWrap .discountToolBox .selectionCta:hover {
  background-color: #2f39bf;
  color: #fff;
  cursor: pointer;
}

.discountToolsSec .discountToolsWrap .discountToolBox:hover {
  -webkit-box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.15);
}

.discountToolsSec .discountToolsWrap .discountToolBox.selected {
  -webkit-box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.15);
          box-shadow: 1px 6px 15px rgba(0, 0, 0, 0.15);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.discountToolsSec .discountToolsWrap .discountToolBox.selected .selectionCta {
  background-color: #2f39bf;
  color: #fff;
  cursor: pointer;
}

/* @Section 5c. Tools Page Footer */
.toolsPageFooter {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  background: #ffffff;
  border-top: 1px solid #c8c8c8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  z-index: 99;
  height: 65px;
  overflow: hidden;
}

.toolsPageFooter .goToNext {
  float: right;
  padding: 10px 15px;
  min-width: 100px;
  position: relative;
  cursor: pointer;
}

.toolsPageFooter .goToNext.disabled {
  z-index: -1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.toolsPageFooter .goToNext.disabled::before {
  position: absolute;
  left: -5px;
  right: -5px;
  top: -1px;
  bottom: -1px;
  content: "";
  z-index: 9;
  background: rgba(255, 255, 255, 0.7);
}

.toolsPageFooter .moreTools {
  color: #42526e;
  font-size: 14px;
  line-height: 37px;
}

.toolsPageFooter .goToBack {
  font-size: 16px;
  font-weight: 500;
  color: #606569;
  display: inline-block;
  line-height: 45px;
}

.toolsPageFooter .goToBack i {
  color: #606569;
  font-size: 16px;
}

.selectedToolsList {
  padding: 0;
  margin: 0;
  list-style: none;
  float: left;
  white-space: nowrap;
  overflow: hidden;
}

.selectedToolsList li {
  background: rgba(242, 242, 242, 0.7);
  border-radius: 6px;
  padding: 8px;
  display: inline-block;
  margin: 0 8px 0 0;
  vertical-align: middle;
}

.selectedToolsList li img {
  max-height: 16px;
  margin-right: 5px;
  float: left;
}

.selectedToolsList li .cancelItem {
  font-size: 24px;
  line-height: 16px;
  height: 16px;
  background-color: transparent;
  border: none !important;
  outline: none !important;
  color: #000000;
  opacity: 0.4;
  padding: 0;
  margin: 0;
  float: right;
}

.selectedToolsList li .cancelItem:hover {
  opacity: 0.8;
}

/* @Section 6. Form Submission Page */
.covid19ToolsFormSec {
  padding: 100px 0;
}

.covid19ToolsFormSec .topTxt h2 {
  font-size: 36px;
  color: #19232d;
  font-weight: 700;
}

.covid19ToolsFormSec .formWrap {
  margin-top: 80px;
}

.covid19ToolsFormSec .formWrap input:not([type="checkbox"]),
.covid19ToolsFormSec .formWrap textarea,
.covid19ToolsFormSec .formWrap select {
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid rgba(66, 82, 110, 0.39);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px !important;
  width: 100%;
  margin-bottom: 20px;
  resize: none;
  min-height: 48px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.covid19ToolsFormSec .formWrap input:not([type="checkbox"]):placeholder-shown, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::-webkit-input-placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::-webkit-input-placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"]):-moz-placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::-moz-placeholder,
.covid19ToolsFormSec .formWrap textarea:placeholder-shown,
.covid19ToolsFormSec .formWrap textarea::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap textarea::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap textarea:-moz-placeholder,
.covid19ToolsFormSec .formWrap textarea::-moz-placeholder,
.covid19ToolsFormSec .formWrap select:placeholder-shown,
.covid19ToolsFormSec .formWrap select::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap select::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap select:-moz-placeholder,
.covid19ToolsFormSec .formWrap select::-moz-placeholder {
  color: rgba(66, 82, 110, 0.4);
}

.covid19ToolsFormSec .formWrap input:not([type="checkbox"]):placeholder-shown, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::-webkit-input-placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"]):-moz-placeholder, .covid19ToolsFormSec .formWrap input:not([type="checkbox"])::-moz-placeholder,
.covid19ToolsFormSec .formWrap textarea:placeholder-shown,
.covid19ToolsFormSec .formWrap textarea::placeholder,
.covid19ToolsFormSec .formWrap textarea::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap textarea:-moz-placeholder,
.covid19ToolsFormSec .formWrap textarea::-moz-placeholder,
.covid19ToolsFormSec .formWrap select:placeholder-shown,
.covid19ToolsFormSec .formWrap select::placeholder,
.covid19ToolsFormSec .formWrap select::-webkit-input-placeholder,
.covid19ToolsFormSec .formWrap select:-moz-placeholder,
.covid19ToolsFormSec .formWrap select::-moz-placeholder {
  color: rgba(66, 82, 110, 0.4);
}

.covid19ToolsFormSec .formWrap label {
  display: block;
  font-size: 14px;
  color: #19232d;
  margin-bottom: 50px;
}

.covid19ToolsFormSec .formWrap label a {
  color: #2e39bf !important;
  display: inline-block;
  font-size: inherit;
  font-weight: 500;
}

.covid19ToolsFormSec .formWrap label input[type="checkbox"] {
  top: -1px;
  position: relative;
  margin-right: 5px;
}

.covid19ToolsFormSec .formWrap .formToolsList {
  padding: 6px 20px 2px;
  background: #ffffff;
  border: 1px solid rgba(66, 82, 110, 0.39);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 20px;
  min-height: 47px;
}

.covid19ToolsFormSec .formWrap .formToolsList .selectedToolsList {
  float: none;
  white-space: pre-wrap;
}

.covid19ToolsFormSec .formWrap .formToolsList .selectedToolsList li {
  margin: 0 8px 5px 0;
}

.covid19ToolsFormSec .formWrap .error {
  position: absolute;
  top: -44px;
  left: 30px;
  right: 30px;
  padding: 4px 12px;
  text-align: center;
  color: red;
  border: 1px solid red;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
}

/* @Section 7. Congrats Page */
.covid19CongratSec {
  padding: 100px 0;
}

.covid19CongratSec .topTxt h2 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000000;
}

.covid19CongratSec .topTxt .submittedToolsList {
  padding: 0;
  margin: 0 0 60px;
  list-style: none;
  min-height: 1px;
  float: none;
  white-space: pre-wrap;
}

.covid19CongratSec .topTxt .submittedToolsList .cancelItem {
  display: none;
}

.covid19CongratSec .topTxt .submittedToolsList li {
  display: inline-block;
  background: #f2f2f2;
  border-radius: 6px;
  padding: 8px;
  margin: 10px 10px 0 0;
}

.covid19CongratSec .topTxt .submittedToolsList li img {
  margin: 0;
  max-height: 15px;
}

.covid19CongratSec .topTxt img {
  margin: 0 auto 10px;
}

.covid19CongratSec .topTxt p {
  font-weight: 700;
  color: #000000;
  font-size: 14px;
}

.covid19CongratSec .topTxt p.saveAmountMessage {
  font-size: 24px;
  font-weight: 400;
}

.covid19CongratSec .topTxt p.saveAmountMessage b {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
}

.covid19CongratSec .topTxt .cwGlbStripLines {
  margin: 40px auto;
}

.covid19CongratSec .socialShareWrap {
  margin: 70px 0 0;
}

.covid19CongratSec .socialShareWrap p {
  color: #000000;
  font-size: 16px;
  font-weight: 400;
}

.covid19CongratSec .socialShareWrap ul {
  padding: 0;
  margin: 20px auto 50px;
  list-style: none;
  vertical-align: middle;
}

.covid19CongratSec .socialShareWrap ul li {
  margin: 0 6px;
  display: inline-block;
  vertical-align: middle;
}

.covid19CongratSec .socialShareWrap ul li a {
  padding: 6px;
}

.covid19CongratSec .socialShareWrap ul li a i {
  font-size: 22px;
  color: #000000;
}

.covid19CongratSec .socialShareWrap .backToHome {
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline !important;
}

/* @reset styling for small screen size */
@media (max-width: 1200px) {
  .becomePartnerModal .modal-dialog {
    max-width: 900px;
  }
}

@media (max-width: 992px) {
  .cw_covid19BnrSec {
    padding-top: 100px;
  }
  .cw_covid19BnrSec .txtWrap h1 {
    font-size: 28px;
  }
  .cw_covid19BnrSec .txtWrap p {
    font-size: 16px;
  }
  .cw_covid19BnrSec .cwGlbStripLines {
    margin: 25px auto;
  }
  .aboutCwCovid19Sec .aboutCwCovid19wrap h2,
  .covid19DiscountPartnersSec h2,
  .discountToolsSec .topTxt h2,
  .covid19ToolsFormSec .topTxt h2,
  .covid19CongratSec .topTxt h2 {
    font-size: 28px;
  }
  .aboutCwCovid19Sec .aboutCwCovid19wrap p {
    font-size: 16px;
  }
  .aboutCwCovid19Sec .aboutCwCovid19wrap .cwGlbStripLines {
    margin: 20px auto;
  }
  .covid19DiscountPartnersSec {
    padding: 40px 0;
  }
  .becomePartnerModal .modal-dialog {
    max-width: 700px;
  }
  .cwCovid19_footer {
    padding: 20px 0;
  }
  .discountToolsSec .discountToolsWrap .discountToolBox {
    min-width: calc(50% - 20px);
  }
  .covid19ToolsFormSec {
    padding: 60px 0 100px;
  }
  .covid19ToolsFormSec .formWrap {
    margin-top: 40px;
  }
  .covid19CongratSec {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .discountToolsSec {
    padding: 60px 0 100px;
  }
  .toolsPageNavSec {
    position: absolute;
  }
  .becomePartnerModal .modal-dialog {
    max-width: 300px;
    margin: 50px auto;
  }
  .covid19ToolsFormSec .formWrap .error {
    font-size: 13px;
    left: 10px;
    right: 10px;
  }
  .covid19CongratSec .topTxt .submittedToolsList {
    margin-bottom: 40px;
  }
  .covid19CongratSec .topTxt .cwGlbStripLines {
    margin: 30px auto;
  }
  .covid19CongratSec .topTxt p.saveAmountMessage {
    font-size: 20px;
  }
  .covid19CongratSec .socialShareWrap {
    margin: 40px 0 0;
  }
}

@media (max-width: 500px) {
  .discountToolsSec .discountToolsWrap {
    display: block;
    margin: 0;
  }
  .discountToolsSec .discountToolsWrap .discountToolBox {
    margin: 20px 0 0;
  }
  .toolsPageFooter {
    height: auto;
    text-align: center;
  }
  .toolsPageFooter .goToNext {
    float: none;
    margin: 10px 0 0 5px;
  }
  .selectedToolsList {
    float: none;
  }
  .toolsPageFooter .moreTools {
    display: block;
  }
  .discountToolsSec .discountToolsWrap .discountToolBox {
    min-width: auto;
    width: 100%;
    max-width: 100%;
  }
  .covidFormSubmit {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}
/*# sourceMappingURL=covid19_discounts.css.map */