/* =========================================================
   GINA APP WIDGET STYLES
   ========================================================= */

body {
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 400;
}

/* =========================================================
   BLOCK 01 FONTS
   ========================================================= */

/* ===== MONTSERRAT VARIABLE FONT ===== */

@font-face {
    font-family: "Montserrat";
    src: url("./Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900; /* THIS is the key */
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./Montserrat/Montserrat-Italic-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
}
                   
@font-face {
    font-family: "DS-Digital";
    src: url("DS-Digital/DS-DIGIT.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}


/* =========================================================
   BLOCK 02 ROOT VARIABLES
   ========================================================= */

:root {
    --bg: #0f1012;
    --panel: #17181b;
    --panel-2: #202124;
    --line: #6c6c6c;

    --gold: #d4af37;
    --gold-soft: #d2aa3b;

    --text: #f2f2f2;
    --green: #00ff48;
}


/* =========================================================
   BLOCK 03 GLOBAL RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

html,
body {
    width: 100%;
    min-height: 100dvh;

    background: url("app_images/background.jpg") no-repeat center center fixed;
    background-size: cover;

    color: var(--text);
    font-family: "Montserrat", Arial, sans-serif;

    overflow-x: hidden;
}


/* =========================================================
   BLOCK 04 APP POSITION & PANEL
   ========================================================= */

.app-shell {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;

    background: rgba(15, 16, 18, 0.4);
}

.page-wrap {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

.panel {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;

    background: linear-gradient(
        180deg,
        rgba(18, 18, 20, 0.96),
        rgba(14, 14, 16, 0.98)
    );

    backdrop-filter: blur(10px);

    border: 1px solid rgba(212,175,55,0.25);

    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.75),
        0 0 25px rgba(212,175,55,0.08);
}

.panel-header {
    padding: 12px 16px 8px 16px;
}

.panel-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-badge {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    object-fit: contain;
}

.panel-title {
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.1px;
    color: #ffffff;
}


/* =========================================================
   BLOCK 05 MAIN CARD & HEADER
   ========================================================= */

.main-card {
    margin: 10px;
    padding: 18px 15px;
    display: flex;
    flex-direction: column;

    border: 1px solid #8a8a8a;
    background: linear-gradient(180deg, #1b1b1d 0%, #202124 100%);
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0 8px 0;
}

.top-logo {
    width: 175px;
    height: 175px;
    object-fit: contain;
}

/* =========================================================
   BLOCK 22 | DOUGLAS ELLIMAN LOGO
   ========================================================= */

.de-logo-wrap{
    text-align:center;
    margin-top:10px;
    margin-bottom:10px;
}

.de-logo{
    width:160px;
    opacity:0.92;
}

.agent-name {
    margin-top: 8px;

    text-align: center;
    color: #e6c86a;

    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.6px;
    line-height: 1.15;

    text-shadow: 0 0 6px rgba(212,175,55,0.25);
}

.agent-name {
    font-weight: 600; /* perfect */
}

.panel-title {
    font-weight: 700; /* stronger header */
}

.var-name {
    font-weight: 500; /* softer than bold */
}

.send-button {
    font-weight: 600;
}


/* =========================================================
   BLOCK 06 HEADER SUBTITLE FONT 
   NORMAL:     background: var(--gold-soft);
   MORE LUXURIOUS: 
   background: linear-gradient(
    to right,
    transparent 0%,
    var(--gold-soft) 20%,
    var(--gold-soft) 80%,
    transparent 100%
);
   ========================================================= */

.agent-name::after {
    content: "";
    display: block;
    width: 120px;
    height: 1px;
    margin: 8px auto 6px;

    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-soft) 20%,
        var(--gold-soft) 80%,
        transparent 100%
    );
}

/* =========================================================
   BLOCK 06 HEADER SUBTITLE FONT 
   ========================================================= */
   
.agent-tagline {
    max-width: 88%;
    margin-left: auto;
    margin-right: auto;

    margin-bottom: 14px;
    margin-top: 4px;

    text-align: center;
    font-size: 15px;
    font-weight: 400;
    font-style: italic;

    letter-spacing: 0.8px;
    line-height: 1.35;

    color: #e8e8e8;
    opacity: 0.75;

    text-shadow: 0 0 4px rgba(255,255,255,0.08);
}


/* =========================================================
   BLOCK 06A INPUT BLURB (GREEN FRAME)
   ========================================================= */

.input-blurb {
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.8px;
    color: #e8e8e8;

    margin: 8px auto 14px auto;
    padding: 10px 14px;

    border: 1px solid rgba(0,255,72,0.55);
    border-radius: 18px;

    max-width: 80%;

    background: linear-gradient(
        180deg,
        rgba(20,20,20,0.55),
        rgba(10,10,10,0.65)
    );

    box-shadow:
        0 0 6px rgba(0,255,72,0.12),
        inset 0 0 4px rgba(0,255,72,0.08);
}

.input-blurb.small {
    font-size: 12px;
    padding: 6px 12px;
    max-width: 60%;
    opacity: 0.85;
    margin: 10px auto 12px auto;
}


/* Ensure the "Maximum Affordability" blurb is italic and centered */
.maximize-affordability-blurb {
    font-size: 14px;               /* Slightly larger font size for better readability */
    font-style: italic;            /* Italic text */
    color: #e8e8e8;                /* Light color */
    opacity: 0.85;                 /* Slight opacity for subtle look */
    margin: 8px auto 14px auto;    /* Center it and add margins */
    padding: 10px 14px;            /* Padding inside the frame */
    border: 1px solid rgba(0, 255, 72, 0.55); /* Green frame */
    border-radius: 18px;           /* Rounded corners */
    max-width: 90%;                /* Match the input box width */
    background: linear-gradient(180deg, rgba(20, 20, 20, 0.55), rgba(10, 10, 10, 0.65));  /* Dark background with gradient */
    box-shadow: 0 0 6px rgba(0, 255, 72, 0.12), inset 0 0 4px rgba(0, 255, 72, 0.08); /* Green shadow */
    text-decoration: none;         /* No underline */
    cursor: default;               /* Prevent pointer cursor */
    line-height: 1.4;              /* Proper line spacing */
    word-wrap: break-word;         /* Ensure long words break correctly */
}


/* =========================================================
   BLOCK 06 Contact Input Fields (Specific to Contact section)
   ========================================================= */

/* Styling the container for input fields */
.contact-input-container {
    margin-bottom: 12px;  /* Space between inputs */
    width: 100%;          /* Full width */
    text-align: left;     /* Align text to the left */
}

/* Styling for the input fields */
.contact-input {
    width: 100%;                 /* Full width for input */
    height: 40px;                /* Standard height for uniformity */
    padding: 0 10px;             /* Padding for readability */
    font-size: 16px;             /* Font size */
    color: #fff;                /* Text color */
    border: 1px solid rgba(0, 255, 72, 0.55);  /* Green border */
    border-radius: 2px;         /* Slight border radius */
    outline: none;              /* Remove outline */
    background: linear-gradient(180deg, #414141 0%, #353535 100%); /* Gradient background */
    margin-bottom: 12px;        /* Space between input fields */
}

/* Highlight the input field with green border on focus */
.contact-input:focus {
    border-color: rgba(0, 255, 72, 0.9);  /* Stronger green border when focused */
    box-shadow: 0 0 8px rgba(0, 255, 72, 0.2);  /* Subtle glow around the box */
}

/* Styling for the labels */
.contact-label {
    font-size: 14px;         /* Font size for labels */
    color: #e8e8e8;          /* Light label color */
    display: block;          /* Block display for labels */
    margin-bottom: 6px;      /* Space between label and input */
}
/* =========================================================
   BLOCK 07 SECTION TITLES & RULES
   ========================================================= */

.var-section-title {
    margin: 20px 0 8px 0;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2.8px;
    text-transform: uppercase;

    color: #e6c86a;
    text-shadow: 0 0 5px rgba(212,175,55,0.18);
}

.var-section-subtitle {
    margin-bottom: 10px;
    margin-top: 2px;

    font-size: 14px;
    font-weight: 400;

    letter-spacing: 0.4px;
    line-height: 1.3;

    color: #9a9a9a;      /* softer than #888 */
    opacity: 1.0;
}

.banner-rule {
    width: 100%;
    height: 1px;
    margin: 8px 0 16px 0;

    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-soft) 18%,
        var(--gold-soft) 82%,
        transparent 100%
    );
}


/* =========================================================
   BLOCK 08 ENGINE STYLES (SLIDERS, VALUES)
   ========================================================= */

.afford-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    align-items: end;

    margin: 10px 0 14px 0;
    text-align: center;
}

