:root,
:root.light {
/* Body */
--background-color: #fcfdfd;
--text-color-100: #131313;
--text-color-200: #333333;
--text-color-300: #353535;
--text-color-400: #3d3d3d;
--text-color-500: #4a4a4a;
--icon-link-color: #202020;

/* Scroll Bar */
--sb-track: #546973;
--sb-handle: #c1ccd2;
--sb-handle-hover: #dfe4e7;
 
/* Header */
--logo-color: #000;
--header-bg: #fff;
--themeswitcher-bg-grad-color-one: #2b74b7;
--themeswitcher-bg-grad-color-two: #2862b2;
--themeswitcher-bg-grad-color-three: #2340aa;
--themeswitcher-text: #fff;

/* Tabs */
--tabs-bottom-bar: #215a8e;
--tabs-button-grad-one: #2340aa;
--tabs-button-grad-two: #1a3080;
--tabs-button-hover-grad-one: #2b74b7;
--tabs-button-hover-grad-two: #1a3080;
--tabs-button-active-grad-one: #2b74b7;
--tabs-button-active-grad-two: #215a8e;
--tab-button-text-color: #eef0f2;
--tab-button-hover-color: #d0d8dc;
--tab-button-active-color: #ffffff;

/* Downloads */
--downloads-bg-grad-one: #1a3080;
--downloads-bg-grad-two: #16286b;
--downloads-bottom-line: rgba(120,144,156,0.3);
--downloads-bg-hover: #0d1841;

/* dashboard boxes */
--dashboard-box-header-bg-one: #e0e8eb;
--dashboard-box-header-bg-two: #d0dce1;
--dashboard-box-border: #c0d0d7;
--notes-color: #495c64; 

/* About Graphic */
--about-box-one: #fcbb2e;
--about-box-two: #24b3d3;
--about-box-three: #438ed3;
--about-box-four: #f86b00;
--about-box-five: #6c85e0;
--about-box-six: #b04d9c;
--about-box-icon: #000000;

/* Filter Button */
--filter-btn-border: #7296a5;
--filter-background: #c0d0d7;
}
:root.dark {
/* Body */
--background-color: #09102c;
--text-color-100: #fcfdfd;
--text-color-200: #eef0f2;
--text-color-300: #dfe4e7;
--text-color-400: #d0d8dc;
--text-color-500: #c1ccd2;
--icon-link-color: #eef0f2;

/* Scroll Bar */
--sb-track: #0d0d5b;
--sb-handle: #7979ec;
--sb-handle-hover: #a6a6f2;

/* Header */
--logo-color: #fff;
--header-bg: #0d1841;
--themeswitcher-bg-grad-color-one: #579ad8;
--themeswitcher-bg-grad-color-two: #5788da;
--themeswitcher-bg-grad-color-three: #5774dc;
--themeswitcher-text: #000;

/* Tabs */
--tabs-bottom-bar: #579ad8;
--tabs-button-grad-one: #a6a6f2;
--tabs-button-grad-two: #6c85e1;
--tabs-button-hover-grad-one: #95bfe6;
--tabs-button-hover-grad-two: #6c85e1;
--tabs-button-active-grad-one: #95bfe6;
--tabs-button-active-grad-two: #579ad8;
--tab-button-text-color: #09102c;
--tab-button-hover-color: #050817;
--tab-button-active-color: #000000;

/* Downloads */
--downloads-bg-grad-one: #9090ef;
--downloads-bg-grad-two: #5774dc;
--downloads-bottom-line: rgba(62,78,86,0.7);
--downloads-bg-hover: #7979ec;

/* Dashboard boxes */
--dashboard-box-header-bg-one: #3b525d;
--dashboard-box-header-bg-two: #31454d;
--dashboard-box-border: #45606c;
--notes-color: #95a8b2; 

/*About Graphic */
--about-box-one: #f276b5; 
--about-box-two: #8bdaeb; 
--about-box-three: #71b8ff;
--about-box-four: #899bdc;
--about-box-five: #969bcb;
--about-box-six: #1dd0e8;
--about-box-icon: #000000;

/* Filter Button */
--filter-btn-border: #b4b4b4;
--filter-background: #27373d;
}

/*=================================
  Base Area: core global code
=================================*/
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-color-200);
  background-color: var(--background-color);
  min-width: 360px;
}

