@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Roboto-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Roboto-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Roboto_condensed;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Roboto_condensed;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 300;
  src: url("/fonts/Mundo-Light.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 300;
  src: url("/fonts/Mundo-LightItalic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Mundo-Regular.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 400;
  src: url("/fonts/Mundo-RegularItalic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/Mundo-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 500;
  src: url("/fonts/Mundo-MediumItalic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/Mundo-SemiBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 600;
  src: url("/fonts/Mundo-SemiBoldItalic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/Mundo-Bold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 700;
  src: url("/fonts/Mundo-BoldItalic.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/Mundo-ExtraBold.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: Mundo;
  font-style: italic;
  font-weight: 800;
  src: url("/fonts/Mundo-ExtraBoldItalic.woff2") format("woff2");
  font-display: swap;
}

:root {
  --mainColor: #121534;
  --text: #fff;
  --input-color: #000;
  --valid-input-color: #000;
}
@media print {
  body {
    display: none !important;
  }
}
@media print {
  body {
    display: none !important;
  }
}
#main-form {
  border: 2px solid var(--mainColor);
  border-radius: 16px;
  max-width: 560px;
  margin: 0 auto;
  font-family: Arial;
  box-shadow: 3px 3px 6px #00000030;
}

.form-title {
  text-align: center;
  padding: 30px 15px;
  font-size: 30px;
  background: var(--mainColor);
  color: var(--text);
  text-transform: uppercase;
  margin: 30px 0;
  line-height: 1.2;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .form-title {
    font-size: 24px;
  }
}

body,
body * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
ol,
ul {
  list-style: none;
}
header {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.headerInner {
  width: 100%;
  max-width: 1200px;
}
.headerTop {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
}
.headerTop ul {
  display: flex;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(to right, black 95%, transparent 100%);
}
.headerTop * {
  color: #70707073;
  font-size: 10px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  white-space: nowrap;
  letter-spacing: 0;
  /*line-height: 1;*/
}
.headerTop li {
  padding: 0 8px;
  position: relative;
}
.headerTop li:first-child {
  padding-left: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}
.headerTop li:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-55%);
  color: #70707073;
  font-size: 10px;
  /*padding-left: 8px;*/
}
.headerMid {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;

  height: 41px;
  display: flex;
  align-items: center;
}
.headerLogo {
  width: 150px;
  line-height: 0;
}

.navHeader {
  width: 700px;
  display: flex;
  align-items: center;
}
.navHeader ul {
  padding-left: 36px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.navHeader ul li {
  flex: 1 0 auto;
}
.navHeader ul li a:hover {
  font-weight: 500;
}
.navHeader ul li a {
  letter-spacing: 0.26px;
  font-size: 13px;
  color: #000;
  /*line-height: 13px;*/
  font-weight: normal;
  padding: 0 16px;
  font-family: Mundo, "Times New Roman", Times, serif;
}
.endSession {
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  font-size: 12px;
  margin-left: auto;
}
.endSession:hover {
  opacity: 0.7;
}

.scroll-progress {
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 3px;
  background: black;
  width: 0%;
  transition: width 0.1s ease;
}
.headerBot {
  transition: top 0.3s ease;
  background: #f7f7f7;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  height: 41px;
  width: 100%;
  padding: 0 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10000;
}
.headerBot__content {
  width: 1200px;
  display: flex;
}
.headerBot__content li {
}
.headerBot__content li:first-child a {
  padding-right: 24px;
}
.headerBot__content li:first-child {
  font-weight: 600;
  border-right: 1px solid #000;
}
.headerBot__content li a {
  color: #000;
  padding: 6px 0px;
  font-size: 13px;
  font-family: Mundo, "Times New Roman", Times, serif;
}
main {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 369px;
  padding: 8px 8px;
}
article {
  padding-left: 185px;
}
article * {
  font-family: Mundo, "Times New Roman", Times, serif;
}
h1 {
  /* font-style: italic; */
  font-size: 44px;
  line-height: 46px;
  letter-spacing: 0;
  margin-bottom: 16px;
}
article p {
  font-family: Mundo, "Times New Roman", Times, serif;
  font-size: 19px;
  color: rgb(32, 32, 32);
  line-height: 27px;
  letter-spacing: 0;
  margin-bottom: 16px;
}
article h2 {
  font-size: 24px;
  font-weight: 700;
  font-family: Mundo, "Times New Roman", Times, serif;
  line-height: 1.1;
  margin-bottom: 10px;
}
article a {
  font-weight: 700;
  text-decoration: underline !important;
  color: rgb(0, 85, 153);
}
article {
}
.pins {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px !important;
}
.pins a {
  display: block;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.1s ease-in-out;
  background-color: #f6f6f6;
  color: #000;
  text-transform: none;
  padding: 4px 8px;
  border-bottom: 0;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 18px;
}
.pins a:hover {
  background-color: #c5c5c5;
}
.footerTop {
  margin-top: 48px;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #666;
}
.highlight {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #333;
}
.footerTop ul li a {
  color: #2e6d9d;
  font-size: 15px;
  font-family: Roboto_condensed, Tahoma, Geneva, sans-serif;
}
.footerMid__center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerMid__center img {
  width: 130px;
}
@media screen and (max-width: 1180px) {
  .headerMid,
  .headerTop {
    padding-right: 20px;
    padding-left: 8px;
  }
  .endSession {
    margin-left: 8px;
    white-space: nowrap;
  }
  .navHeader {
    overflow: hidden;
    mask-image: linear-gradient(to right, black 95%, transparent 100%);
  }
  footer {
    padding: 30px 0 30px 0;
    border-top: 2px solid rgb(177, 177, 177);
    border-bottom: 1px solid rgb(177, 177, 177);
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 980px) {
  article {
    padding-left: 0;
  }
  h1 {
    font-size: 22px !important;
    line-height: 1.5;
    font-family:
      Mundo,
      Times New Roman,
      Times,
      serif;
  }
  main {
    grid-template-columns: 1fr 310px;
  }
}
@media screen and (max-width: 740px) {
  main {
    margin-top: 8px;
  }
  .navHeader,
  .endSession {
    display: none;
  }
  .headerBot__content li:not(:first-child) {
    display: none;
  }
  .headerBot__content li {
    border: none !important;
  }
  .headerTop {
    display: none;
  }
  .headerBot {
    box-shadow: 2px 2px 6px #ccc;
  }
  .headerMid {
    justify-content: space-between;
    height: 36px;
  }
  main {
    grid-template-columns: 1fr;
  }
  .footerTop {
    display: none;
  }
  .footerMid__center {
    order: 1;
  }
}

.my-list {
  list-style-type: disc;
  padding-left: 40px;
  font-size: 19px;
  margin-bottom: 10px;
}
.my-list li {
  margin-bottom: 1px;
  font-size: 19px;
}
img {
  width: 100%;
}
svg {
  width: inherit;
}

.goto2 {
  background-color: rgb(216 4 4) !important;
  border-color: rgb(216 4 4) !important;
  color: white !important;
  padding: 20px 26px !important;
  margin: 10px 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 25px;
  max-width: 90%;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  -webkit-animation-name: "play_down";
  -moz-animation-name: "play_up";
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.goto2:hover {
  text-decoration: none !important;
}

.fb {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #1d2129;
  border: 1px solid #dddfe2;
  border-radius: 6px;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  background: #fff;
}
.fb__name {
  text-decoration: none !important;
}

.fb__head {
  display: flex;
  align-items: center;
  border-radius: 8px 8px 0px 0px !important;
  gap: 10px;
  background: #4267b2;
  padding: 10px;
  border-radius: 6px 6px 0 0;
}

.fb__logo {
  width: 28px;
  height: auto;
}

.fb__title {
  color: #fff;
  font-size: 18px;
  font-weight: bold;
}

.fb__input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #dddfe2;
  flex-wrap: nowrap;
}

.fb__field {
  flex-grow: 1;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background: #f2f3f5;
  outline: none;
  min-width: 240px;
  white-space: nowrap;
}

.fb__btn {
  color: #365899;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.fb__sort {
  color: #365899;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
}

.fb__items {
  padding: 0 10px 10px 10px;
}

.fb__item {
  display: flex;
  margin: 15px 0;
  align-items: flex-start;
  gap: 10px;
}

.fb__ava {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.fb__body {
  flex: 1;
}

.fb__text {
  background: #f2f3f5;
  border-radius: 18px;
  padding: 8px 12px;
  margin: 0 0 4px 0;
  display: inline-block;
  word-break: break-word;
  font:
    400 14px / 20px "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
}

.fb__name {
  font-weight: bold;
  color: #365899;
  margin-right: 5px;
  text-decoration: none !important;
}

.fb__like {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 11px;
  color: #8d949e;
  padding: 2px 6px;
  margin-top: 4px;
  gap: 4px;
}

.fb__like img {
  width: 16px;
  height: 16px;
}

.fb__meta {
  font-size: 12px;
  color: #606770;
  margin-top: 4px;
}

.fb__reply {
  display: flex;
  flex-direction: row;
  margin-top: 12px;
  padding-left: 42px;
  gap: 10px;
  align-items: flex-start;
}

.fb__reply .fb__ava {
  width: 28px;
  height: 28px;
}

.fb__reply .fb__text {
  background: #f2f3f5;
  border-radius: 18px;
  padding: 8px 12px;
  margin: 0;
  flex: 1;
}

@media (max-width: 600px) {
  .fb {
    border-radius: 0;
  }
  .fb__head {
    border-radius: 8px 8px 0px 0px;
  }
  .fb__input {
    flex-direction: row;
    align-items: stretch;
  }
  .fb__field {
    width: 100%;
    margin-bottom: 8px;
  }
  .fb__btn {
    text-align: right;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}
/*-------*/
.mr-1\.5 {
  margin-right: 0.375rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-7 {
  height: 1.75rem;
}
.w-2 {
  width: 0.5rem;
}
.w-3 {
  width: 0.75rem;
}
.w-7 {
  width: 1.75rem;
}
.min-w-0 {
  min-width: 0px;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.space-x-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.25rem * var(--tw-space-x-reverse));
  margin-left: calc(0.25rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.375rem * var(--tw-space-x-reverse));
  margin-left: calc(0.375rem * calc(1 - var(--tw-space-x-reverse)));
}
.overflow-hidden {
  overflow: hidden;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-t-xl {
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.border-b {
  border-width: 0 0 1px 0;
  border-style: solid;
}
.border-t {
  border-top-width: 1px;
}
.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.bg-gray-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-green-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(74 222 128 / var(--tw-bg-opacity, 1));
}
.bg-green-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 253 244 / var(--tw-bg-opacity, 1));
}
.bg-red-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 242 242 / var(--tw-bg-opacity, 1));
}
.object-cover {
  object-fit: cover;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.pl-9 {
  padding-left: 2.25rem;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[11px\] {
  font-size: 11px;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-\[13px\] {
  font-size: 13px;
}
.font-medium {
  font-weight: 500;
}
.uppercase {
  text-transform: uppercase;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.text-green-400 {
  --tw-text-opacity: 1;
  color: rgb(74 222 128 / var(--tw-text-opacity, 1));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-green-700 {
  --tw-text-opacity: 1;
  color: rgb(21 128 61 / var(--tw-text-opacity, 1));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.transition-colors {
  transition-property:
    color,
    background-color,
    border-color,
    fill,
    stroke,
    -webkit-text-decoration-color;
  transition-property:
    color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-property:
    color,
    background-color,
    border-color,
    text-decoration-color,
    fill,
    stroke,
    -webkit-text-decoration-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.hover\:bg-gray-700:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  outline: none;
  cursor: pointer;
  margin: 8px 0;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #374151, #1f2937);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.4);
  cursor: pointer;
  margin-top: -10px;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 12px rgba(31, 41, 55, 0.5);
}
.calc-slider::-webkit-slider-thumb:active {
  transform: scale(1.2);
}
.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #374151, #1f2937);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(31, 41, 55, 0.4);
  cursor: pointer;
}
.calc-slider::-webkit-slider-runnable-track {
  background: linear-gradient(
    to right,
    #374151 0%,
    #374151 var(--slider-pct, 0%),
    #e5e7eb var(--slider-pct, 0%),
    #e5e7eb 100%
  );
  height: 8px;
  border-radius: 999px;
}
.calc-slider::-moz-range-track {
  background: linear-gradient(
    to right,
    #374151 0%,
    #374151 var(--slider-pct, 0%),
    #e5e7eb var(--slider-pct, 0%),
    #e5e7eb 100%
  );
  height: 8px;
  border-radius: 999px;
}
.relative {
  position: relative;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.h-5 {
  height: 1.25rem;
}
.w-5 {
  width: 1.25rem;
}
.w-full {
  width: 100%;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
  border-style: solid;
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.text-center {
  text-align: center;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.font-semibold {
  font-weight: 600;
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity, 1));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity, 1));
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow:
    var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000),
    var(--tw-shadow);
}
.sidebar-calculator {
  background-color: #fff;
  padding: 24px;
  border: 1px solid rgb(229, 231, 235);
  margin: 40px 20px;
}
.sidebar-calculator *,
#sidebar-live-feed * {
  font-family: Roboto !important;
}
.desk-feed-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6px 16px;
  border-bottom: 1px solid #f3f4f6;
  box-sizing: border-box;
}