.afford-label {
    margin-bottom: 6px;

    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #8f7a45;
    opacity: 0.55;

    transition:
        color 0.18s ease,
        opacity 0.18s ease,
        text-shadow 0.18s ease,
        transform 0.18s ease;
}

.afford-label.active-label {
    color: #f2d16b !important;
    opacity: 1 !important;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(242, 209, 107, 0.22);
    transform: translateY(-1px);
}

.control-wrap {
    margin-top: 12px;
    padding: 0 0 12px 0;
    border-top: 1px solid #727272;
}


/* =========================================================
   BLOCK 09 Custom Slider Container 
   ========================================================= */
.slider-shell {
  position: relative;
  height: 60px;
  margin: 8px 0;
}


/* =========================================================
   BLOCK 10 Slider Track using slot.png (Custom track)
   ========================================================= */

.slider-track {
  position: absolute;
  top: 21px;
  left: 0;
  right: 0;
  height: 30px;  /* Adjust height to make slot taller */
  background: url('app_images/slot.png') no-repeat center center;  /* Slot image used as track */
  background-size: cover;  /* Ensure it fills the width of the slider */
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #383838;
}


/* =========================================================
   BLOCK 11 Custom Slider Input — native thumb only; aligned with .slider-track (matches V1.2 overlay size/position)
   ========================================================= */

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 11px;   /* === Position Slider Knob === */
  left: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  background: transparent;
  outline: none;
  z-index: 3;
  cursor: pointer;
  box-sizing: border-box;
}


