header:has(nav:not(.black)) ~ main {
  margin-top: -85px;
  padding-top: 85px !important;
  background-image: url('../_img/shape_02_grey.png');
  background-repeat: no-repeat;
  background-position: 0 0 ;
  background-size: 45%;
}
main {
  padding-left: 15px !important;
  padding-right: 15px;
  padding-bottom: 2rem;
}
main>*:first-child {
  margin-top:3rem;
}
@media only screen and (max-width: 414px) {
  main {
    padding-bottom: 1rem;
  }
  main>*:first-child {
    margin-top:2rem;
  }
  header:has(nav.extended) ~ main>*:first-child {
    margin-top: 5rem;
  }
}
@media only screen and (min-width: 415px) and (max-width: 990px) {
  header:has(nav.extended) ~ main>*:first-child {
    margin-top: 6rem;
  }
}

/* TOASTS */
.toast.rounded {
  border-radius: 10px;
}
.toast {
  background-color: #E0B252;
  box-shadow:none;
}
#toast-container {
  top: 85px !important;
}

/* MY CUSTOMERS */
.text-circle {
  border-radius: 50%;
  text-align: center;
  width: 50px;
  height: 50px;
  border: 3px solid;
  font-size: 32px;
  margin: 0 auto 1rem;
}
@media only screen and (max-width: 600px) {
  .text-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px; /* Set a fixed width */
    height: 30px; /* Set a fixed height */
    border: 2px solid;
    border-radius: 50%; /* Make it a circle */
    font-size: 16px;
  }
}
@media only screen and (min-width: 600px) {
  #cust_list_subheader {
    margin-top:4rem;
  }
  #cust_list_claim_inst {
    margin-bottom: 4rem;
  }
}

/* CUSTOMER REGISTRATION */
.row.flex:has(.info_box) {
  column-gap:3rem;
  padding: 0.75rem;
}
@media only screen and (max-width: 1110px) {
  .row.flex:has(>.info_box) {
    column-gap:1rem;
    row-gap: 2rem;
  }
}

.info_box {
  border: 2px solid #c4151c; 
  border-radius: 10px; 
  padding: 1rem 2rem !important;
}
.info_box:hover {
  transform: scale(1.01);
  box-shadow: 3px 3px 6px -1px #e4e2e2;
}
@media only screen and (min-width: 600px) {
  .info_box {
    width: 48% !important;
  }
}
@media (max-width: 466px) {
	.cust_modal_btns {
		width: 100%;
	}
	.cust_modal_btns:nth-child(2) {
		margin-top: 1rem;
	}
}

/* RESOURCE DOCS */
@media only screen and (max-width: 993px) {
  .card .card-content.care_maintenance_card {
    padding: 12px 0px;
  }
}
a.btn.red.darken-3.white-text:hover {
  background-color: #cf4349 !important;
  transition: .3s;
}
a.btn.black.white-text:hover, i.btn-small.black:hover {
  background-color: #333 !important;
  color: #fff !important;
  transition: .3s;
}
.dropdown-content li > a, .dropdown-content li > span {
  color: #000;
}

/* MODAL */
.modal {
  border-radius: 10px;
}
.modal h4 {
  font-size: 2rem;
}
@media only screen and (max-width: 500px) {
  .modal .modal-footer {
    text-align: center !important;
  }
  .modal {
    width: 90%;
  }
}

/* STICKY FOOTER */
body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
main {
  flex: 1 0 auto;
}

h3 {
  font-weight: 600;
}

/* NAV HEIGHT */
@media only screen and (max-width: 1024px) {
  nav, nav a.sidenav-trigger {
    height: 60px;
    line-height:60px;
    transition: .3s;
  }
  .navbar-fixed {
    height: 60px;
  }
}
@media only screen and (min-width: 1025px) {
  nav.stuck {
    height: 60px;
    line-height:60px;
    transition: .3s;
  }
  nav.stuck ul.right {
    height: 60px;
    transition: .3s;
  }
  .navbar-fixed:not(.header-banner)>nav:not(.stuck) { 
    height: 85px;
    line-height: 85px;
    transition: .3s;
  }
  nav:not(.stuck) ul.right {
    height: 85px;
    transition: .3s;
  }
  .navbar-fixed:not(.header-banner):has(nav:not(.extended)) {
    height:  85px !important;
  }
  .navbar-fixed:has(> nav.extended:not(.stuck))  {
    height: 133px !important;
    transition: .3s;
  }
  .navbar-fixed:has(> nav.extended.stuck)  {
    height: 108px !important;
    transition: .3s;
  }
}
.navbar-fixed.header-banner, .header-banner * { /* header banner on top of header */
  height: 40px;
  line-height: 40px;
}
.navbar-fixed.header-banner p {
  margin: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 300;
}

