/* Claude */

:root {
  --primary: #1E88E5;
  --primary-dark: #1565C0;
  --primary-light: #E3F2FD;
  --bg: #F3F5FC;
  --header-bg: #EEF2F9;
  --surface: #FFFFFF;
  --text: #1A1F2E;
  --text-muted: #6B7280;
  --border: #E5E9F2;
  --success-bg: #D1F5DE;
  --success-text: #16A34A;
  --pending-bg: #FEF3C7;
  --pending-text: #B45309;
  --footer: #1E5180;
  --accent: #F5B820;
  --shadow: 0 4px 24px rgba(30, 81, 128, 0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 14px;
}
a { color: inherit; text-decoration: none; }

/* Header */
.header {
  background: var(--header-bg);
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-weight: 800;
  font-size: 28px;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.nav { display: flex; gap: 44px; }
.nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary); }
.nav a.active { color: var(--primary); }
.btn-primary {
  background: var(--primary);
  color: #fff;
  border: 0;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, background 0.2s;
  box-shadow: 0 4px 14px rgba(30, 136, 229, 0.25);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* Main */
.main {
  flex: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  padding: 28px 48px 48px;
  align-items: start;
}
.sidebar {
  background: #fff;
  border-radius: 14px;
  padding: 28px 18px;
  box-shadow: var(--shadow);
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar h2 {
  font-size: 19px;
  font-weight: 700;
  padding: 0 10px 20px;
}
.sidebar-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sidebar-nav a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.18s, color 0.18s;
}
.sidebar-nav a:hover { background: rgba(30,136,229,0.06); color: var(--primary); }
.sidebar-nav a.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.user-block { padding-top: 16px; border-top: 1px solid var(--border); }
.user-card { display: flex; gap: 12px; align-items: center; padding: 12px 8px 10px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #CBD5F5, #E5E9F2);
}
.user-info h4 { font-size: 14px; font-weight: 700; }
.user-info p { font-size: 12px; color: var(--text-muted); }
.logout { color: var(--primary); font-weight: 600; padding: 6px 10px; display: inline-block; }
.logout:hover { text-decoration: underline; }

/* Content */
.content {
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: var(--shadow);
  min-height: 560px;
}
.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.content-header h1 {
  font-size: 22px;
  font-weight: 700;
}
.pagination { display: flex; gap: 4px; }
.pag-btn {
  background: none; border: 0; cursor: pointer;
  color: var(--primary);
  width: 32px; height: 32px;
  border-radius: 8px;
  font-size: 20px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.pag-btn:hover:not(:disabled) { background: var(--primary-light); }
.pag-btn:disabled { opacity: 0.25; cursor: not-allowed; }

/* Table */
table { width: 100%; border-collapse: separate; border-spacing: 0 6px; }
thead th {
  text-align: left;
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 18px;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}
thead th .sort-ind {
  opacity: 0.35;
  margin-left: 4px;
  font-size: 10px;
  transition: opacity 0.2s;
}
thead th.sorted .sort-ind { opacity: 1; }
thead th:hover .sort-ind { opacity: 0.7; }

tbody tr {
  cursor: pointer;
  transition: background 0.18s;
}
tbody td {
  padding: 14px 18px;
  background: #fff;
  font-size: 14px;
  color: rgba( 0, 0, 0, 0.76 );
  /*color: var(--text);*/
  border-top: 0.5px solid var( --Overlays-Default, rgba( 0, 0, 0, 0.2 ) );
  /*border-top: 1.5px solid transparent;
  border-bottom: 1.5px solid transparent; */
  
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0px;
  /*text-align: center;*/
}

/*
tbody td:first-child {
  border-radius: 8px 0 0 8px;
  border-left: 1.5px solid transparent;
}
tbody td:last-child {
  border-radius: 0 8px 8px 0;
  border-right: 1.5px solid transparent;
} */

tbody tr:hover td { background: #FAFBFF; }
tbody tr.selected td { border-bottom: none; } /* border-color: var(--primary); } */

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}
.badge.pending { background: var(--pending-bg); color: var(--pending-text); }
.badge.success { background: var(--success-bg); color: var(--success-text); }

/* Footer */
.footer {
  background: var(--footer);
  color: rgba(255,255,255,0.85);
  padding: 48px 48px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.footer h3 {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; color: #fff; }
.footer p { font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer li a { font-size: 14px; transition: color 0.2s; }
.footer li a:hover { color: var(--accent); }
.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

@media (max-width: 860px) {
  .header { padding: 16px 20px; flex-wrap: wrap; gap: 16px; }
  .nav { order: 3; width: 100%; justify-content: center; gap: 24px; }
  .main { grid-template-columns: 1fr; padding: 20px; }
  .sidebar { min-height: auto; }
  .content { padding: 20px; overflow-x: auto; }
  .footer { padding: 32px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
/* Claude End */

/* Pacify */
.wrap {
    background-color: rgb( 204, 195, 194 ); /* #F8FAFF; */
}

.rr-menu-text {
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
}

.rr-menu-text.active {
    color: rgb( 47, 128, 237 );
}

.demoSec {
    min-height: 600px;
    padding: 3px;
}
  
.spLoader {
    margin: 40px auto;
    border: 20px solid #EAF0F6;
    border-radius: 50%;
    border-top: 20px solid #FF7A59; /* rgb( 47, 128, 237 ); */
    width: 150px;
    height: 150px;
    animation: spinner 1.5s linear infinite;
}

@keyframes spinner {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
  
.progressbar-container {
    /*display: flex; */
    justify-content: center;
    align-items: center;
    width: 280px;
    margin: auto;
    margin-bottom: 10px;
}

.progress-desc {
    font-family: Plus Jakarta Sans;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    max-width: 280px;
    height: 6px;
    background-color: rgb( 200, 200, 215 );
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #FF7A59; /* rgb( 47, 128, 237 ); */
    animation: fill 30s forwards; /*infinite; */
}

@keyframes fill {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
}

.pageTitle {
    padding-top: 60px;
    
    /* From Figma */
    color: rgb( 26, 23, 21 );
    font-family: "Roboto Condensed";
    font-size: 50px;
    font-weight: 700;
    line-height: 68px;
    text-align: center;
}
  
.pageDescSec  {
    max-width: 800px;
}

.pageDescTitle {
    text-align: center;
    margin-bottom: 14px;
}

.pageDescText {
    color: #444;
    font-size: 20px;
    line-height: 1.65;
    text-align: center;
}

.section2 {
    background-color: white;
    padding: 20px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 25px;
    width: 80%;
    border-radius: 20px 20px 20px;
    /*box-shadow: 15px 20px 80px 0px rgba( 204, 195, 194, 0.80) */ /* rgba(222, 239, 255, 0.60); */
    box-shadow: 0px 0px 50px 10px rgba( 150, 142, 140, 0.60 );
    max-width: 1000px;
}
  
.section {
    padding: 25px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    /*width: 80%; */
    border-radius: 20px 20px 20px;
    /*box-shadow: 15px 20px 80px 0px rgba( 204, 195, 194, 0.80) */ /* rgba(222, 239, 255, 0.60); */
    /*box-shadow: 0px 0px 50px 10px rgba( 150, 142, 140, 0.60 ); */
    /*max-width: 1000px; */
    /*background-color: rgb( 247, 247, 247 ); */ /* white; */
    /* background-image: linear-gradient( rgb( 247, 247, 247 ), rgb( 247, 247, 247 ), rgb( 235, 232, 231 ) ); */
    
    border: 1px solid #fff;
    background: #F8FCFE;
}
  
.section0 {
    padding: 25px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    /*width: 80%; */
    border-radius: 20px 20px 20px;
    /*box-shadow: 15px 20px 80px 0px rgba( 204, 195, 194, 0.80) */ /* rgba(222, 239, 255, 0.60); */
    box-shadow: 0px 0px 50px 10px rgba( 150, 142, 140, 0.60 );
    /*max-width: 1000px; */
    background-color: rgb( 247, 247, 247 ); /* white; */
    background-image: linear-gradient( rgb( 247, 247, 247 ), rgb( 247, 247, 247 ), rgb( 235, 232, 231 ) );
}

.centerContent {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    /*padding: 10px; */
}
  
.center {
    margin: auto;
    width: 80%;
    padding: 10px;
}

.pitchLabel {
  font-size: 10px;
  font-weight: 300;
  color: rgb( 110, 110, 110 );
  background: transparent;
  padding: 2px 4px;
  
  border: 2px solid transparent;
  border-radius: 4px;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.pitchLabel:hover {
    border-color: #4a90e2;
    box-shadow: 0 0 6px rgba( 74, 144, 226, 0.4 );
}

.pitchEditor {
  font-size: 10px;
  font-weight: 100;
  color: rgb( 75, 75, 75 );
  
  display: inline-block;
  padding: 2px 4px;
  border: 2px solid #4a90e2;                 /* Same color as hover highlight */
  border-radius: 4px;
  outline: none;                              /* Remove default browser outline */
  box-shadow: 0 0 6px rgba( 74,144,226,0.4 );   /* Soft glow */
  transition: border-color 150ms ease,
              box-shadow 150ms ease,
              background-color 150ms ease;
  background-color: rgba( 74, 144, 226, 0.08 );    /* Subtle edit-state background */
}

.edgeEditor {
    position: absolute;
    bottom: 10px;
    /*left: calc(100% + 5px); */
    /*right: calc(100% + 300px);*/
    /*right: 100px; */
    width: 200px;
    height: 270px;
    padding: 16px;
    padding: 25px 30px 10px 20px;
    background-color: white;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    /*box-sizing: border-box;*/
    box-shadow: 0 2px 10px 0 rgba(139, 146, 151, 0.2);
    z-index: 9999;
    
    opacity: 0;
    transform: scale( 0.95 );
    transition: opacity 150ms ease, transform 150ms ease;
    pointer-events: none;

    /* visibility: hidden; */
}

.edgeEditor.show {
    opacity: 1;
    transform: scale( 1 );
    pointer-events: auto;
}

.edgeEditor.hidden {
    display: none;
}

.edgeEditorItem {
    border: 2px solid transparent;
    border-radius: 4px;
    transition: border-color 150ms ease, box-shadow 150ms ease;
}

.edgeEditorItem:hover {
    border-color: #4a90e2;
    box-shadow: 0 0 6px rgba( 74, 144, 226, 0.4 );
}

.edgeEditorItem.selected {
    box-shadow: 0 0 6px rgba( 74, 144, 226, 0.4 );   /* Soft glow */
    transition: border-color 150ms ease,
                box-shadow 150ms ease,
                background-color 150ms ease;
    background-color: rgba( 74, 144, 226, 0.08 );    /* Subtle edit-state background */
}

.edgePopup {
    /*
    position: absolute;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.15 );
    opacity: 0;
    transform: scale( 0.95 );
    transition: opacity 150ms ease, transform 150ms ease;
    pointer-events: none; */
    
    position: absolute;
    width: 140px;      /* fixed width */
    height: 80px;      /* fixed height */
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba( 0, 0, 0, 0.15 );
    opacity: 0;
    transform: scale( 0.95 );
    transition: opacity 150ms ease, transform 150ms ease;
    pointer-events: none;
    visibility: hidden;
}

.edgePopup.show {
    /*
    opacity: 1;
    transform: scale( 1 );
    pointer-events: auto; */
    opacity: 1;
    transform: scale( 1 );
    pointer-events: auto;
    visibility: visible;
}

.edgePopup.hidden {
    display: none;
}

.color-grid {
    display: grid;
    grid-template-columns: repeat( 3, 24px );
    gap: 8px;
}

.swatch {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ddd;
}

.swatch:hover {
    border-color: #555;
}

.canvas3dpos {
    position: relative;
    top: 0px;
}
  
.moreInfo {
    /* ic:baseline-info */
    position: absolute;
    width: 24px;
    height: 27px;
    left: 348px;
    top: 43px;


    /* Inside auto layout */
    flex: none;
    order: 6;
    flex-grow: 0;
    z-index: 6;
}
  
.secTitleTxt {
    /*padding: 6px;*/
    /*border-bottom: 1px solid #D3D3D3; */
    /* font-size: 18px; */
    /* font-weight: 550; */ /* bold; */
    color: rgb( 68, 68, 68 );
    margin: 0 auto;
    margin-right: 7px;
    /*padding: 10px; */
    
    /* From Figma*/
    font-family: "Roboto Condensed";
    font-size: 28px;
    font-weight: 800;
    line-height: 33px;
    text-align: center;
}
  
.secTitle {
    padding: 10px;
}
  
.addrTitle {
    /*background-color: rbg(240, 246, 255); */ /* #F8FAFF; */
    width: 100%;
    padding: 6px;
    /*border-bottom: 1px solid #D3D3D3; */
    margin-bottom: 2px;
    font-size: 13px;
    font-weight: 550; /* bold; */
}
  
.detTitle {
    /* background-color: rbg(240, 246, 255); */ /* #F8FAFF; */
    width: 100%;
    padding-bottom: 8px;
    /* padding-left: 8px; */ /* 15px; */
    border-bottom: 1px solid rgb( 235, 232, 231 ); /* #D3D3D3; */
    margin-bottom: 6px;
    color: rgb( 68, 68, 68 );
    font-size: 13px;
    font-weight: 550; /* bold; */
}
  
.detFooter {
    width: 100%;
    padding-top: 8px;
    /* padding-left: 8px; */ /* 15px; */
    border-top: 1px solid rgb( 235, 232, 231 ); /* #D3D3D3; */
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 550; /* bold; */
    color: rgb( 47, 128, 237 );
}
  
.detIcn {
    width: 20px;
    height: 20px;
    margin: 0 auto;
    margin-left: 5px;
}

.detSec {
    /*background-color: white;
    border: 1px solid #D3D3D3; */
    background-color: #fff;
    border: 1px solid #E4F0F6;
    
    border-radius: 9px;
    margin: 15px;
    padding: 16px;
    padding-top: 11px;
    
    /* box-shadow: 0px 0px 10px 2px rgba( 235, 232, 231, 0.60 ); */
}

.span0 {
    display: inline-block;
    width: 25px;
    margin-left: 3px;
    margin-right: 3px;
    margin-bottom: 3px;
    border-radius: 5px; /* 5px 5px; */
}

.span1 {
    display: inline-block;
    color: rgb( 95, 95, 95 );
    width: 85px;
    padding: 3px;
    margin: 2px;
    border-radius: 5px; /* 5px 5px; */
    font-size: 13px;
    font-weight: 300;
}

.span2 {
    display: inline-block;
    width: 80px;
    padding: 5px;
    margin: 0px;
    margin-right: 7px;
    font-size: 13px;
}

.split {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
}

.splitx {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    overflow-x: hidden;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.left {
    left: 0;
    width: 65%;
}

.right {
    right: 0;
    width: 35%
}
  
.btn-group {
    margin:0 auto;
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: 400px;
}

.btns {
    padding: 8px 32px;
    border-radius: 10px;
    /*width: 130px;
    height: 44px; */
    /*margin: 3px;*/
    
    background: #2F80ED;
    color: #FEFDF9;
    font-size: 15px;
    font-weight: 400;
    border: 1px solid #2F80ED;
    transition: 0.4s all ease;
}
  
.btns:hover {
    background: #FEFDF9;
    color: #2F80ED;
}
  
.iconButton {
    background: transparent;
    border-radius: 10px;
    border: 1px solid transparent;
    width: 44px;
    height: 44px;
    padding: 10px;
    position: relative;
    top: 0px;
}
  
.iconButton:hover {
    border: 1px solid #2F80ED;
}

.undoIcon {
    position: absolute;
    top: 8px;
    right: 10px;
}
  
.iconButtonSmall {
    position: relative;
    border: 1px solid transparent;
    background: transparent;
}

.nocur {
    cursor: none;
}

.grad {
    /*background-color: rgb( 247, 247, 247 );
    background-image: linear-gradient( rgb( 247, 247, 247 ), rgb( 247, 247, 247 ), rgb( 235, 232, 231 ) ); */
}

.grad0 {
    background-color: rgb( 247, 247, 247 );
    background-image: linear-gradient( rgb( 247, 247, 247 ), rgb( 247, 247, 247 ), rgb( 235, 232, 231 ) );
}

.arrowCont {
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 3px;
    min-width: 50px;
    padding: 25px;
}

.arrow {
    width: 50px;
    max-height: 50px;
    max-width: 50px;
    /*position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; */
    top: 50%;
    margin: auto;

    /*
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto; */
}
  
.viewSec {
    background-color: white;
    border: 1px solid #D3D3D3;
    border-radius: 8px;
    margin: 15px;
    /*padding: 2px;*/
    overflow: hidden;
    /*padding-bottom: 10px; */
    box-shadow: 0px 0px 10px 2px rgba( 235, 232, 231, 0.60 );
}
  
.helpTxt {
    position: absolute;
    bottom: 10px;
    /*left: calc(100% + 5px); */
    /*right: calc(100% + 300px);*/
    /*right: 100px; */
    width: 320px;
    height: 98px;
    padding: 16px;
    padding: 10px 33px 10px 16px;
    background-color: white;
    border: 1px solid #E9E9E9;
    border-radius: 10px;
    /*box-sizing: border-box;*/
    box-shadow: 0 2px 10px 0 rgba(139, 146, 151, 0.2);
}
  
.tooltipText {
    /*width: 320px;
    height: 200px; */
    /*color: rgb( 95, 95, 95 ); */
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: #444444;
    
    /*styleName: sm/Regular; */
    /*color: rgba(68, 68, 68, 1); */
    font-family: 'Plus Jakarta Sans', sans-serif;
    /*font-size: 14px;
    font-weight: 400;
    line-height: 20px; */
    /*
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none; */
    /*box-sizing: border-box*/
    display: block;
}
  
#thumbnails {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

#thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s, border-color 0.2s;
}

#thumbnails img:hover {
    transform: scale(1.1);
    border-color: #0078d7;
}

#thumbnails img.active {
    border-color: #0078d7;
    box-shadow: 0 0 8px rgba(0,120,215,0.6);
}

.rr-item-bar-and-viewer-button {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 2px;
}

.item-bar-wrapper {
    text-align: center; /* centers the inline-flex bar */
    margin-bottom: 0px;
}

.item-bar {
    position: relative;
    display: inline-flex;
    gap: 5px;
    margin-bottom: 2px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 4px;
}

.item-btn {
    background: none;
    border: none;
    padding: 0.3rem 0;
    font-size: 12px;
    cursor: pointer;
    color: #444;
    width: 40px;
    position: relative;
}

.item-btn.active {
    color: #0078ff;
}

/* The animated underline */
.underline {
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: #0078ff;
    transition: left 0.25s ease, width 0.25s ease;
}

/* ROOF RUN */

.rr-new-rep-container {
    width: 697px;
    /*height: 503px;*/
    gap: 10px;
    border-radius: 20px;
    padding-top: 72px;
    padding-right: 92px;
    padding-bottom: 72px;
    padding-left: 92px;
    margin: 40px auto;
    /*margin-top: 40px;*/
    background: rgba( 255, 255, 255, 1 );
    box-shadow: 19px 30px 112px 0px rgba( 222, 239, 255, 0.6 );
}

.rr-new-rep-title {
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-size: 30px;
    leading-trim: NONE;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: center;
    color: rgba( 47, 128, 237, 1 );
}

.rr-new-rep-addr-inp {
    border-radius: 10px;
    background: rgba( 245, 249, 255, 1 );
    border: 1px solid rgba( 47, 128, 237, 0.1 );
}

.rr-new-rep-subcard {
    gap: 20px;
    border-radius: 16px;
    padding: 50;
    background: rgba( 248, 250, 253, 1 );
}

.rr-cancel-btn {
    padding: 8px;
    border-radius: 10px;
    width: 130px;
    height: 44px;
    /*margin: 3px;*/
    
    color: rgba( 252, 130, 31, 1 );
    font-size: 15px;
    font-weight: 400;
    border: 1px solid rgba( 255, 255, 255, 0 );
    background: rgba( 255, 255, 255, 1 );
    transition: 0.4s all ease;
}
  
.rr-cancel-btn:hover {
    border: 1px solid rgba( 252, 130, 31, 1 );
    background: rgba( 255, 255, 255, 1 );
}

.rr-section {
    background: #fff;
    padding: 28px 32px;
    box-shadow: var(--shadow);
    border-radius: 10px;
    border: 1px solid rgba(222, 239, 255, 0.6);
}

.rr-settings-section {
    width: 412px;
    padding: 51px 63px;
}

/* reports table */
.rr-table-section {
    padding: 28px 32px;
    background: rgba( 255, 255, 255, 1 );
    border-radius: 10px;
    border: 1px solid rgba( 233, 233, 233, 1 );
}
.report-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    /*font-family: Arial, sans-serif;*/
}

.report-table th,
.report-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.report-table th {
    background-color: #f4f4f4;
}

.report-table tr {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.report-table tr:hover {
    background-color: #f1f1f1;
}


/* Raw Data Viewer */
.rr-button-icon {
    width: 18px;
    height: 18px;

    flex: 0 0 auto;
    display: block;
}

.rr-raw-data-viewer-open {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    height: 28px;
    padding: 0 12px;

    width: auto;
    flex: 0 0 auto;

    border: 1px solid #d4d4d8;
    border-radius: 7px;

    background: #fafafa;
    color: #444;

    font-size: 12px;
    line-height: 26px;

    cursor: pointer;
    user-select: none;

    transition:
        background-color .18s ease,
        border-color .18s ease,
        color .18s ease,
        box-shadow .18s ease,
        transform .08s ease;
}

.rr-raw-data-viewer-open:hover {
    background: #ffffff;
    border-color: #9bbcf7;
    color: #1f5fbf;
    box-shadow: 0 1px 4px rgba(0,0,0,.10);
}

.rr-raw-data-viewer-open:active {
    transform: translateY(1px);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.12);
}

.rr-raw-data-viewer-open:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 2px rgba(59,130,246,.18),
        0 1px 4px rgba(0,0,0,.10);
}

.rr-raw-data-viewer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);

    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity .25s ease,
                visibility .25s ease;

    z-index: 1000;
}

.rr-raw-data-viewer-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rr-raw-data-viewer-window {
    width: 90%;
    height: 90%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    position: relative;

    transform: scale(.96);
    transition: transform .25s ease;
}

.rr-raw-data-viewer-overlay.show .rr-raw-data-viewer-window {
    transform: scale(1);
}

/*
.rr-raw-data-viewer-overlay {
    display:none;
    position:fixed;
    inset:0;
    background:rgba( 0, 0, 0, .55 );
    z-index:1000;
}

.rr-raw-data-viewer-window {
    position:absolute;
    left:5%;
    top:5%;
    width:90%;
    height:90%;
    background:white;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba( 0, 0, 0, .35 );
} */

.rr-raw-data-viewer-canvas {
    width:100%;
    height:100%;
}

.rr-raw-data-viewer-close {
    position: absolute;
    top: 14px;
    right: 14px;

    width: 32px;
    height: 32px;

    border: none;
    background-color: transparent;

    background-image: url( "../images/close-circle-icon.svg" );
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

    cursor: pointer;

    transition:
        transform .15s ease,
        filter .15s ease;

    z-index: 10;
}

.rr-raw-data-viewer-close:hover {
    background-image: url( "../images/close-circle-blue-icon.svg" );
    transform: scale( 1.08 );
}

.rr-raw-data-viewer-close:active {
    transform: scale( 0.95 );
}

.secView {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.secView.svShow {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.rr-report-section {
    padding: 80px;
    gap: 10px;
    box-shadow: 19px 30px 112px 0px rgba( 222, 239, 255, 0.6 );
}

.rr-report-title-container {
    
}

.rr-report-title {
    width: 400px;
    height: 58px;
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
}

.rr-report-address {
    /*width: 400px;
    height: 60px;*/
    justify-content: space-between;
    border-radius: 10px;
    border-width: 1px;
    padding-top: 14px;
    padding-right: 35px;
    padding-bottom: 14px;
    padding-left: 35px;
    border: 1px solid rgba( 100, 181, 246, 1 );
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
    color: rgba( 20, 17, 16, 1 );
    text-align: center;
}

.rr-quote-widget {
    /* Component-scoped variables */
    --accent: #2563eb;
    --border: #d1d5db;
    --bg: #ffffff;
    --text: #111827;
    --muted: #6b7280;

    display: inline-flex;
    align-items: flex-start; /* center; */
    gap: 18px;
    
    padding = 17px;

    /* background: var(--bg);
    border: 1px solid #e5e7eb;
    border-radius: 12px
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,.06); */

    font-family: Plus Jakarta Sans;
    color: var(--text);
    
    /*
    background-color: #fff;
    border: 1px solid #E4F0F6;
    border-radius: 9px;
    margin: 15px;
    padding: 16px;
    padding-top: 11px; */
}

.rr-quote-widget .rr-quote-input-group,
.rr-quote-widget .rr-quote-result {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rr-quote-widget label {
    font-size: .8rem;
    color: var(--muted);
    font-weight: 600;
}

.rr-quote-widget .rr-quote-input-wrapper {
    position: relative;
}

.rr-quote-widget .rr-quote-input-wrapper span {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-weight: 600;
    pointer-events: none;
}

.rr-quote-widget input {
    width: 108px;
    font-size: 15px;
    padding: 8px 12px 8px 28px;

    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.rr-quote-widget input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba( 37, 99, 235, .15 );
}

.rr-quote-widget .rr-quote-result {
    min-width: 100px;
}

.rr-quote-result-label {
    font-family: Plus Jakarta Sans;
    font-weight: 700;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
    
    color: rgba( 47, 128, 237, 1 );
}

.rr-quote-widget .rr-quote-result-value {
    color: var(--accent);
    
    font-family: Roboto Condensed;
    font-weight: 600;
    font-style: Bold;
    font-size: 22px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0px;
    padding-top: 5px
}

/* Profile and Payment Method Section */

.profile-container,
.payment-container {
  width: 420px;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: 35px;
}

.rr-settings-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  
  padding-bottom: 8px;
  border-bottom: 0.5px solid var( --Overlays-Default, rgba( 0, 0, 0, 0.2 ) )
}

.rr-settings-section-header h2 {
  margin: 0;
  
  font-family: Roboto Condensed;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: center;
  
  color: rgba(47, 128, 237, 1);
}

.edit-btn {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 5px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.edit-btn:hover {
  background: #005fcc;
}

.rr-settings-edit-btn {
  /*width: 63px;
  height: 27px; */
  padding: 0px 16px;
  border-radius: 5px;
  font-family: Roboto Condensed;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  /*line-height: 28px; */
  letter-spacing: 0px;
  text-align: center;
  color: rgba( 47, 128, 237, 1 );
  background: rgba( 255, 255, 255, 1 );
  border: 2px solid rgba( 47, 128, 237, 1 );
}

.rr-settings-edit-btn:hover {
  background: rgba( 47, 128, 237, 1 ); /* #005fcc; */
  color: rgba( 255, 255, 255, 1 );
}

.form-group {
  margin-bottom: 18px;
}

.rr-settings-label {
    width: 286px;
    display: block;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
}

.rr-settings-value {
    width: 286px;
    height: 38px;
    gap: 12px;
    background: rgba( 239, 246, 255, 1 );
    
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0px;
    color: rgba(115, 115, 115, 1);
    
    justify-content: space-between;

    border-radius: 5px;
    border: 1px solid rgba( 23, 184, 254, 0.1 );
    padding-top: 16px;
    padding-right: 20px;
    padding-bottom: 16px;
    padding-left: 12px;
}

label {
  display: block;
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  background: #fafafa;
}

input:focus {
  outline: none;
  border-color: #007bff;
  background: #fff;
}


/* New Report Checkout: Payment */

.rr-checkout-container {
    width: 636px;
    gap: 10px;
    border-radius: 20px;
    padding-top: 72px;
    padding-right: 92px;
    padding-bottom: 72px;
    padding-left: 92px;
    margin: 40px auto;
    background: rgba( 255, 255, 255, 1 );
    box-shadow: 19px 30px 112px 0px rgba(222, 239, 255, 0.6);
}

.rr-checkout-title {
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-size: 30px;
    leading-trim: NONE;
    line-height: 44px;
    letter-spacing: 0px;
    text-align: left;
    color: rgba( 47, 128, 237, 1 );
}

.rr-checkout-label {
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
    color: rgba( 16, 14, 13, 1 );
}

.rr-checkout-payment-checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    cursor: pointer;
    
    font-family: Roboto Condensed;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
    color: rgba( 16, 14, 13, 1 );
    
    margin-bottom: 35px;
}

.rr-checkout-payment-checkbox-line input {
    width: 24px;
    height: 24px;
    accent-color: #3b82f6;
    flex-shrink: 0;
}

.rr-checkout-pay-button {
    gap: 10px;
    border: 0;
    border-radius: 10px;
    padding-top: 17px;
    padding-right: 50px;
    padding-bottom: 17px;
    padding-left: 50px;
    
    /* width: 483px; */
    
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-style: ExtraBold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    
    background: rgba( 47, 128, 237, 1 );
    color: rgba( 254, 253, 249, 1 );
    
    cursor: pointer;
}

.rr-checkout-pay-button:hover {
    background: #1565c0;
}

.rr-checkout-pay-button:disabled {
    background: #bdbdbd;
    color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.rr-checkout-pay-button:disabled:hover {
    background: #bdbdbd;
}

.rr-checkout-card-element-container {
    padding: 15px 20px;
    gap: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    border-radius: 10px;
    border-width: 1px;
    
    border: 1px solid rgba( 47, 128, 237, 0.1 );

    background: rgba( 245, 249, 255, 1 );
}

.payment-method-primary-button,
.payment-method-update-cancel-button {
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.payment-method-primary-button {
    background: #1976d2;
    color: white;
    border: none;
}

.payment-method-primary-button:disabled {
    background: #bdbdbd;
    color: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.7;
}

.payment-method-primary-button:disabled:hover {
    background: #bdbdbd;
}

.payment-method-disp-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.payment-method-disp {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 10px 14px;
    border: 1px solid #d8dee4;
    border-radius: 8px;
    background: #fff;

    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;

    max-width: 400px;
}

.payment-method-disp-logo {
    font-size: 32px;
    color: #444;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.payment-method-disp-details {
    display: flex;
    flex-direction: column;
}

.payment-method-disp-card {
    font-weight: 600;
}

.payment-method-disp-expiry {
    /*margin-top: 2px;*/
    color: #777;
    font-size: 13px;
}

.payment-method-disp-expiry.expired {
    color: #d32f2f;
    font-weight: 600;
}

.update-card-button {
    padding: 8px 14px;

    border: 1px solid #1976d2;
    border-radius: 6px;

    background: #1976d2;
    color: white;

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;

    transition: background-color 0.2s ease;
}

.update-card-button:hover {
    background: #1565c0;
}

.update-card-button:active {
    background: #0d47a1;
}

.payment-view {
    opacity: 1;
    max-height: 500px;
    overflow: hidden;

    transition:
        opacity .25s ease,
        max-height .25s ease,
        transform .25s ease;
}

.payment-view.hidden {
    opacity: 0;
    max-height: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

.payment-method-update-cancel-button {
    background: white;
    color: #555;
    border: 1px solid #ccc;
}

/* Settings View: Payment Only */
.payment-section {
  width: 360px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  font-family: "Inter", sans-serif;
}

.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.payment-header h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.payment-edit-btn {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.payment-label {
  font-weight: 600;
  font-size: 15px;
}

.field-label {
  color: #6b7280;
}

.field-value {
  font-weight: 500;
  color: #111827;
}

.rr-signup-bck {
    background: url( "../images/signup-background-img.png" ) center center / cover no-repeat,
                rgba( 255, 255, 255, 1 );
}

.signup-wrapper {
    display: flex;
    justify-content: center;
    margin: 0 0;
    /* margin-bottom: 30px; */
    /* background: transparent; */

    background: url( "../images/signup-background-img.png" ) center center / cover no-repeat,
                rgba( 255, 255, 255, 1 );
    
    /*
  background-color: #f9fbff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
     */
}

.signup-container {
    background: #fff;
    padding: 80px 80px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 1052px;
    width: 1052px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.rr-signup-title {
    /*
    color: #2563eb;
    font-size: 24px;
    margin: 50px; */
  
    margin-bottom: 56px;
    font-family: Plus Jakarta Sans;
    font-weight: 600;
    font-size: 36px;
    leading-trim: NONE;
    line-height: 160%;
    letter-spacing: 0px;
    text-align: left;
    
    color: rgba( 47, 128, 237, 1 );
}

/*
.signup-grid-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
}

.signup-field {
  display: flex;
  flex-direction: column;
}

.signup-field label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
}

.signup-field input {
  background-color: #f5f8ff;
  border: 1px solid #dce3f0;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.signup-field input:focus {
  border-color: #2563eb;
  outline: none;
}

.signup-span-2 {
  grid-column: span 2;
}

.signup-feedback-box {
  border: 1px solid #2563eb;
  border-radius: 6px;
  padding: 10px;
  background-color: #f5f8ff;
}

.signup-state-zip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.signup-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.signup-checkboxes label {
  display: inline-block;
  cursor: pointer;
}

.signup-checkboxes input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 6px;
}

.signup-checkboxes span {
  vertical-align: middle;
}

.signup-checkboxes a {
  color: #2563eb;
  text-decoration: none;
}

.signup-checkboxes a:hover {
  text-decoration: underline;
}

.signup-checkbox-ln{
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signup-btn {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.signup-btn:hover {
  background-color: #1e4fd1;
} */

/*
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #f6f9ff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 60px 20px;
} */

/*
.signup-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 80px 80px;
    box-shadow: 0 10px 40px rgba(40, 90, 180, .08);
}

.signup-card h1 {
    color: #3b82f6;
    font-size: 48px;
    margin-bottom: 50px;
    font-weight: 600;
} */

.signup-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
}

.signup-field {
    display: flex;
    flex-direction: column;
}

.signup-field label {
    /*
    font-weight: 600;
    margin-bottom: 10px;
    color: #222; */
    
    margin-bottom: 13px;
    font-family: Roboto Condensed;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
}

.signup-field input {
    /*
    height: 56px;
    border: 1px solid #dbe8ff;
    border-radius: 10px;
    ackground: #f8fbff; */
    padding: 0 16px;
    /*margin-bottom: 17px;*/
    font-size: 16px;
    
    height: 56px;
    border-radius: 10px;
    border: 1px solid rgba( 47, 128, 237, 0.1 );
    background: rgba( 245, 249, 255, 1 );
}

.signup-span-2 {
    grid-column: 1 / -1;
}

.signup-city-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.signup-checkbox-section {
    margin-top: 57px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.signup-checkbox-line {
    display: flex;
    align-items: center;
    gap: 10px;
    /*font-size: 16px; */
    cursor: pointer;
    
    font-family: Plus Jakarta Sans;
    font-weight: 500;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0px;
}

.signup-checkbox-line input {
    width: 20px;
    height: 20px;
    /* accent-color: #3b82f6; */
    flex-shrink: 0;
    
    border-radius: 5px;
    border: 2px solid rgba( 47, 128, 237, 1 );
}

.signup-checkbox-line span {
    line-height: 1.4;
}

.signup-checkbox-line a {
    color: #3b82f6;
    text-decoration: none;
}

.signup-submit-button {
    width: 100%;
    margin-top: 45px;
    height: 58px;
    border: none;
    border-radius: 12px;
    background: #3b82f6;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: background .2s;
}

.signup-submit-button:hover {
    background: #2563eb;
}

/*
.rr-background-img {
    width: 2329.9797132538615;
    height: 1739.3356761343796;
    top: -129px;
    left: -635px;
    angle: 109.68 deg;
    opacity: 0.5;
    
    background: linear-gradient( 52.9deg, rgba( 76, 177, 229, 0.5 ) 7.14%, rgba( 166, 216, 242, 0.29 ) 44.63%, rgba( 255, 255, 255, 0.08 ) 82.11% );
} */

.rr-signup-background {
    background-color: rgba(255, 255, 255, 1);
    position: relative;
    min-height: 100vh;
}

.rr-signup-background::before {
    content: "";
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background-image: url("../images/signup-background-img.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;

    pointer-events: none;
    z-index: 0;
}

.rr-signup-background > * {
    position: relative;
    z-index: 1;
}

.rr-contact-us {
    padding: 60px 350px;
    margin-top: 25px;
        
    background:
        url("../images/sec-before-img2.png") bottom left / 339px auto no-repeat,
        url("../images/sec-after-img2.png") top right / 325px auto no-repeat,
        rgba( 240, 246, 255, 1 );
        
    font-family: Plus Jakarta Sans;
    leading-trim: NONE;
    letter-spacing: 0px;
    text-align: center;
}

.rr-contact-us h2 {
    font-weight: 600;
    font-size: 48px;
    line-height: 70px;
}

.rr-contact-us p {
    font-weight: 400;
    font-size: 20px;
    line-height: 36px;
}

.rr-contact-us a:link {
    color: blue;
}

/*
.rr-signup-background::before {
    content: "";
    position: fixed;

    inset: 0;

    background-image: url("../images/signup-background-img.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 100%;

    pointer-events: none;
    z-index: 0;
}

.rr-signup-background > * {
    position: relative;
    z-index: 1;
} */