/* =========================================================
   BLOCK 12 Transparent track over slot image (Chrome, Safari) 
   ========================================================= */

.custom-slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  height: 30px;
  border: none;
}


/* =========================================================
   BLOCK 13 50px thumb matches V1.2 .knob-image dimensions from app
   ========================================================= */

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  margin-top: -10px;
  background: url('app_images/knob_highlight.png') no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}


/* =========================================================
   BLOCK 14 Firefox
   ========================================================= */

.custom-slider::-moz-range-track {
  background: transparent;
  height: 30px;
  border: none;
}

.custom-slider::-moz-range-thumb {
  width: 50px;
  height: 50px;
  margin-top: -10px;
  border: none;
  background: url('app_images/knob_highlight.png') no-repeat center;
  background-size: contain;
  cursor: pointer;
}


/* =========================================================
   BLOCK 15 IE/Edge legacy
   ========================================================= */

.custom-slider::-ms-track {
  background: transparent;
  height: 30px;
  border: none;
  color: transparent;
}

.custom-slider::-ms-thumb {
  width: 50px;
  height: 50px;
  margin-top: -10px;
  background: url('app_images/knob_highlight.png') no-repeat center;
  background-size: contain;
  border: none;
  cursor: pointer;
}


/* =========================================================
   BLOCK 16 SECTION IMAGE BANNERS
   ========================================================= */

.section-banner {
    width: 100%;
    margin: 12px 0 16px 0;
    padding: 0 6px;

    background: transparent;
}

.section-banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;

    object-fit: contain;
    border: 1px solid #5f5f5f;
    border-radius: 4px;
    background: #111;
}


/* =========================================================
   BLOCK 17 PAYMENT MODE / SEND LABEL
   ========================================================= */

.mode-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;

    margin: 4px 0 6px 0;
}

.mode-label {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1.2px;
    text-transform: uppercase;

    color: #a88c4a;
    opacity: 0.7;
}


/* =========================================================
   BLOCK 18 | SEND BUTTON 
   ========================================================= */
   
.send-button {
    width: 100%;
    max-width: 275px;
    padding: 12px 0;

    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;

    color: #f0d36f;

    background: linear-gradient(
        180deg,
        rgba(52, 48, 34, 0.92),
        rgba(18, 18, 18, 0.98)
    );

    border: 1px solid #d2aa3b;

    text-shadow: 0 0 5px rgba(212,175,55,0.35);

    box-shadow:
        inset 0 0 8px rgba(255,255,255,0.04),
        0 0 12px rgba(212,175,55,0.18);

    cursor: pointer;
    transition: all 0.2s ease;
}