/* NAV LOGO */
.nav-wrapper a.logo-container {
  display: inline-block;
  vertical-align: middle;
}
nav.black .nav-wrapper #logo {
	width: 222px;
	height: 26px;
	background-image: url('../_img/exoshield_white_v2.png');
	background-size: 210px 25px;
  background-repeat: no-repeat;
}
nav:not(.black) .nav-wrapper #logo {
	width: 222px;
	height: 26px;
	background-image: url('../_img/logo_black.png');
	background-size: 210px 25px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  nav .nav-wrapper #logo {
    width: 180px !important;
	  height: 21px !important;
    background-size: 180px 21px !important;
  }
}

/* NAV SHADOW */
nav.transparent {
  box-shadow: none;
  transition: .3s;
}
nav:not(.transparent) {
  box-shadow: 0 1px 8px rgba(0,0,0,0.1);
  transition: .3s;
}

/* NAV LINK COLORS */
nav:not(.black) .nav-wrapper li a {
  color: #000;
  transition: color .3s;
}
nav:not(.black) ul a:hover {
  background-color: transparent;
  color: rgba(51,51,51,0.6);
  transition: color .3s;
}
nav ul a:has(>img) {
  opacity: 1;
  transition: opacity .3s ease;
}
nav ul a:has(>img):hover {
  opacity: 0.6;
  transition: all .3s ease;
}
nav.black ul a:hover {
  background-color: transparent;
  color: rgba(255,255,255,0.8);
  transition: color .3s;
}

/* NAVBAR */
nav .nav-wrapper {
  margin: 0 auto;
  max-width: 100%;
  width: clamp(1200px, 95%, 100%);
}
nav ul:not(.browser-default) {
  min-width: 220px;
}
nav .dropdown-trigger {
  outline: 0; /* get rid of blue outline when clicking */
  cursor: pointer;
}
nav .dropdown-content {
  background-color: #fff;
  min-width: 150px;
}
nav .dropdown-content li>a, nav .dropdown-content li>span {
  color: #000;
  background-color: #FFF;
  font-size:14px;
}
nav .dropdown-content li>a:hover {
  color: #c4151c;
  background-color: #FFF;
  transition: color .3s;
}

/* NAV DROPDOWN SPACING */
nav .dropdown-content li:first-child > a {
  padding: 20px 20px 8px 20px;
}
nav .dropdown-content li:not(:first-child) > a {
  padding: 8px 20px;
}
nav .dropdown-content li:last-child > a {
  padding: 8px 20px 20px 20px;
}
nav .dropdown-content li {
  min-height: 0;
}

/* EXTENDED NAV TABS */
.nav-content .tabs.tabs-transparent {
  background-color: #222;
}
nav .tabs .tab a.active {
  background-color:#888;
}

/* MOBILE SIDENAV */
.sidenav {
  text-transform: uppercase;
  color: black;
}
.sidenav li > a {
  padding: 0px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.105);
}
.sidenav .collapsible>.active .collapsible-header .chevron {
  transform: rotate(90deg)
}
.sidenav li:not(.active)>.collapsible-header:hover {
  background-color: #fff;
}
.sidenav .collapsible>li.active:hover, .sidenav li.active>a.collapsible-header {
  background-color: #f7f7f7;
}
.sidenav .collapsible-header, .sidenav .collapsible-body ul a {
  padding: 0px 20px 5px;
  border-bottom: 1px solid rgba(0,0,0,0.105);
  text-transform: uppercase;
  color: #000;
  height: 50px;
  line-height: 50px;
  transition: color .3s ease;
}
.sidenav .collapsible .collapsible-header .chevron {
  color: #000;
  float: right;
  height: 24px;
  width: 24px;
  line-height: 24px;
  margin: 15px 0 0 0;
  transition: transform .2s
}
.sidenav .collapsible .collapsible-header {
  font-size: 13px;
  font-weight: 500;
}
.sidenav .collapsible .collapsible-body li>a {
  font-weight: 300;
}
.sidenav .collapsible-body li>a:hover, .sidenav .collapsible-body li>a.active {
  background-color: #fff;
  color: #c4151c;
  transition: color .3s ease;
}
.sidenav li > a {
  font-size: 13px;
}