strong { color: var(--text-color-100); }
p { max-width: 800px; color: var(--text-color-300); }
a { color: #215a8e; }

figure {
  padding: 4px;
  border: 1px solid var(--dashboard-box-border);
  max-width: 1000px;
}

figcaption {
  text-align: center;
  color: var(--notes-color);
  font-style: italic;
}

.img-responsive-centered {
  display: block;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

/*=================================
  Scrollbars
=================================*/
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sb-track); }
::-webkit-scrollbar-corner { background: var(--sb-track); }
::-webkit-scrollbar-thumb {
  background: var(--sb-handle); 
  border-radius: 5px;
  border: 2px solid transparent;
  background-clip: content-box;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--sb-handle-hover);
  border: 2px solid transparent;
  background-clip: content-box;
}

/*=================================
  Main Area: Core Layout
=================================*/
main {
  max-width: 2560px;
  margin: 0 auto;
  padding: 10px 28px 10px 28px;
}

/*=================================
  Tabs: container
=================================*/
.total-tabs { display: flex; flex-flow: row nowrap; }
.left-tabs  { width: 70%; }
.right-tabs { width: 30%;  }

/*=================================
  Tabs: Parent container
=================================*/
.tab, .tab-aside { overflow: hidden; border-bottom: 3px solid var(--tabs-bottom-bar); }

.tab button, .tab-aside button {
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 16px 10px 16px;
  transition: 0.3s;
  margin-right: 23px;
  background: linear-gradient(180deg, var(--tabs-button-grad-one) 0%, var(--tabs-button-grad-two) 100%);
  color: var(--tab-button-text-color);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: -1px;
}
  
.tab button { float: left; }
.tab-aside button { display: block; margin: 0 auto -1px auto }

@media only screen and (max-width: 540px) { 
  .tab button, .tab-aside button { 
    padding: 12px 12px 10px 12px; 
    margin-right: 8px; 
    font-size: 0.6875rem; 
  }
}

@media only screen and (max-width: 380px) { 
  .tab button, .tab-aside button { font-size: 0.625rem; } 
}

.tab button:hover, .tab-aside button:hover {
  background: linear-gradient(180deg, var(--tabs-button-hover-grad-one) 0%, var(--tabs-button-hover-grad-two) 100% );
  color: var(--tab-button-hover-color);
}
  
.tab button.active, .tab-aside button.active {
  background: linear-gradient(180deg, var(--tabs-button-active-grad-one) 0%, var(--tabs-button-active-grad-two) 100%);
  color: var(--tab-button-active-color);
}

.tabcontent { display: none; border-top: none; }
  
/*=================================
  Inside Tabs: Child container
=================================*/
section { display: flex; flex-flow: row nowrap; }
article { width: 70%; }
aside   { width: 30%; }

@media only screen and (max-width: 980px) {
  section { display: flex; flex-flow: column wrap; }
  article, aside { width: 100%; }
}

/*=================================
  Economic Index Tab: Section One
=================================*/
.cei__economic-index-flexbox {
  display: flex;    
  flex-flow: column nowrap;
  justify-content: space-between;
  align-content: center;
}

.cei__intro { margin-top: 10px; margin-bottom: 7px; }
.cei__release { margin-top: 7px; margin-bottom: 7px; }
.highcharts-container { width: 100%; height: 465px; position: relative; }

.highcharts-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.overlay { display: none; }

.filter-button {
  cursor: pointer;
  display: block;
  text-align: center;
  font-size: 1rem;
  color: var(--text-color-100);
  border: 1px solid var(--filter-btn-border);
  background-color: transparent;
  border-radius: 4px;
  padding: 7px 10px;
  margin-left: 8px;
}

.svg-shadow { filter: drop-shadow(0px 3px 6px rgb(0 0 0 / 0.3)); }

.filter-bg {
  background-color: var(--filter-background);
  z-index: 3; 
  display: block;
  overflow-y: hidden;
}

@media only screen and (max-width: 850px) { .filter-bg { overflow-y: scroll; }}

#inputs { padding-left: 0px; padding-right: 0px; } 

#inputs input {
  margin-right: 5px;
  margin-left: 15px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.cei__chart-box-header {
  background: linear-gradient(180deg, var(--dashboard-box-header-bg-one) 0%, var(--dashboard-box-header-bg-two) 100%);
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  height: 48px;
  z-index: 3;
}

/* High Charts */
.cei__highcharts-content {
  z-index: 1;
  height: 465px; 
  border-left: 1px solid var(--dashboard-box-border);
  border-right: 1px solid var(--dashboard-box-border);
  border-bottom: 1px solid var(--dashboard-box-border);
  padding-left: 1px;
  margin-bottom: 10px;
} 