.send-button:hover {
    background: var(--gold-soft);
    color: #111;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.led-payment {
    font-family: "DS-Digital", monospace;
    font-size: 28px;
    color: var(--green);
    text-shadow: 0 0 8px rgba(0, 255, 72, 0.18);
}

.led-common {
    font-family: 'DS-Digital', monospace;
    font-size: 28px;
    color: var(--green);
}


/* =========================================================
   BLOCK 19 DATA LIST STYLES
   grid-template-columns: 1.2fr 0.9fr 65 to 95*wider-px; 
   The last# after 0.9fr determines width space of LED
   ========================================================= */

.var-row {
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 95px;
    gap: 8px;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.var-name {
    padding-left: 4px;

    font-size: 17px;
    color: #f3f3f3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* =========================================================
   ADJUST INPUT SIZE FOR CONSISTENCY
   ========================================================= */

.var-input {
    width: 100%;
    height: 34px; /* Ensure it’s not too tall */
    padding: 0 8px;
    font-size: 17px;
    color: #fff;
    border: 1px solid #7a7a7a;
    border-radius: 2px;
    outline: none;
    background: linear-gradient(180deg, #414141 0%, #353535 100%);
}

.var-input:focus {
    border-color: var(--gold-soft);
}


/* =========================================================
   BLOCK 20 DIGITAL CHECKMARK ICON (FIXED)
   ========================================================= */

.var-input {
    padding-right: 30px;
    position: relative;
}

.var-input[readonly] {
    opacity: 0.92;
    cursor: default;
    color: #e8e8e8;
}

.var-readout {
    font-family: "DS-Digital", monospace;
    font-size: 17px;
    text-align: right;
    color: var(--green);
}

/* ===== BALANCED TOP READOUT ===== */
.top-readout-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    align-items: center;
    text-align: center;
    margin: 10px 0 12px 0;
}

.readout-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.readout-led {
    font-family: "DS-Digital", monospace;
    font-size: 22px;
    color: #00ff66;
}

.readout-label {
  color: #e6c86a;  /* your gold */
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
}


/* =========================================================
   BLOCK 20A GREEN INPUT FRAME
   ========================================================= */

/* Editable inputs only */
.var-input:not([readonly]) {
    border: 1px solid rgba(0, 255, 72, 0.55);
}

/* Slight glow (very subtle, not neon) */
.var-input:not([readonly]):focus {
    border-color: #00ff48;
    box-shadow:
        0 0 6px rgba(0,255,72,0.35),
        inset 0 0 4px rgba(0,255,72,0.15);
}


/* =========================================================
   BLOCK 21 LUXURY CHECKBOX / RADIO
   ========================================================= */

input[type="checkbox"],
input[type="radio"] {
    width: 18px;
    height: 18px;

    justify-self: start;
    cursor: pointer;

    accent-color: var(--gold-soft);   /* 🔥 THIS is the gold magic */
}

.compliance-footer {
    margin-top: 14px;

    font-size: 11px;
    line-height: 1.4;
    text-align: center;
    color: #888;
}


/* =========================================================
   BLOCK 22 COLLAPSIBLE SECTIONS
   ========================================================= */

.collapse-section {
    width: 100%;
    margin-bottom: 4px;
    overflow: hidden;
}

.collapse-header {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 16px 0 12px 0;

    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: opacity 0.2s ease;
}

.collapse-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent 0%,
        var(--gold-soft) 18%,
        var(--gold-soft) 82%,
        transparent 100%
    );
}

.collapse-header:hover {
    opacity: 0.8;
}

.collapse-header:hover .collapse-title {
    color: #e8c84a;
}

.collapse-title {
    flex: 1;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    transition: color 0.2s;
}

.collapse-sub {
    margin-right: 10px;

    font-size: 12px;
    font-style: italic;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #888;
}

.collapse-chevron {
    display: inline-block;
    line-height: 1;

    font-size: 15px;
    color: var(--gold-soft);
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.2s;
}

.collapse-chevron.open {
    transform: rotate(180deg);
    opacity: 1;
}