/* FOOTER */
footer {
  font-size: 14px;
}
.main-footer.container {
  padding-bottom:0px !important; 
  margin-bottom: 0 !important;
}
footer .main-footer .row .col {
  margin-bottom: 30px;
  padding: 0px 15px;
}
@media only screen and (min-width:994px) {
  footer .main-footer .row .col.l3 {
    border-right: 0.5px solid #333;
  }
}
footer .footer-socials a {
  padding: 6px;
  font-size: 18px;
}
footer .main-footer .row .col.l3 :first-child{
  margin-top: 0rem;
}
.row.flex { /* make columns equal height for borders to look the same */
  display: flex;
  flex-wrap: wrap;
}

footer .footer-socials>div {
  margin-top: 2rem;
}
@media only screen and (max-width:414px) {
  footer .footer-socials {
    text-align: center;
  }
}
footer h5 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
footer a {
  color: white;
  transition: all .3s ease;
}
footer .footer-list li:not(:last-child) {
  margin-bottom: 15px;
}
footer ul.footer-list {
  margin-bottom:0;
}
footer a:hover, footer li:hover {
  color: #999;
  transition: all .3s ease;
}
footer>.container {
  padding-top: 30px;
}
.page-footer .container {
  box-shadow: none;
  font-weight: 300;
}
.page-footer .row {
  margin:0rem;
}
.page-footer .footer-copyright {
  height: 77px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px 0px;
  color: white;
}
.footer-copyright .container {
  padding: 0;
}
@media only screen and (max-width:600px) {
  .page-footer .footer-copyright {
    height:107px;
  }
  .footer-copyright .col {
    float:none;
    text-align: center;
  }
  .footer-copyright .col:first-of-type {
    margin-bottom: 1rem;
  }
}

/* FIX HEADER WEIGHTS */
.transparent_header h3 {
  margin-bottom: 2rem;
}