/*=================================
    Sidebar Area: Flexbox order
=================================*/
.aside-container { display: flex; flex-flow: column nowrap; }
.aside-item { flex: 0 1 auto; align-self: auto; }

.aside-item:nth-child(1) { order: 1; }
.aside-item:nth-child(2) { order: 2; }
.aside-item:nth-child(3) { order: 3; }
.aside-item:nth-child(4) { order: 4; }

@media only screen and (max-width: 980px) {
  .aside-item:nth-child(1) { order: 3; }
  .aside-item:nth-child(2) { order: 2; }
  .aside-item:nth-child(3) { order: 4; }
  .aside-item:nth-child(4) { order: 1; }
}

/*=================================
    Experimental data icon
=================================*/
.experimental-data-icon {
  height: 89px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/*=================================
    Sidebar economic data box
=================================*/
.cei__estimates-sidebox { margin-left: 5%; }

/* Line One */
.cei__estimates-box-header {
  height: 48px;
  background: linear-gradient(180deg, var(--dashboard-box-header-bg-one) 0%, var(--dashboard-box-header-bg-two) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  padding-left: 16px;
  padding-right: 5px;
  font-weight: 700;
  color: var(--text-color-100);
}

@media only screen and (max-width: 980px) {
  .cei__estimates-box-header {
    font-size: 16px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 1;
  }
}

.cei__estimates-content {
  display: flex;
  flex-flow: column nowrap;
  border-left: 1px solid var(--dashboard-box-border);
  border-right: 1px solid var(--dashboard-box-border);
  border-bottom: 1px solid var(--dashboard-box-border);
  height: auto;
}

/* Line Two */
.cei__estimates-table {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 30px 15px 0 15px;
}

.cei__estimated-date {
  color: var(--text-color-200);
  font-weight: 400;
  font-size: 17px;
}

.cei__estimated-number {
  color: var(--text-color-100);
  font-weight: 700;
  font-size: 24px;
}

.cei__notes-area { padding: 30px 15px 30px 15px; font-size: 17px; }
@media only screen and (max-width: 980px) { .cei__estimates-sidebox { margin-left: 0%; margin-top: 20px; }}
p.changing-notes { padding: 15px; font-size: 13px; color: var(--notes-color); }
.link-container { padding-top: 12px; padding-left: 12px; }

/*=================================
    About Tab
=================================*/
.about-graphic { max-width: 860px; padding-top: 5px; padding-bottom: 5px; }

.about-box-bg-one { fill: var(--about-box-one); }
.about-box-bg-two { fill: var(--about-box-two); }
.about-box-bg-three { fill: var(--about-box-three); }
.about-box-bg-four { fill: var(--about-box-four); }
.about-box-bg-five { fill: var(--about-box-five); }
.about-box-bg-six { fill: var(--about-box-six); }
.about-box-icon { fill: var(--about-box-icon); }

.about-box-complex-icon { fill-rule:evenodd; clip-rule:evenodd; }

.about-box-complex-icon-two, 
.shopping-cart-wires { 
  fill: none; 
  stroke: var(--about-box-icon); 
  stroke-miterlimit: 10; 
}

.shopping-cart-wires{ fill: var(--about-box-icon); }

h2.about-title {
  max-width: 700px;
  line-height: 1.1;
  padding-top: 30px;
  padding-bottom: 30px;
}

/*=================================
    FAQs Tab
=================================*/
h2.faq-title {
  max-width: 700px;
  line-height: 1.1;
  padding-top: 30px;
  padding-bottom: 5px;
}

ul.bulleted-list { 
  list-style-type: disc;
  max-width: 700px;
  margin-left: 3rem; 
  /*color: var(--notes-color);*/
}

ul.bulleted-list-faq { 
  list-style-type: disc; 
  margin-left: 2.1rem; 
  color: var(--notes-color); 
  font-size: 0.9rem;
}

p.faq { margin-left: 1rem; margin-top: 1rem; margin-bottom: 1rem; }

.faq-table-overall-container { 
  max-width: 750px; 
  margin-left: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 1rem; 
}

.faq-header {
  background: linear-gradient(180deg, var(--dashboard-box-header-bg-one) 0%, var(--dashboard-box-header-bg-two) 100%);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  height: 48px;
}

.faq-header-item:nth-child(1) { width: 3%; height: 48px; }
.faq-header-item:nth-child(2) { width: 48.5%; padding-left: 15px; }
.faq-header-item:nth-child(3) { width: 48.5%; padding-left: 15px; }

.faq-content-container { border: 1px solid #c0d0d7; }

.faq-content-row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  height: 40px;
  font-size: 0.938rem; 
  color: #09102c;
  border-bottom: 1px solid #c0d0d7;
  padding-top: 3px;
  padding-bottom: 3px;
}

.faq-content-item:nth-child(1) { width: 3%; height: 40px; }
.faq-content-item:nth-child(2) { width: 48.5%; padding-left: 15px; padding-right: 15px; }
.faq-content-item:nth-child(3) { width: 48.5%; padding-left: 15px; padding-right: 15px; }

.business-applications-bg { background-color: #215A8E; }
.exports-of-goods-and-services-bg { background-color: #852885; }
.housing-units-authorized-in-permit-issuing-places-bg { background-color: #bf350c; }
.housing-units-completed-bg { background-color: #e62719; }
.housing-units-started-bg { background-color: #ff5622; }

.imports-of-goods-and-services-bg { background-color: #6C479B; }
.manufacturing-inventories-bg { background-color: #8797a7;}
.manufacturing-value-of-new-orders-bg { background-color: #4F6E7C; }
.new-orders-for-durable-goods-bg { background-color: #076c79; }
.new-single-family-houses-for-sale-bg { background-color: #f17505; }

.new-single-family-houses-sold-bg { background-color: #fca528; }
.retail-trade-and-food-services-sales-bg { background-color: #0095a8; }
.retail-inventories-bg { background-color: #1919B4; }
.total-construction-spending-bg { background-color: #ffce2e; }
.wholesale-inventories-bg { background-color: #6c7be1; }

@media screen and (max-width: 675px) {
  p.faq { margin-left: 0rem; }
  .faq-table-overall-container { margin-left: 0rem; }
  ul.bulleted-list { margin-left: 1.5rem; }
}

@media screen and (max-width: 550px) {
.faq-content-row { font-size: 0.875rem; }
.faq-header-item:nth-child(2) { padding-left: 8px; }
.faq-header-item:nth-child(3) { padding-left: 8px; }
.faq-content-item:nth-child(2) { padding-left: 8px; padding-right: 8px; }
.faq-content-item:nth-child(3) { padding-left: 8px; padding-right: 8px; }
}

@media screen and (max-width: 450px) { .faq-content-row { font-size: 0.75rem; } }

/*=========================
    Calendar Tab
====================*/
/* Import Google font - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

#Calendar{
  display: flex;
  align-items: center;
  padding: 0 10px;
  justify-content: center;
  background: #6363e9;
}
#Calendar{
  width: 450px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
#Calendar .header{
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-between;
}
.header .icons{ display: flex; }
.header .icons span{
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #878787;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.icons span:last-child { margin-right: -10px; }
.header .icons span:hover{ background: #edf0f2; }
.header .current-date { font-size: 1.45rem; font-weight: 500; }
.calendar { padding: 20px; }
.calendar ul { display: flex; flex-wrap: wrap; list-style: none; text-align: center; }
.calendar .days{ margin-bottom: 20px; }
.calendar li { color: #050817; width: calc(100% / 7); font-size: 1.07rem; }
.calendar .weeks li { font-weight: 500; cursor: default; }
.calendar .days li { z-index: 1; cursor: pointer; position: relative; margin-top: 30px; }
.days li.inactive { color: #a4b4bc; }
.days li.active { color: #fff; }
.days li.availabel { color: #fff; }
.days li.grayout { color: #111111; }
.days li::before{
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.days li.active::before { background: #6363e9; }
.days li.availabel::before { background: #1a3080; }
.days li.grayout::before { background: #bdb6b5; }
.days li:not(.active):hover::before { background: #7296a5; }
.mystyle {
  display: none;
  position: fixed;
  z-index: 1;
  width: 40%;
  overflow: auto;
  padding: 20px;
  background-color: #fcfcfd;
  color: #050817;
  font-size: 13px;
  box-sizing: border-box;
  border: 1px solid #888;
  left: 50%;
  top: 60%;
  transform: translate(-50%, -50%);
}
ul.dashed { list-style-type: none; }
ul.dashed > li { text-indent: -5px; }
ul.dashed > li:before { content: "-"; text-indent: -5px; }

/*=================================
    Modal Window
=================================*/
.modal-window {
  box-shadow: 0px 5px 10px 0px hsla(197.6,22.7%,14.7%, 0.5);
  height: 100%;
  left: 0;
  display: flex;
  overflow: auto;
  padding: 1rem;
  position: fixed;
  top: 0;
  transition: opacity .2s;
  width: 100%;
  z-index: -1;
}

.modal-window[aria-hidden="true"]  { opacity: 0; visibility: hidden; }
.modal-window[aria-hidden="false"] { opacity: 1; visibility: visible; z-index: 4; }

.modal-content {
  background-image: linear-gradient(270deg, #1d292e 0%, #2667a2 100%);
  margin: auto;
  max-width: 800px;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
  transform: scale(.8);
  transition: transform .3s;
  width: 100%;
  box-shadow: 0px 6px 12px 0px hsla(197.6,22.7%,14.7%, 0.5);
}

.modal-window[aria-hidden="false"] .modal-content { transform: scale(1); }

.modal-header {
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  height: 72px;
  background-color: #2b74b7;
  z-index: 2;
  position: relative;
}

h3.modal-title { 
  color: white; 
  font-size: 1.313rem; 
  max-width: 500px; 
  font-weight: 700;
}

@media screen and (max-width: 675px) { h3.modal-title {font-size: 1.438rem; max-width: 400px;}}
@media screen and (max-width: 530px) { h3.modal-title {font-size: 1.2rem; max-width: 300px;}}
@media screen and (max-width: 450px) { h3.modal-title {font-size: 1rem; max-width: 220px;}} 
@media screen and (max-width: 380px) { h3.modal-title {font-size: 0.875rem; max-width: 190px;}} 

p.modal-window-box { 
  max-width: 800px; 
  color: var(--text-color-300); 
}

.dialog__close-bg-container {
  position: absolute;
  right: 0;
  z-index: 11;
  width: 92px;
  height: 72px;
}

.dialog__close-box {
  width: 35px;
  height: 35px;
  z-index: 12;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

button.modal-close {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  font-size: 1rem;
  z-index: 12;
  background: transparent;
  color: #fff;
  box-shadow: 0 0px 0px 0 rgba(0,0,0,0.00);
  margin-right: 19px;
  border: transparent;
  font-family: 'Roboto Condensed', sans-serif;
}

button.modal-close:hover { cursor: pointer; }

button.info-button {
  background-color: transparent;
  border: transparent;
  padding: 5px 2px 2px 2px;
  cursor: pointer;
  margin-right: 8px;
}

.modal-body {
  min-height: 350px;
  background: #fff;
  box-shadow: 0 2px 4px 0 rgba(0,0,0,0.50);
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 10px;
}


/* Special case bulleted text */
ul.downloads-case {
  list-style-type: disc;
  margin-left: 1rem;
  font-size: 14px;
  color: var(--notes-color);
}

li.downloads-list-case { margin-bottom: 8px; }
.downloadMarginPadding { margin: 30px; }


/*=================================
    Accordion
=================================*/
.cei__accordion-container { margin-top: 31px; }

.cei__accordion {
  background: linear-gradient(180deg, var(--dashboard-box-header-bg-one) 0%, var(--dashboard-box-header-bg-two) 100%);
  color: #09102c;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.125rem;
  transition: 0.4s;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

@media screen and (max-width: 675px) { 
  .cei__accordion-container { margin-top: 22px; }
  .cei__accordion { font-size: 0.938rem; }
}

.accord-active, .cei__accordion:hover {
  background: linear-gradient(180deg, #c0d0d7 0%, #96bde9 100%);
}

.cei__accordion:after {
  content: '\002B';
  color: #293438;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accord-active:after { content: "\2212"; }

.cei__panel {
  padding: 0 18px;
  background-color: #fcfdfd;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s ease-out;
  border: 1px solid #c0d0d7;
}

.cei__special-panel {
  overflow-y: scroll;
  max-height: 400px;
  padding-right: 18px;
  padding-bottom: 8px;
}

.infolist { padding:30px; }

/*=================================
  iFrame container
=================================*/
.indicator-frame {
  overflow: auto; 
  border: 0px none; 
  width: 100%; 
  height: 700px;
}

@media screen and (max-width: 1060px) { .indicator-frame { height: 810px; }}
@media screen and (max-width: 988px)  { .indicator-frame { height: 1210px; }}
@media screen and (max-width: 720px)  { .indicator-frame { height: 1290px; }}
@media screen and (max-width: 580px)  { .indicator-frame { height: 1350px; }}
@media screen and (max-width: 390px)  { .indicator-frame { height: 1410px; }}