.collapse-body {
    max-height: 0;
    overflow: hidden;

    background: transparent;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.collapse-inner {
    padding: 14px 4px 6px 4px;
}

.with-arrow {
    display: flex;
    align-items: center;
    gap: 6px;
}

.section-arrow {
    font-size: 10px;
    color: var(--gold-soft);
    opacity: 0.8;
}


/* =========================================================
   BLOCK 23 Style for the radio button group
   ========================================================= */

.radio-group {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.radio-group label {
  font-size: 16px;
  color: #fff; /* Adjust based on your color scheme */
}


/* =========================================================
   BLOCK 24 TOP BANNER FULL BLEED
   ========================================================= */

.banner-top {
    width: calc(100% + 30px);
    margin: 12px -15px 16px -15px;
    padding: 0;
}

.banner-top img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;

    border: none;
    border-radius: 0;
    background: none;
}


/* =========================================================
   BLOCK 25 IMAGE SLIDE-DOWN HIDDEN
   ========================================================= */
   
.img-block {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.main-img {
    width: 100%;
    display: block;
}

/* ARROW */
.img-toggle {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: 0.3s;
}

.img-toggle:hover {
    color: gold;
}

/* HIDDEN IMAGE */
.img-hidden {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1.10s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.img-hidden img {
    width: 100%;
    display: block;
}

/* ACTIVE STATE */
.img-block.active .img-hidden {
    max-height: 600px;
}
   

/* =========================================================
   BLOCK 26 SEND PORTRAIT
   ========================================================= */
   
.profile-strip {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 12px;

  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 8px;

  background: linear-gradient(
    180deg,
    rgba(40,40,40,0.35),
    rgba(20,20,20,0.6)
  );

  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.04),
    0 0 10px rgba(212,175,55,0.12);
}

.profile-pic {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  object-fit: cover;

  border: 2px solid rgba(212,175,55,0.45);
  box-shadow: 0 0 8px rgba(212,175,55,0.18);
}

.profile-name {
  color: #e6c86a;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.profile-info a {
  font-size: 12px;
  color: #bfa76a;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.profile-info a:hover {
  color: #f0d36f;
  text-shadow: 0 0 4px rgba(212,175,55,0.25);
}


/* =========================================================
   BLOCK 27 MEDIA RESPONSIVE-01
   ========================================================= */

@media (max-width: 480px) {
    .app-shell {
        padding: 10px 5px;
    }

    .main-card {
        margin: 5px;
        padding: 12px 12px;
    }

    .var-row {
        grid-template-columns: 1.1fr 0.8fr 58px;
        gap: 5px;
    }

    .var-name {
        font-size: 15px;
    }

    .var-input {
        padding: 0 5px;
        font-size: 16px;
    }

    .var-readout {
        font-size: 16px;
    }

    .afford-value {
        font-size: 20px;
    }

    .led-payment {
        font-size: 20px;
    }

		.top-logo {
				width: 145px;
				height: 145px;
		}

    .slider-track {
        top: 25px;
        height: 8px;
    }

    .custom-slider {
        top: 25px;
        height: 8px;
    }

    .custom-slider::-webkit-slider-runnable-track {
        height: 8px;
    }

    .custom-slider::-webkit-slider-thumb {
        margin-top: -21px;
    }

    .custom-slider::-moz-range-track {
        height: 8px;
    }

    .custom-slider::-moz-range-thumb {
        margin-top: -21px;
    }

    .custom-slider::-ms-track {
        height: 8px;
    }

    .custom-slider::-ms-thumb {
        margin-top: -21px;
    }

    .tick-strip {
        top: 33px;
    }
}


/* =========================================================
   BLOCK 28 MEDIA RESPONSIVE-02
   ========================================================= */
   
@media (max-width: 380px) {
    .var-row {
        grid-template-columns: 1fr 75px 50px;
    }

    .var-name {
        font-size: 14px;
    }

    .var-input {
        height: 30px;
        font-size: 15px;
    }

    .var-readout {
        font-size: 15px;
    }

    .agent-name {
        font-size: 16px;
    }

		.top-logo {
				width: 175px;
				height: 175px;
		}

    .afford-value {
        font-size: 18px;
    }
}

@media (min-width: 481px) {
    .app-shell {
        align-items: center;
    }
}