main h3 {
  margin-top: 1rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media only screen and (max-width: 414px) {
  .container.transparent_header {
    padding-bottom: 0px;
  }
  main h3 {
    font-size: 28px;
  }
  .container.transparent_header>h4 {
    font-size: 18px;
  }
  .container.transparent_container:has(>.divider) {
    margin-bottom: 0;
  }
}
.claim_type_header {
  max-width: 1200px;
  width: 100%;
  margin: auto auto 3rem;
}

@media only screen and (min-width: 767px) {
  .transparent_header div:not(.claim_type_header)>h3, main h3 {
    font-size: 4rem;
  }
  h3.claim_type_header {
    font-size: 3rem;
  }
  main h3 {
    margin-bottom: 4rem;
  }
  .claim_file_container {
    margin-top: -2rem;
  }
}
.claim_details h5, 
.container h5, .container h4 {
  font-weight: 500;
}

/* FIX CONTAINER STYLING */
.container {
  margin-bottom: 25px;
}
.card-content {
  border-radius: 10px 10px 0px 0px !important;
}
.faq-tabs .tab a {
  color: #888;
}
.faq-tabs.tabs .indicator {
  height:0px;
}
.faq-tabs .tab a.active, .faq-tabs .tab a:hover {
  background-color: #c4151c;
}
/* selector for .card-content that has .fullpage_faqs as a child */
.card-content:has(.fullpage_faqs) {
  border-radius: 0px 0px 10px 10px !important;
  border-top: 1px solid #e8e8e8;
}
.card-action {
  border-radius: 0px 0px 10px 10px !important;
}
.under-header {
  margin-top: -2rem;
  margin-bottom: 1rem;
}
.over-footer {
  margin-top: 3rem;
  margin-bottom: -2rem;
}
.full-width-container {
  padding-top: 2.5rem;
  padding-bottom: 25px;
  margin-right: -15px;
	margin-left: -15px;
}
.full-width-container.container-width-content .row {
  max-width: 1200px;
  width: 100% !important;
}
@media only screen and (max-width:601px) {
  .full-width-container.container-width-content .row {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 15px;
    padding-right: 15px;
    width: auto !important;
  }
}
.container {
  max-width: 1200px;
  width: 100% !important;
}
.container, .card {
  border-radius: 10px;
}
.white_card {
  border-radius: 10px;
}
.transparent_card {
  box-shadow: none;
  background-color: transparent;
}
@media only screen and (max-width: 993px) {
  .transparent_card h4 {
    font-size: 26px !important;
  }
}
.transparent_card p {
  font-size: 16px;
  font-weight: 300;
}
.container ul.collapsible,
.full-width-container ul.collapsible {
  border-radius: 10px;
}
.container ul.collapsible li:first-of-type div.collapsible-header, 
.full-width-container ul.collapsible li:first-of-type div.collapsible-header {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}
.container ul.collapsible li:last-of-type:not(.active) div.collapsible-header, 
.full-width-container ul.collapsible li:last-of-type:not(.active) div.collapsible-header {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  transition: 1s ease;
}
.container ul.collapsible li.active:last-of-type div.collapsible-body, 
.full-width-container ul.collapsible li.active:last-of-type div.collapsible-body {
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  transition: border-radius 1s ease;
}

/* BUTTON STYLES */
.view_as input[type=text]:not(browser-default) {
  color: #fff;
}
.view_as .select-wrapper .caret {
  fill: #fff;
}
button, .btn, .waves-effect input[type="button"], .waves-effect input[type="reset"], .waves-effect input[type="submit"] {
  font-weight: 500;
}
.btn, .btn-large, .btn-flat {
  border: none;
  border-radius: 10px;
  box-shadow: none;
  letter-spacing: 2px;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  height: auto;
}
.btn-small {
  border: none;
  border-radius: 10px;
  box-shadow: none;
  letter-spacing: 2px;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  height: auto;
}
.modal-footer button {
  padding: 12px 25px !important;
}
.file-field .btn {
  line-height: 20px;
  height: auto;
}

.btn-floating {
  background-color: rgba(255,255,255, 0.9);
  border: none;
  border-radius: 50%;
  letter-spacing: 2px;
  font-size: 12px;
  line-height: 20px;
  height: auto;
  box-shadow: 0 0 5px rgba(0,0,0,0.17) !important;
}
.btn-floating:hover {
  background-color: rgba(255,255,255, 0.9);
}
.btn-floating i {
  color: #333;
  transition: 0.3s ease;
}
.btn-floating:hover i {
  color: #777;
  transition: 0.3s ease;
}
@media only screen and (max-width: 604px) {
  .btn-floating.btn-large {
    width:40px;
    height:40px;
  }
  .btn-floating.btn-large i {
    line-height: 40px;
  }
}
.btn:hover, .btn-large:hover, .btn-small:hover,
.btn-flat:hover, .btn-floating:hover {
  box-shadow: none;
}

/* DATATABLES STYLING */
.datatable_init th {
  border-radius: 0px !important;
}
table.datatable_init {
  width: 100% !important;
}
table.dataTable thead th, table.dataTable thead td, table.dataTable.no-footer {
  border-color: #9e9e9e !important;
}
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before {
  border: none !important;
  box-shadow: none !important;
  font-family: "Montserrat" !important;
  font-size: 18px !important;
  border-radius: 6px !important;
  left: 3px !important;
  color: #c4151c !important;
  background: none !important;
  content: '\f054' !important;
  font-family: 'Font Awesome 5 Free' !important;
  transition: transform 0.3s ease; /* Smooth rotation */
  transform: rotate(0deg); /* Default position pointing to the right */
}
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before {
  transition: transform 0.3s ease; /* Smooth rotation */
  transform: rotate(90deg); /* Rotates the chevron to point down */
}
table.dataTable>tbody>tr.child span.dtr-title {
  display: block !important;
}
button.dt-button {
  border-radius: 10px !important;
  background-color:#c4151c !important;
  border-width: 0px !important;
  box-shadow:none !important;
  color: #fff !important;
  text-transform: uppercase !important;
  transition: 0.3s !important;
  padding: 6px 10px !important;
  letter-spacing: 2px !important;
  font-size: 10px !important;
  line-height: 20px !important;
  height: auto !important;
}
button.dt-button:hover:not(.disabled) {
  background: none !important;
  background-color: #cf4349 !important;
  border-width: 0px !important;
  box-shadow: none !important;
  color: #fff !important;
  text-transform: uppercase !important;
  transition: 0.3s !important;
  letter-spacing: 2px !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #c4151c !important;
  color: #fff !important;
  border-radius: 10px !important;
  border: none !important;
  transition: background-color 0.3s !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:not(.disabled):hover {
  background: #f3989b !important;
  border-radius: 10px !important;
  border: none !important;
  transition: background-color 0.3s !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  box-shadow: none !important;
}

/* SHAPE DIVIDER */
.custom-shape-divider-top-1695741073 {
  position: absolute;
  top: 0;
  left: 0;
  width: -webkit-fill-available;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
  margin-top: -2rem;
  margin-right: -15px;
  margin-left: -15px;
}
.custom-shape-divider-top-1695741073 svg {
  position: relative;
  display: block;
  width: calc(110% + 1.3px);
  height: 352px;
  transform: rotateY(180deg);
}
.custom-shape-divider-top-1695741073 .shape-fill {
  fill: #F8F8F8;
}

/* MODAL STYLING */
.modal-footer {
  margin-bottom: 1rem !important;
  padding: 4px 24px !important;
}

@media only screen and (max-width : 992px) {
  header, main, footer {
    padding-left: 0;
  }
}
canvas {
  border-radius: 0 0 10px 10px;
}
/* Make # of partners to order N rolls charts thin */
[class*="_orders"] canvas,  [class*="order_amounts"] canvas {
  height: 90px !important;
}

/* collapsible padding on small screens */
@media only screen and (max-width: 414px) {
  .collapsible-body {
    padding: 1rem;
  }
}

/* Page Container, Title */
.transparent_header {
  background: transparent;
  padding-top: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.transparent_header p {
  font-size: 13px;
}
p.transparent_para {
  font-size: 17px;
  font-weight: 300;
}
ul.transparent_list, ol.transparent_list {
  font-size: 17px;
  font-weight: 300;
}
ul.transparent_list li {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 5px;
}
.card_instructions {
  padding-left: 0px !important;
  padding-right: 25px !important;
}
@media only screen and (max-width:600px) {
  .card_instructions {
    margin-left:1rem;
    margin-bottom:1rem;
  }
}
.card_instructions_title {
  font-size: 22px;
  line-height: 110%;
  margin: 1.0933333333rem 0 .656rem 0;
}
.card_instructions_copy {
  font-weight: 300;
  font-size: 14px;
  color: #888;
}
.transparent_header .row {
  margin: 0px;
}
.transparent_container {
  background: transparent;
  padding-top: 0rem;
  padding-bottom:0rem;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.transparent_container>.row {
  margin:0;
}
.transparent_container .row {
  margin:0;
}
.white_card {
  padding: 35px 25px !important;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.footer-copyright>.container {
  margin-bottom:0;
}
@media (max-width: 600px) {
  .container:not(.transparent_container) {
    padding-top:15px;
    padding-bottom: 15px;
  }
  .container:not(.transparent_container,.transparent_header) .row {
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Tables */
@media (max-width: 661px) {
  .table_row {
  margin-left: 10px;
  margin-right: 10px;
  }
}
#tbl_dealers td {
  vertical-align: middle;
}

/* Resources */
.transparent_container.resource_digital .card .resource_img,
.transparent_container.resource_digital .card .resource_img_logo {
  height: 400px;
  width: 50%;
  border-radius: 0;
}
.transparent_container.resource_digital .card .resource_img_mobile {
  border-radius: 0;
}
.transparent_container.resource_digital .card {
  margin: 0;
}
.transparent_container.resource_digital .show-on-medium-and-down .card-content {
  padding: 0;
}
.resource_digital .show-on-medium-and-down {
  margin-bottom: 2rem;
}
.resource_img {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 500px;
}
.resource_img_mobile {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 250px;
}
.rounded,.rounded>img {
  border-radius: 10px;
}
.resource_img_logo {
  width: 40%;
  height: 400px;
}
.resource_single_btn {
  min-width: 70%; 
  height: auto;
}
.resource_double_btn {
  min-height: 44px;
  padding: auto 30px;
  height: auto; 
  line-height: 1.5rem;
}
@media only screen and (max-width: 609px) {
  .resource_double_btn {
    margin-bottom: 1rem;
    width: 100%;
  }
}
@media only screen and (min-width: 610px) {
  .resource_double_btn {
    margin-right: 1rem;
  }
}
@media (max-width: 1200px) {
  .card-content p {
    font-size: 14px;
  }
}
.resource_img img {
  object-fit: cover;
  flex-shrink: 0;
  min-width: 100%;
  min-height: 100%
}
.card_instructions_copy_large {
  font-weight: 300;
  font-size: 16px !important;
}
.card_image_subtitle {
  margin:auto;
  text-transform: uppercase;
  color: #e2e2e2;
  font-weight: 300;
  font-size: 22px;
}
@media (max-width: 1200px) {
  .card_image_subtitle {
    font-size: 18px;
  }
  .fb_exologo {
    width:175px;
    height:20.4px;
  }
}
h4.resource_heading {
  font-weight: 600;
  font-size: 2rem;
}
h5.resource_subheading {
  font-weight: 600; 
  font-size: 1.5rem; 
  margin: 2rem 0rem 1rem;
}
.card-action a {
  font-weight: 400;
}
.card-content a.btn {
  margin-bottom: 15px;
}
.card .card-content {
  padding: 12px 24px;
}
/* SETTINGS */
.settings {
  padding-left: 0px !important;
  padding-right: 25px !important;
}
.settings_title {
  font-size: 25px;
  line-height: 110%;
  margin: 1.0933333333rem 0 .656rem 0;
}
.settings_copy {
  font-weight: 200;
  font-size: 18px;
  color: #888;
}
.settings_card {
  border-radius: 10px;
  padding: 0px 0px !important;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.settings_card .collapsible {
  margin: 0px;
}
.settings_card .collapsible .collapsible-header {
  padding: 24px;
  font-size: 16px;
}
.setting {
  padding: 24px;
  font-size: 16px;
  border-bottom: 1px solid #ddd;
}
.setting i {
  width: 2rem;
  font-size: 1.6rem;
  display: inline-block;
  text-align: center;
  margin-right: 1rem;
}
.no-shadow {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-top: none;
}
#card_element {
  border: none;
  border-bottom: 1px solid #9e9e9e;
  height: 2.2em;
  margin: 1.5em 0 0.5em 0;
}
#user_msg, #pass_msg, #name_msg, #email_msg, #submit_msg {
  font-size: 12px;
  font-weight: 300;
  display: inline-block;
  padding-left: 20px;
}
.paymentselect {
  font-size: 16px;
  width: 100%;
  height: 3rem;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  margin: 0px;
}
.paymentselect span {
  color: rgba(0, 0, 0, 0.7);
}
.paymentselect span .expiry {
  padding-left: 10px;
  font-size:11px;
  color: rgba(0, 0, 0, 0.6);
}
.paymentselect:hover {
  background-color: #f8f8f8;
}
/* Dashboard Pages */
.datadash_container {
  width: 95%;
  max-width: none;
  background: transparent;
  padding-bottom: 10px;
  padding-top: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.dashfootnotes {
  margin-top: 20px;
}
.dashfootnotes .collapsible-body{
  padding-top: 0px;
}
.dashfootnotes .collapsible-body ol ul li{
  list-style-type: circle;
  margin-left:20px;
}
.dashfootnotes, .dashfootnotes .collapsible-header, .dashfootnotes .collapsible-body {
  border: 0px;
  font-size: 13px;
}