@charset "UTF-8";
/* Modal Option Buttons */
/* Best Practice - Browsers are generally only optimised for two properties; Opacity and Transform */
@keyframes moveInLeft {
  /* Start */
  0% {
    opacity: 0;
    /* Use negative number to start animation from the left */
    transform: translateX(-10rem); }
  /* Middle */
  80% {
    transform: translateX(10px); }
  /* Finish */
  100% {
    opacity: 1;
    /* translate(0) returns animation to it's original position */
    transform: translate(0); } }

/* Best Practice - Browsers are generally only optimised for two properties; Opacity and Transform */
@keyframes moveInRight {
  /* Start */
  0% {
    opacity: 0;
    /* Use positive number to start animation from the right */
    transform: translateX(10rem); }
  /* Middle */
  80% {
    transform: translateX(-10px); }
  /* Finish */
  100% {
    opacity: 1;
    /* translate(0) returns animation to it's original position */
    transform: translate(0); } }

@keyframes moveInBottom {
  /* Start */
  0% {
    opacity: 0;
    /* Use positive number to start animation from the right */
    transform: translateY(30px); }
  /* Finish */
  100% {
    opacity: 1;
    /* translate(0) returns animation to it's original position */
    transform: translate(0); } }

/* A nice personal touch is to add a custom selected style to text on the page, when visitors might like to select text*/
::selection {
  background-color: #9aa60c;
  color: #fff; }

.heading-primary {
  margin-top: 12px;
  color: rgba(0, 32, 45, 0.99);
  /* A hack to stop shaking on transform or rotating animations is to use backface-visibility: hidden ;*/
  backface-visibility: hidden;
  margin-bottom: 10px;
  /* Use display: block. Block level elements occupy the entire width and importantly create line breaks after and before them! */ }
  .heading-primary--main {
    /* Use display: block. Block level elements occupy the entire width and importantly create line breaks after and before them! */
    display: block;
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    margin-bottom: 5px;
    /*
        Animation Resource - https://developer.mozilla.org/en-US/docs/Web/CSS/animation-timing-function
        animation-delay: 3s;
        animation-iteration-count: 3;
        */
    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out; }
  .heading-primary--sub {
    display: block;
    font-size: 20px;
    font-weight: 700;
    /* Animation shorthand full parameter set: name duration timing-function delay iteration-count direction fill-mode;*/
    animation: moveInRight 1s ease-out; }

.heading-secondary {
  font-size: 14px;
  font-weight: 400;
  display: block; }
  @media (max-width: 370px) {
    .heading-secondary {
      font-size: 18px; } }
  @media (min-width: 640px) and (max-width: 1100px) {
    .heading-secondary {
      font-size: 18px; } }

.heading-tertiary {
  font-weight: 700;
  text-transform: capitalize;
  margin: 0; }
  .heading-tertiary--main {
    display: block;
    font-size: 20px; }
    @media (max-width: 370px) {
      .heading-tertiary--main {
        font-size: 24px; } }
  .heading-tertiary--sub {
    text-transform: none;
    display: block;
    font-size: 16px; }
    .heading-tertiary--sub.rads {
      color: rgba(53, 115, 139, 0.99); }
    .heading-tertiary--sub.rv {
      color: #7b867b; }
    .heading-tertiary--sub.cast {
      color: #284859; }
    .heading-tertiary--sub.cols {
      color: #9aa60c; }
    @media (max-width: 370px) {
      .heading-tertiary--sub {
        font-size: 18px; } }
    .heading-tertiary--sub-room-name, .heading-tertiary--sub-t50btuMin, .heading-tertiary--sub-t50btuMax, .heading-tertiary--sub-t60btuMin, .heading-tertiary--sub-t60btuMax, .heading-tertiary--sub-t50wattsMin, .heading-tertiary--sub-t50wattsMax, .heading-tertiary--sub-t60wattsMin, .heading-tertiary--sub-t60wattsMax {
      font-size: 18px;
      text-transform: capitalize;
      color: rgba(0, 32, 45, 0.99);
      opacity: 1;
      transition: opacity 0.3s; }
      @media (max-width: 370px) {
        .heading-tertiary--sub-room-name, .heading-tertiary--sub-t50btuMin, .heading-tertiary--sub-t50btuMax, .heading-tertiary--sub-t60btuMin, .heading-tertiary--sub-t60btuMax, .heading-tertiary--sub-t50wattsMin, .heading-tertiary--sub-t50wattsMax, .heading-tertiary--sub-t60wattsMin, .heading-tertiary--sub-t60wattsMax {
          font-size: 16px; } }
    .heading-tertiary--sub-room-name {
      font-size: 22px;
      word-wrap: break-word; }
    .heading-tertiary--sub-room-name.hide, .heading-tertiary--sub-t50btuMin.hide, .heading-tertiary--sub-t50btuMax.hide, .heading-tertiary--sub-t50wattsMin.hide, .heading-tertiary--sub-t50wattsMax.hide {
      opacity: 0; }

.paragraph {
  font-size: 14px; }
  @media (max-width: 370px) {
    .paragraph {
      font-size: 16px; } }
  .paragraph:not(:last-child) {
    margin-bottom: 10px; }
  .paragraph--tel {
    color: rgba(0, 32, 45, 0.99);
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s; }
    .paragraph--tel:hover {
      color: rgba(53, 115, 139, 0.99);
      text-decoration: underline; }
  .paragraph--tel.rv {
    color: #7b867b; }
    .paragraph--tel.rv:hover {
      color: #a2b1a2; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 15px !important; }

.u-margin-bottom-medium {
  margin-bottom: 40px !important; }
  @media (min-width: 640px) and (max-width: 1100px) {
    .u-margin-bottom-medium {
      margin-bottom: 30px !important; } }

.u-margin-bottom-big {
  margin-bottom: 80px !important; }
  @media (min-width: 640px) and (max-width: 1100px) {
    .u-margin-bottom-big {
      margin-bottom: 50px !important; } }

.u-margin-top-big {
  margin-top: 80px !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.btn {
  flex: 0 0 100%;
  margin-bottom: 10px;
  visibility: visible;
  backface-visibility: hidden;
  opacity: 1;
  transition: all 0.3s; }
  .btn.rads {
    background-color: rgba(0, 32, 45, 0.99); }
  .btn.rv {
    background-color: #7b867b; }
  .btn.cast {
    background-color: #284859; }
  .btn.cols {
    background-color: #9aa60c; }
  .btn:focus {
    outline: none;
    box-shadow: 2px 2px 4px #777; }
    .btn:focus.rads {
      background: rgba(53, 115, 139, 0.99); }
    .btn:focus.rv {
      background: #a2b1a2; }
    .btn:focus.cast {
      background: #4d6b7b; }
    .btn:focus.cols {
      background: #b5c312; }
  .btn, .btn:link, .btn:visited {
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px;
    /* Always use display: inline-block to infer the box-model and give padding, width and height to elements */
    display: inline-block;
    /* Treated like it was text */
    border-radius: 10px;
    position: relative;
    /* Position relative added here to use the position: absolute for the pseudo button elements */
    font-size: 14px;
    border: none;
    cursor: pointer; }
  .btn:hover {
    /* Box shadow X, Y, Blur Color RGBa*/
    box-shadow: 2px 2px 4px #777; }
    .btn:hover.rads {
      background: rgba(53, 115, 139, 0.99); }
    .btn:hover.rv {
      background: #a2b1a2; }
    .btn:hover.cast {
      background: #4d6b7b; }
    .btn:hover.cols {
      background: #b5c312; }
    .btn:hover::after {
      visibility: hidden; }
  .btn--primary {
    color: #fff; }
    .btn--primary.calcButton {
      position: absolute;
      bottom: 0; }
  .btn#email-rooms {
    float: left; }
  .btn#delete-rooms {
    float: right;
    margin-right: 4px; }

.delete-this-room-modal-wrapper,
.delete-all-rooms-modal-wrapper,
.email-rooms-modal-wrapper,
.max-rooms-modal-wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center; }

.btu-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(1px);
  z-index: 5; }

.email-rooms-modal,
.delete-this-room-modal,
.delete-all-rooms-modal,
.max-rooms-modal {
  background-color: white;
  padding: 10px 20px;
  border: 5px solid;
  border-radius: 6px;
  box-shadow: 2px 2px 4px #333;
  z-index: 10; }
  .email-rooms-modal.rads,
  .delete-this-room-modal.rads,
  .delete-all-rooms-modal.rads,
  .max-rooms-modal.rads {
    border-color: rgba(0, 32, 45, 0.99); }
  .email-rooms-modal.rv,
  .delete-this-room-modal.rv,
  .delete-all-rooms-modal.rv,
  .max-rooms-modal.rv {
    border-color: #7b867b; }
  .email-rooms-modal.cast,
  .delete-this-room-modal.cast,
  .delete-all-rooms-modal.cast,
  .max-rooms-modal.cast {
    border-color: #284859; }
  .email-rooms-modal.cols,
  .delete-this-room-modal.cols,
  .delete-all-rooms-modal.cols,
  .max-rooms-modal.cols {
    border-color: #9aa60c; }
  @media (max-width: 370px) {
    .email-rooms-modal,
    .delete-this-room-modal,
    .delete-all-rooms-modal,
    .max-rooms-modal {
      padding: 10px 20px;
      width: 90%; } }
  @media (min-width: 370px) and (max-width: 640px) {
    .email-rooms-modal,
    .delete-this-room-modal,
    .delete-all-rooms-modal,
    .max-rooms-modal {
      width: 85%;
      margin-bottom: 20px; } }
  @media (min-width: 640px) and (max-width: 1100px) {
    .email-rooms-modal,
    .delete-this-room-modal,
    .delete-all-rooms-modal,
    .max-rooms-modal {
      width: 85%;
      margin-bottom: 20px; } }
  @media (min-width: 1100px) {
    .email-rooms-modal,
    .delete-this-room-modal,
    .delete-all-rooms-modal,
    .max-rooms-modal {
      width: 55%;
      margin-bottom: 20px; } }
  @media (min-width: 1100px) {
    .email-rooms-modal,
    .delete-this-room-modal,
    .delete-all-rooms-modal,
    .max-rooms-modal {
      width: 30%;
      margin-bottom: 20px; } }

.delete-this-room-modal__header,
.delete-all-rooms-modal__header,
.email-rooms-modal__header,
.max-rooms-modal__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start; }

.title {
  flex: 1; }
  @media (max-width: 370px) {
    .title {
      line-height: 2.5px; } }

.close-button {
  cursor: pointer;
  transition: all 0.3s;
  flex: 0; }
  @media (max-width: 370px) {
    .close-button {
      padding: 0; } }

span.delete-this-room-close-modal,
span.delete-all-rooms-close-modal,
span.max-rooms-close-modal,
span.email-rooms-close-modal {
  color: #333;
  font-size: 40px; }
  span.delete-this-room-close-modal:hover,
  span.delete-all-rooms-close-modal:hover,
  span.max-rooms-close-modal:hover,
  span.email-rooms-close-modal:hover {
    color: #d11800; }
  @media (max-width: 370px) {
    span.delete-this-room-close-modal,
    span.delete-all-rooms-close-modal,
    span.max-rooms-close-modal,
    span.email-rooms-close-modal {
      font-size: 40px;
      right: 10px; } }

.del-room-name {
  display: flow-root;
  color: inherit;
  text-transform: capitalize;
  word-wrap: break-word; }
  @media (max-width: 370px) {
    .del-room-name {
      font-size: 18px;
      inline-size: 85%; } }
  @media (min-width: 370px) {
    .del-room-name {
      font-size: 20px;
      inline-size: 85%; } }
  @media (min-width: 640px) and (max-width: 1100px) {
    .del-room-name {
      font-size: 20px;
      inline-size: 90%; } }
  @media (min-width: 1681px) {
    .del-room-name {
      font-size: 22px;
      inline-size: 100%; } }
  .del-room-name.rads {
    color: rgba(53, 115, 139, 0.99); }
  .del-room-name.rv {
    color: #a2b1a2; }
  .del-room-name.cast {
    color: #4d6b7b; }
  .del-room-name.cols {
    color: #b5c312; }

@media (max-width: 370px) {
  .delete-this-room-modal__message,
  .delete-all-rooms-modal__message,
  .email-rooms-modal__message,
  .max-rooms-modal__message {
    padding-top: 10px; } }

.modal-button-options {
  max-width: 100%;
  margin-top: 20px;
  display: flex;
  gap: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between; }
  .modal-button-options .delete-this-room-yes,
  .modal-button-options .delete-all-rooms-yes,
  .modal-button-options .email-rooms-yes {
    flex-basis: 70px;
    background: #006905; }
  .modal-button-options .delete-this-room-yes:hover,
  .modal-button-options .delete-all-rooms-yes:hover,
  .modal-button-options .email-rooms-yes:hover {
    background: #00a808; }
  .modal-button-options .delete-this-room-no,
  .modal-button-options .delete-all-rooms-no,
  .modal-button-options .email-rooms-no {
    flex-basis: 70px;
    background: #ab1400; }
  .modal-button-options .delete-this-room-no:hover,
  .modal-button-options .delete-all-rooms-no:hover,
  .modal-button-options .email-rooms-no:hover {
    background: #d11800; }
  .modal-button-options .acknowledge {
    flex-basis: 70px; }

@keyframes modalFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes modalFadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.bounce-in {
  animation: bounce-in 0.3s ease; }

@keyframes bounce-in {
  0% {
    opacity: 0;
    transform: scale(0.7); }
  45% {
    opacity: 1;
    transform: scale(1.05); }
  80% {
    transform: scale(0.95); }
  100% {
    transform: scale(1); } }

.bounce-out {
  animation: bounce-out 0.6s ease; }

@keyframes bounce-out {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }

.show-overlay {
  animation: btuOverlayFadeIn 0.6s ease; }

@keyframes btuModalOverlayFadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.hide-overlay {
  animation: btuOverlayFadeOut 0.6s ease; }

@keyframes btuModalOverlayFadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.email-rooms-modal-klaviyo {
  background-color: white;
  padding: 10px 20px;
  border: 5px solid;
  border-radius: 6px;
  box-shadow: 2px 2px 4px #333;
  z-index: 10;
  max-height: 80vh;
  overflow: hidden; }
  .email-rooms-modal-klaviyo #emailbtu {
    overflow-y: scroll;
    height: 40vh; }
  @media (max-width: 370px) {
    .email-rooms-modal-klaviyo {
      margin-top: 60px;
      padding: 10px 20px;
      width: 90%; } }
  @media (min-width: 370px) and (max-width: 640px) {
    .email-rooms-modal-klaviyo {
      margin-top: 80px;
      width: 80%;
      margin-bottom: 20px; } }
  @media (min-width: 1100px) {
    .email-rooms-modal-klaviyo {
      margin-top: 120px;
      width: 40%;
      margin-bottom: 20px; } }
  .email-rooms-modal-klaviyo.rads {
    border-color: rgba(0, 32, 45, 0.99); }
  .email-rooms-modal-klaviyo.rv {
    border-color: #7b867b; }
  .email-rooms-modal-klaviyo.cast {
    border-color: #284859; }
  .email-rooms-modal-klaviyo.cols {
    border-color: #9aa60c; }

.radiator {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px; }
  @media (max-width: 370px) {
    .radiator {
      flex-direction: column;
      align-items: center;
      margin-bottom: 0px; } }
  @media (min-width: 370px) and (max-width: 640px) {
    .radiator {
      flex-direction: column;
      align-items: center;
      margin-bottom: 0px; } }
  @media (min-width: 1100px) {
    .radiator {
      flex-direction: row;
      align-items: center;
      margin-bottom: 0px; } }
  .radiator__item {
    padding: 5px;
    border-radius: 6px;
    flex: 0 0 22%;
    text-align: center;
    transition: all 0.3s;
    backface-visibility: hidden; }
    .radiator__item.cast {
      background-color: #284859; }
    .radiator__item.cols {
      background-color: #9aa60c; }
    .radiator__item.rads {
      background-color: rgba(0, 32, 45, 0.99); }
    .radiator__item.rv {
      background-color: #7b867b; }
    .radiator__item:hover {
      box-shadow: 4px 4px 4px #ccc;
      transform: translateY(-2px); }
      .radiator__item:hover a span {
        margin-left: 8px; }
    .radiator__item--caption {
      backface-visibility: hidden;
      display: inline-block;
      color: #fff;
      font-size: 14px;
      line-height: 18px;
      text-transform: uppercase;
      transition: all 0.2s;
      margin-top: 6px; }
      .radiator__item--caption a {
        transition: all 0.2s;
        text-decoration: none;
        color: inherit; }
      .radiator__item--caption span {
        margin-left: 2px;
        transition: margin-left 0.2s; }
  .radiator__image {
    border-radius: 4px;
    width: 100%;
    margin-bottom: 0; }

/* LocalStorage Saved Room List Item Styles */
.calc-form__saved-rooms--options {
  opacity: 0;
  height: 0;
  overflow: hidden; }

.calc-form__saved-rooms--options.show {
  opacity: 1; }

.calc-form__saved-rooms--list {
  height: 440px;
  width: 100%;
  overflow-y: auto; }
  @media (max-width: 370px) {
    .calc-form__saved-rooms--list {
      height: 420px; } }

p.no-saved-rooms {
  display: block;
  height: 20px;
  opacity: 1;
  font-size: 12px;
  margin: 0; }
  @media (max-width: 370px) {
    p.no-saved-rooms {
      font-size: 14px; } }

p.no-saved-rooms.hidden {
  height: 0;
  opacity: 0; }

p.saved-room-details {
  margin: 0;
  line-height: 16px; }

.pulse {
  animation: pulse-animation 1.2s infinite; }

@keyframes pulse-animation {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

.room-count {
  transition: all 0.6s; }

.room-count.max.pulse {
  color: #d11800; }

[class*='delete-room-'] {
  color: #777;
  font: 18px/100% arial, sans-serif;
  position: absolute;
  top: 10px;
  right: 10px;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  cursor: pointer;
  transition: all 0.6s; }
  @media (max-width: 370px) {
    [class*='delete-room-'] {
      right: 18px; } }
  @media (min-width: 370px) {
    [class*='delete-room-'] {
      right: 18px; } }
  @media (min-width: 640px) and (max-width: 1100px) {
    [class*='delete-room-'] {
      right: 25px; } }
  @media (min-width: 1681px) {
    [class*='delete-room-'] {
      right: 20px; } }

.delete-room-classic:after {
  content: 'X';
  /* ANSI X letter */ }

.delete-room-thin:after {
  content: '×';
  /* UTF-8 symbol */ }

.delete-room-thick:after {
  content: '✖';
  /* UTF-8 symbol */ }

.delete-room-thick:hover {
  color: #d11800; }

/* Container */
ul.list {
  list-style-type: none;
  transition: all 0.3s;
  margin: 0px; }

.list-container {
  height: auto;
  list-style: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s; }

.list-container.show:not(:first-child) {
  margin-top: 5px; }

.list-container .list-item {
  margin: 0px 4px 4px 0px;
  border-radius: 5px;
  padding: 8px 5px 6px 10px;
  width: 98%;
  background-color: #e6e6e6;
  opacity: 0;
  top: 0;
  left: 0;
  transition: all 0.3s ease-in-out; }
  .list-container .list-item.rads {
    border-left: 5px solid rgba(0, 32, 45, 0.99); }
    .list-container .list-item.rads.rads:hover {
      border-left: 5px solid rgba(53, 115, 139, 0.99); }
  .list-container .list-item.rv {
    border-left: 5px solid #7b867b; }
    .list-container .list-item.rv.rv:hover {
      border-left: 5px solid #a2b1a2; }
  .list-container .list-item.cast {
    border-left: 5px solid #284859; }
    .list-container .list-item.cast.cast:hover {
      border-left: 5px solid #4d6b7b; }
  .list-container .list-item.cols {
    border-left: 5px solid #9aa60c; }
    .list-container .list-item.cols.cols:hover {
      border-left: 5px solid #b5c312; }

.list-container .list-item:hover {
  padding: 8px 5px 6px 14px;
  background-color: #f0f0f0;
  box-shadow: 2px 2px 4px #777;
  cursor: pointer; }

.list-container .list-item.show {
  opacity: 1; }

.saved-room-name,
.saved-room-info,
.saved-room-btu-min,
.saved-room-btu-max,
.saved-room-watts-min,
.saved-room-watts-max {
  font-size: 12px;
  font-weight: 700;
  line-height: 16px; }
  .saved-room-name.rads,
  .saved-room-info.rads,
  .saved-room-btu-min.rads,
  .saved-room-btu-max.rads,
  .saved-room-watts-min.rads,
  .saved-room-watts-max.rads {
    color: rgba(53, 115, 139, 0.99); }
  .saved-room-name.rv,
  .saved-room-info.rv,
  .saved-room-btu-min.rv,
  .saved-room-btu-max.rv,
  .saved-room-watts-min.rv,
  .saved-room-watts-max.rv {
    color: #7b867b; }
  .saved-room-name.cast,
  .saved-room-info.cast,
  .saved-room-btu-min.cast,
  .saved-room-btu-max.cast,
  .saved-room-watts-min.cast,
  .saved-room-watts-max.cast {
    color: #284859; }
  .saved-room-name.cols,
  .saved-room-info.cols,
  .saved-room-btu-min.cols,
  .saved-room-btu-max.cols,
  .saved-room-watts-min.cols,
  .saved-room-watts-max.cols {
    color: #9aa60c; }

.saved-room-name {
  text-transform: capitalize;
  overflow-wrap: break-word;
  margin: 0; }
  @media (max-width: 370px) {
    .saved-room-name {
      inline-size: 165px; } }
  @media (min-width: 370px) {
    .saved-room-name {
      inline-size: 165px; } }
  @media (min-width: 640px) and (max-width: 1100px) {
    .saved-room-name {
      inline-size: 264px; } }
  @media (min-width: 1681px) {
    .saved-room-name {
      inline-size: 240px; } }

#btu-container {
  border: 5px solid;
  border-color: rgba(0, 32, 45, 0.99);
  border-radius: 6px;
  box-shadow: 4px 4px 4px #ccc;
  overflow: hidden; }
  #btu-container.rads {
    border-color: rgba(0, 32, 45, 0.99); }
  #btu-container.rv {
    border-color: #7b867b; }
  #btu-container.cast {
    border-color: #284859; }
  #btu-container.cols {
    border-color: #9aa60c; }

.section-form {
  height: auto;
  background-color: #faf9f9;
  border-bottom: 1px solid #f4f2f2;
  padding: 20px;
  transition: all 0.3s;
  overflow: hidden; }

.calc-form__group.dims {
  height: 70px; }

.calc-form__room-measurements, .calc-form__room-details, .calc-form__saved-rooms {
  padding: 20px;
  border: 5px solid;
  background-color: #ccc;
  box-shadow: 4px 4px 4px #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  height: 560px; }
  .calc-form__room-measurements.rads, .calc-form__room-details.rads, .calc-form__saved-rooms.rads {
    border-color: rgba(0, 32, 45, 0.99); }
  .calc-form__room-measurements.rv, .calc-form__room-details.rv, .calc-form__saved-rooms.rv {
    border-color: #7b867b; }
  .calc-form__room-measurements.cast, .calc-form__room-details.cast, .calc-form__saved-rooms.cast {
    border-color: #284859; }
  .calc-form__room-measurements.cols, .calc-form__room-details.cols, .calc-form__saved-rooms.cols {
    border-color: #9aa60c; }

@media (min-width: 1100px) {
  .calc-form__room-measurements, .calc-form__room-details, .calc-form__saved-rooms {
    max-width: 32%; } }

@media (min-width: 640px) and (max-width: 1100px) {
  .calc-form__room-measurements, .calc-form__room-details {
    max-width: 49%; } }

@media (min-width: 640px) and (max-width: 1100px) {
  .calc-form__saved-rooms {
    max-width: 100%; } }

@media (min-width: 1100px) {
  .calc-form__room-measurements {
    margin-right: 2%; } }

@media (min-width: 640px) and (max-width: 1100px) {
  .calc-form__room-measurements {
    margin-right: 2%; } }

.calc-form__room-details {
  position: relative; }
  @media (max-width: 370px) {
    .calc-form__room-details {
      height: 440px; } }

.calc-form__group.calcBtn {
  display: inline-block; }
  @media (max-width: 370px) {
    .calc-form__group.calcBtn {
      margin-top: 30px; } }

.calc-form__group input {
  border-radius: 4px;
  display: block;
  width: 100%; }

.calc-form__group input:focus {
  outline: 0; }

.calc-form__group.success input,
.calc-form__group.success select {
  border-color: #09c372; }

.calc-form__group.error {
  display: grid; }

.calc-form__group.error input,
.calc-form__group.error select {
  border-color: #c4183a; }

.calc-form__group .error-tip {
  margin-top: 6px;
  background-color: #fce4e4;
  border: 2px solid #c4183a;
  border-radius: 7px;
  -moz-border-radius: 7px;
  -webkit-border-radius: 7px;
  color: #cc0033;
  float: left;
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  position: relative;
  padding: 5px 11px 4px;
  margin-left: 0px;
  box-shadow: 2px 2px 4px #777; }
  .calc-form__group .error-tip:after, .calc-form__group .error-tip:before {
    content: '';
    border: 7px solid transparent;
    position: absolute;
    top: -14px; }
  .calc-form__group .error-tip:after {
    border-bottom: 7px solid #fce4e4;
    left: 10px;
    top: -11px; }
  .calc-form__group .error-tip:before {
    border-bottom: 7px solid #c4183a;
    left: 10px; }

.calc-form__group:not(:last-child) {
  margin-bottom: 10px; }

.calc-form fieldset {
  border: 1px solid #b1b1b1;
  padding: 10px;
  margin: 0 0 30px 0; }

.calc-form fieldset.fieldset-room-name {
  height: 90px; }

.calc-form fieldset.measurement-unit {
  padding: 10px; }

.calc-form fieldset.fieldset-room-win-exp {
  height: 90px; }

.calc-form fieldset.fieldset-saved-rooms {
  margin: 0; }

.calc-form legend {
  font-size: 12px;
  font-weight: 700;
  padding: 0; }
  @media (max-width: 370px) {
    .calc-form legend {
      font-size: 14px; } }

.calc-form__group--rads4uswitchval {
  height: 20px;
  display: inline-flex;
  justify-content: space-between; }

@media (max-width: 370px) {
  .calc-form__radio-group:not(:last-child) {
    margin-right: 17%; } }

@media (min-width: 640px) {
  .calc-form__radio-group:not(:last-child) {
    margin-right: 17%; } }

@media (min-width: 1100px) {
  .calc-form__radio-group:not(:last-child) {
    margin-right: 48%; } }

.calc-form__radio-input {
  display: none; }

.calc-form__radio-label {
  font-size: 12px;
  cursor: pointer;
  position: relative;
  padding-left: 25px; }
  @media (max-width: 370px) {
    .calc-form__radio-label {
      font-size: 14px; } }

.calc-form__radio-button {
  height: 20px;
  width: 20px;
  border: 2px solid;
  border-radius: 33.333%;
  display: inline-block;
  position: absolute;
  left: 0; }
  @media (max-width: 370px) {
    .calc-form__radio-button {
      top: 0px; } }
  @media (min-width: 370px) {
    .calc-form__radio-button {
      top: -2px; } }
  .calc-form__radio-button::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: '';
    display: block;
    height: 10px;
    width: 10px;
    border-radius: 24.444%;
    opacity: 0;
    transition: opacity 0.2s; }
  .calc-form__radio-button.rads {
    border-color: rgba(0, 32, 45, 0.99); }
    .calc-form__radio-button.rads::after {
      background-color: rgba(0, 32, 45, 0.99); }
  .calc-form__radio-button.rv {
    border-color: #7b867b; }
    .calc-form__radio-button.rv::after {
      background-color: #7b867b; }
  .calc-form__radio-button.cast {
    border-color: #284859; }
    .calc-form__radio-button.cast::after {
      background-color: #284859; }
  .calc-form__radio-button.cols {
    border-color: #9aa60c; }
    .calc-form__radio-button.cols::after {
      background-color: #9aa60c; }

.calc-form__radio-input:checked ~ .calc-form__radio-label .calc-form__radio-button::after {
  opacity: 1; }

.calc-form__input, .calc-form__select {
  font-size: 13px;
  font-family: inherit;
  color: inherit;
  padding: 13px 10px 10px 10px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-bottom: 3px solid transparent;
  width: 100%;
  display: block;
  transition: all 0.3s; }
  .calc-form__input:focus, .calc-form__select:focus {
    outline: none;
    background-color: #f0f0f0;
    box-shadow: 2px 2px 4px #777;
    border-color: rgba(0, 32, 45, 0.99); }
  .calc-form__input::-webkit-input-placeholder, .calc-form__select::-webkit-input-placeholder {
    color: #777; }
  .calc-form__input.error, .calc-form__select.error {
    border-bottom: 3px solid #db2b14; }
  .calc-form__input input[type='number'].error,
  .calc-form__input select.error, .calc-form__select input[type='number'].error,
  .calc-form__select select.error {
    border-bottom: 3px solid #db2b14; }
  .calc-form__input__input:placeholder-shown + .calc-form__input__label, .calc-form__select__input:placeholder-shown + .calc-form__input__label, .calc-form__input__input:placeholder-shown + .calc-form__select__label, .calc-form__select__input:placeholder-shown + .calc-form__select__label {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-40px); }

.calc-form__label {
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 4px 0;
  display: block;
  transition: all 0.3s; }
  @media (max-width: 370px) {
    .calc-form__label {
      font-size: 14px; } }

.calc-form__select + option + .calc-form__label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-40px); }

/* This is the style of our error messages */
.errorMessage {
  border-bottom: 3px solid #db2b14; }

.successMessage {
  border-bottom: 3px solid #0cc00c; }

.errorMessage.active {
  padding: 0.3em; }

.btu-header {
  padding-left: 6px;
  font-size: 14px;
  height: auto;
  border-bottom: 1px solid #f4f2f2;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start; }
  @media (max-width: 370px) {
    .btu-header {
      padding: 20px 20px; } }

.section-results {
  background-color: #fff;
  padding: 20px;
  border-radius: 0 0 6px 6px; }
  @media (max-width: 370px) {
    .section-results {
      padding: 20px; } }

.hidden {
  display: none;
  height: 0;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0; }

.results {
  display: flex;
  flex-direction: column; }
  .results__t50, .results__t60 {
    border-radius: 5px;
    background-color: #e6e6e6;
    padding: 8px; }
    .results__t50.cast, .results__t60.cast {
      border-left: 5px solid #284859; }
    .results__t50.cols, .results__t60.cols {
      border-left: 5px solid #9aa60c; }
    .results__t50.rads, .results__t60.rads {
      border-left: 5px solid rgba(0, 32, 45, 0.99); }
    .results__t50.rv, .results__t60.rv {
      border-left: 5px solid #7b867b; }

body.btu-calc {
  font-family: "Gotham Book", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: #333333; }
