
:root {
  --base-color-blue-dark: #2447a4;
  --base-color-blue-dark-rgb: 36, 71, 164;
  --base-color-blue-light: #0073b6;
  --base-color-blue-light-rgb: 0, 115, 182;
  --base-color-red: #ff0000;
  --base-color-red-rgb: 255, 0, 0;
  --base-color-header-rgb: 42, 42, 42;
  --base-color-menu-text-rgba: 255, 255, 255, 0.75;
}

/*
@font-face {
  font-family: 'Roboto Condensed';
  src:  url('/static/fonts/RobotoCondensed-VariableFont_wght.woff2') format("woff2-variations"),
        url('/static/fonts/RobotoCondensed-VariableFont_wght.ttf') format("truetype-variations");
  font-weight: 1 999;
  font-style:normal;
  font-display:swap
}

@font-face {
  font-family: 'opensans';
  src:  url("/static/fonts/opensans.woff") format('woff'),
        url("/static/fonts/opensans.ttf") format('truetype');
  font-weight: 400;
}
*/

html, body {
  /* font-family:'Courier New', Courier, monospace; */
  font-family: "Roboto Condensed";
  /* font-family: "opensans"; */
  /* background-color: yellow; */
}


.hr-red-2 {
  padding: 0px;
  margin: 0px;
  opacity: 1;
  border: none;
  height: 1px;
  color: rgba(var(--base-color-red-rgb), 1); 
  background-color: rgba(var(--base-color-red-rgb), 1); 
}

hr.hr-blue-2{
  background-color: rgba(var(--base-color-blue-dark-rgb), 1);
  border: 2px solid rgba(var(--base-color-blue-dark-rgb), 1);
}

.fx-underline::after {
  content: "";
  display: block;
  position: relative;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 1px;
  border-top: 4px solid red;
  transition: all .3s ease-out;
}

.is-fx-underlined::after {
  width: 100%;
}


.fx-underline:hover::after {
  width: 100%;
}

.social-img i {
  color: white;
  /* fill: white; */
}
.social-img:hover i {
  color: rgb(var(--base-color-blue-light-rgb));
  transition: fill .6s ease-out;
  /* fill: rgb(var(--base-color-blue-light-rgb)); */
}

.footer { 
  font-size: 10pt;
  min-height: 200px;
  border-top: 3px solid red;
  background-color: rgb(42, 42, 42);
  color: rgb(242, 242, 242);
  /* box-shadow: 0px -8px 32px -8px red; */
}

.footer-main {
  min-height: 170px;
  /* font-size: 24pt; */
  padding: 16px 0px;
}

.footer-copyright {
  border-top: 1px solid red;
  padding: 16px 0px;
}

.footer-banners {
  border-top: 1px solid red;
  padding: 16px 0px;
}

.footer-banners img {
  height: 48px;
}

.link-fade-red {
  text-decoration: none;
  color: rgb(242, 242, 242);
  display: inline-block;
  transition: color .3s ease-out;
}

.link-fade-red:hover {
  color: red;
}

.link-fade-black-red {
  text-decoration: none;
  /* color: rgb(242, 242, 242); */
  display: inline-block;
  transition: color .3s ease-out;
}

.link-fade-black-red:hover {
  color: red;
}

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

.interested {
  display: flex;
  flex: 0;
  align-items: center;
  justify-content: center;
  justify-items: center;
  align-self: center;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  min-width: 140px;
  height: 40px;
  border-radius: 4px;
  font-size: 16px;
  line-height: 16px;
  color: rgb(146, 236, 236);
  background-color: rgb(57, 56, 56);
  border: 1px solid rgba(194, 194, 194, 0.8);
  transition: all .25s ease-out;
}

.interested:hover {
  background-color: rgb(74, 74, 74);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.interested.red {
  background-color: rgba(207, 0, 0, .7);
  color: white;
}

.interested.red:hover {
  background-color: rgba(207, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.interested.orange {
  background-color: rgba(207, 93, 0, 0.7);
  color: white;
}

.interested.orange:hover {
  background-color: rgba(207, 93, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.interested.blue {
  background-color: rgba(0, 114, 207, 0.7);
  color: white;
}

.interested.blue:hover {
  background-color: rgba(0, 114, 207, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.interested.green {
  background-color: rgba(55, 207, 0, 0.7);
  color: white;
}

.interested.green:hover {
  background-color: rgba(55, 207, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.interested.dark-red {
  background-color: rgba(128, 4, 4, 0.7);
  color: white;
}


.interested.dark-red:hover {
  background-color: rgba(128, 4, 4, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}



.interested.grey {
  background-color: rgba(120, 111, 111, 0.7);
  color: white;
}


.interested.grey:hover {
  background-color: rgba(120, 111, 111, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}




.offer-contents {
  padding: 16px;
  margin: 0px;
}

.offer-line {
  display: flex;
  flex-direction: row;
  padding: 0px;
  margin: 0px;
}

.offer-line-image {
  display: flex;
  padding: 2px;
  width: 25px;
  height: 25px;
  fill: green;
}

.offer-line-text {
  display: flex;
  padding-left: 16px;
  text-align: left;
}

.offer-notice {
  list-style: none;
  padding: 0px;
  margin: 0px;
  /* border: 1px solid green; */
}

.offer-notice-line {
  display: flex;
  color: red;
  line-height: 32px;
}

.offer-notice-image {
  display: flex;
  padding-right: 8px;
}

.offer-notice-image {
  display: flex;
  fill: red;
  width: 32px;
  height: 32px;
}
    .crossed {
      background: url("/static/image/crossed.svg");
      /* background: url("data:image/svg+xml;utf8,<%-svgCrossedIcon%>"); */
      background-repeat:no-repeat;
      background-position:center center;
      background-size: 100% 60%;
    }

.shadow-box { 
  box-shadow: 
    rgba(0, 0, 0, 0.25) 0px 34px 35px, 
    rgba(0, 0, 0, 0.12) 0px -12px 30px, 
    rgba(0, 0, 0, 0.12) 0px 4px 6px, 
    rgba(0, 0, 0, 0.17) 0px 12px 13px, 
    rgba(0, 0, 0, 0.09) 0px -3px 5px;
}