
/* Side Layout Global Style
------------------------------------- */
.side {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

/* (Town Map) Main Panel
------------------------------------- */
.side-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 100vh;
  background-color: #17528b;
  z-index: 100;
  box-sizing: border-box;
}

.side-header::-webkit-scrollbar {
  width: 10px;
}

.side-header::-webkit-scrollbar-thumb {
  background-color: #50779c;
  border-radius: 10px;
  background-clip: padding-box;
}

.side-header::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}

.header-button-group,
.header-info,
.header-panel,
.header-list {
  padding: 0px 20px;
  box-sizing: border-box;
}

/* (Town Map) Main Panel 카테고리, 검색버튼
------------------------------------- */
.header-button-group {
  width: 100%;
  margin: 30px 0px;
  justify-content: space-between;
}

.header-button-group .ptg-button {
  width: 25px;
  padding: 0;
  border: 0;
  background-color: transparent;
}

.header-button-group .ptg-button > img {
  width: 100%;
}

/* (Town Map) Main Panel 날짜, 위치정보
------------------------------------- */
.header-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.header-info time {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 7px 0px;
  color: #fff;
  font-family: "paybooc-Medium";
  font-size: 14px;
  text-align: center;
  border-radius: 25px;
  background-color: #001540;
}

.header-info time::before {
  content: "";
  position: absolute;
  bottom:0;
  left:18%;
  width: 90px;
  height: 4px;
  background-color: #febe3f;
}

.header-info address {
  color: #fff;
  font-size: 26px;
  font-style: normal;
  margin-top: 25px;
}

/* (Town Map) Main Panel select, 통계
------------------------------------- */
.header-panel {
  width: 100%;
  margin-top: 25px;
  background-color: #14426b;
  padding: 5px 15px;
}

.header-select-group{
  padding:30px 0px;
  border-bottom:2px dashed #8ba2b6;
}

.header-select:first-child {
  margin-bottom: 10px;
}

.header-select-text {
  max-width: 90%;
  overflow: hidden;
  font-size: 15px;
}

.header-stats {
  margin-top: 20px;
}

.header-stats .stats {
  width: 100%;
  height: 80px;
  margin: 15px 0px;
  padding:10px 20px;
  background-color: #032754;
  border-radius: 10px;
  box-sizing: border-box;
}

.header-stats .stats:nth-child(1) {
  background-image: url(../../images/sum_icon.png);
  background-position: 20% 50%;
  background-repeat: no-repeat;
}

.header-stats .stats:nth-child(2) {
  background-image: url(../../images/map_icon.png);
  background-position: 20% 50%;
  background-repeat: no-repeat;
}

.header-stats .stats:nth-child(3) {
  background-image: url(../../images/percent_icon.png);
  background-position: 20% 50%;
  background-repeat: no-repeat;
}

.header-stats .stats-title{
  display: block;
  color:#fff;
  font-size:15px;
  text-align: right;
}

.header-stats .stats p {
  display: block;
  width: 100%;
  padding-top: 5px;
  word-break: break-all;
  font-size: 25px;
  text-align: right;
  color: #febe3f;
  font-family: "paybooc-Medium";
}

.stats .play {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.play .play-button {
  width: 35px;
  height: 35px;
  min-width: 30px;
  border: 0;
  margin-right: 15px;
  padding: 0;
  background-color: transparent;
}

.play .play-button img {
  width: 100%;
  height: 100%;
}

/* (Town Map) Main Panel 인기, 긴급 지도 리스트
------------------------------------- */
.header-list {
  width: 100%;
  padding-top: 30px;
}

.map-list-wrapper {
  width: 100%;
  height: 30px;
  overflow: hidden;
  margin-bottom: 20px;
}

.map-list {
  width: 100%;
  height: 30px;
  transition: all 0.3s ease-in-out;
}

.map-list li {
  width: 100%;
  height: 30px;
  line-height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-list .list-title {
  display: inline-block;
  padding:3px 20px;
  background-color: #001540;
  color:#febe3f;
  font-size:15px;
  border-radius: 25px;
  margin-bottom: 10px;
}

.header-list ul li {
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}


/* (Town Map) Data Info Panel
------------------------------------- */
.data-info-panel {
  width: 500px;
  height: 100vh;
  position: relative;
  top: 0;
  left: 180px;
  background-color: #fff;
  z-index: 90;
  box-sizing: border-box;
  transition: all 0.5s;
}

.panel-open {
  left: -320px;
}

.panel-open-button {
  position: absolute;
  top: 248px;
  right: -28px;
  width: 29px;
  height: 190px;
  padding: 0;
  background-color: transparent;
  background-image: url(../../images/panel_button_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 110;
}

.panel-open-button > img {
  width: 0.5em;
}

.data-info-content {
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.data-info-content::-webkit-scrollbar {
  width: 10px;
}

.data-info-content::-webkit-scrollbar-thumb {
  background-color: #50779c;
  border-radius: 10px;
  background-clip: padding-box;
}

.data-info-content::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}

/* (Town Map) Data Info Panel 브레드크럼
------------------------------------- */
.breadcrumb-wrapper{
  width: 100%;
  height: 100px;
  padding:20px 30px;
  background-color: #2b425b;
  box-sizing: border-box;
}

.breadcrumb {
  width: 100%;
  height: 100%;
  padding: 0px 10px;
  border-left: 4px solid #20acb9;
  box-sizing: border-box;
}

.breadcrumb ul {
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.breadcrumb ul li {
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: rgb(150 162 174);
  font-size: 15px;
}

.breadcrumb ul li::after {
  content: "〉";
  padding-left: 8px;
}

.breadcrumb ul li:last-child::after {
  content: "";
}

.breadcrumb h3 {
  color:#fff;
  font-family: "Noto Sans KR Bold";
  font-size: 30px;
}

/* (Town Map) Data Info Panel 데이터현황
------------------------------------- */
.data-stats-wrapper {
  width: 100%;
  height: 35%;
  min-height: 370px;
  max-height: 400px;
  padding:30px;
  box-sizing: border-box;
}

.data-stats-title{
  width: 100%;
  font-size:18px;
  color:#5d5d5d;
}

.data-stats-title::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 10px;
  margin-right: 5px;
  background-image: url(../../images/line_icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.data-stats-title span{
  color:#ff6c6c;
}

.data-stats{
  width: 100%;
  height: 100%;
  min-height: 270px;
  max-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
  border:1px solid #dddddd;
  margin-top:15px;
  padding:20px 10px;
  box-sizing: border-box;
}

.data-stats > div > .title {
  width: 100%;
  font-family: "Noto Sans KR Bold";
  font-size: 16px;
  text-align: center;
  word-break: keep-all;
}

.data-stats > div {
  flex:1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.data-stats hr{
  width: 45px;
  height: 5px;
  margin: 10px auto;
  background-color: #17528b;
  border: 0;
}

.stats-sum .sum {
  padding-top: 35px;
  color: #888888;
  font-size: 21px;
  font-family: "paybooc-Medium";
  text-align: center;
}

.stats-sum .sum em {
  font-family: "paybooc-Bold";
  font-style: normal;
  font-size: 48px;
  color:#ff6c6c;
}

.stats-chart .donut-chart {
  width: 100%;
  height: 100%;
}

.highcharts-background{
  fill:none !important;
}


/* (Town Map) Data Info Panel 데이터 다운로드
------------------------------------- */
.data-download {
  width: 100%;
  height: 50%;
  padding: 35px 30px 0px 30px;
  box-sizing: border-box;
}

.title-button {
  width: 100%;
  height: 15%;
}

.title-button h5 {
  font-size: 18px;
  color: #5d5d5d;
}

.title-button h5::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 10px;
  margin-right: 5px;
  background-image: url(../../images/line_icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.title-button .ptg-button-group {
  width: auto;
  justify-content: flex-end;
}

.title-button .ptg-button-group > a {
  padding: 3px 10px;
  color: #fff;
  font-size: 11px;
  font-family: "paybooc-Medium";
  border: 0;
  border-radius: 3px;
  margin: 0px 3px;
}

.xlsx-download {
  background-color: #e1ac51;
}

.csv-download {
  background-color: #d35d72;
}

.json-download {
  background-color: #6a7eba;
}

.xml-download {
  background-color: #9d6aba;
}

.data-download .ptg-table-board {
  border-left: 0;
  border-right: 0;
  border-top:1px solid #000;
  border-bottom:1px solid #000;
  table-layout:fixed
}

.data-download .ptg-table-board th:first-child {
  width: 28%;
}

.data-download .ptg-table-board th:nth-child(2) {
  width: 17%;
}

.data-download .ptg-table-board thead {
  background-color: #f4f4f4;
}

.ptg-table-board thead tr:last-child {
  border-bottom:1px solid rgb(211, 215, 218);
}

.data-download .ptg-table-board th {
  font-size: 13px;
  color:#000;
  font-family: "paybooc-Bold";
}

.data-download .ptg-table-board th,
.data-download .ptg-table-board td {
  text-align: center;
  font-size: 13px;
  padding:10px 5px;
  color: #5d5c5c;
  border-left:1px solid rgb(211, 215, 218);
}

.data-download .ptg-table-board th:first-child,
.data-download .ptg-table-board td:first-child {
  border-left:0;
}

.ptg-table-board tbody tr {
   border-bottom:1px solid rgb(211, 215, 218);
}

.paging {
  width: 100%;
  padding: 20px 0px;
}

.ptg-pagination img {
  width: initial;
  height: initial;
}

.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-number {
  border:0;
  color:#686563;
  cursor: pointer;
}

.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-first,
.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-prev,
.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-next,
.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-last {
  padding:5px 0px;
  cursor: pointer;
}

.ptg-pagination .ptg-pagination-wrapper .ptg-pagination-number-selected {
  background-color: #f4f5f9;
  color: #6bbbf2;
}



/* (Market Analysis) Main Panel
------------------------------------- */
.main-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100vh;
  background-color: #17528b;
  z-index: 100;
  overflow-y: auto;
  box-sizing: border-box;
}

.main-panel .link-home{
  display: block;
  width: 27px;
  margin: 30px auto;
  cursor: pointer;
}

.main-panel .link-home img {
  width: 150%;
  position: relative;
  left: -8px;
}

/* (Market Analysis) Main Panel 날짜, 위치
------------------------------------- */
.date-location-wrapper{
  width: 100%;
  padding:30px 0px;
  background-color: rgb(0 13 62);
  box-sizing: border-box;
}

.date-location-wrapper time {
  display: block;
  width: 70%;
  padding-bottom:20px;
  margin: 0 auto;
  font-size: 14px;
  color: #fff;
  text-align: center;
  word-break: keep-all;
  font-family: "paybooc-Medium";
  border-bottom:5px solid #febf3d;
}

.date-location-wrapper span {
  display: inline-block;
  width: 100%;
  color:#fff;
  text-align: center;
  font-size: 17px;
  font-family: "paybooc-Bold";
}


/* (Market Analysis) Main Panel 메뉴
------------------------------------- */
.main-menu{
  width: 100%;
}

.main-menu ul {
  width: 100%;
}

.main-menu li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  cursor: pointer;
  border-bottom:1px solid #41688a;
  background-color: #14426b;
}

.main-menu li:hover {
  background-color: #20acb9;
}

.main-menu li:last-child {
  border-bottom:0;
}

.main-menu .menu-icon {
  width: 35px;
}

.main-menu li:first-child .menu-icon {
  padding-left:7px;
}

.main-menu li:nth-child(2) .menu-icon {
  padding-left:4px;
}

.main-menu li:last-child .menu-icon {
  width: 50px;
  margin-bottom: 5px;
}


.main-menu .menu-icon img {
  width: 100%;
}

.main-menu .menu-title {
  width: 85%;
  margin:0 auto;
  text-align: center;
  font-size: 15px;
  color:#fff;
  word-break: keep-all;
}

/* (Market Analysis) 나의 상권 찾기 결과 패널
------------------------------------- */
.market-result-panel{
  width: 230px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 80px;
  background-color: #fff;
  z-index: 90;
  box-sizing: border-box;
  transition: all 0.5s;
}

.market-result-panel .panel-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 87px;
  padding:10px 20px;
  background-color: #2b425b;
  box-sizing: border-box;
}


.market-result-panel .depth-list{
  width: 100%;
  margin-bottom:5px;
}

.market-result-panel .depth-list li{
  display: inline-block;
  margin-right: 5px;
  font-size:12px;
  color:rgba(255, 255, 255, 0.6);
}

.market-result-panel .depth-list li::after{
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  margin-left: 5px;
  background-image: url(../../images/arrow_right.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.market-result-panel .depth-list li:last-child:after{
  content: "";
  background-image: none;
}

.market-result-panel .panel-title .title {
  color:#fff;
  font-size: 17px;
}

.market-result-panel .result-count{
  font-family: "paybooc-Bold";
  font-size: 19px;
  color:#febe3f;
}

.result-area-list-wrapper{
  width: 100%;
  height: 91%;
  overflow-y: auto;
}

.result-area-list-wrapper::-webkit-scrollbar {
  width: 10px;
}

.result-area-list-wrapper::-webkit-scrollbar-thumb {
  background-color: #9ab1c7;
  border-radius: 10px;
  background-clip: padding-box;
  border: 2px solid transparent;
}

.result-area-list-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: inset 0px 0px 5px white;
}

.result-area-list-wrapper .result-area-list {
  width: 100%;
  height: auto;
}

.result-area-list li {
  width: 85%;
  padding: 15px;
  margin: 0 auto;
  font-size: 14px;
  color:#333333;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
  box-sizing: border-box;
}

.result-area-list li:hover {
  color:#fff;
  background-color: #20acb9;
}

.result-area-list li.open {
  color:#fff;
  background-color: #20acb9;
}

/* (Market Analysis) 나의 상권 찾기 결과 상세보기 패널
------------------------------------- */
.market-result-info-panel{
  width: 450px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 310px;
  background-color: #fff;
  box-shadow: 5px 0px 13px -5px rgba(0, 0, 0, 0.27);
  z-index: 85;
  box-sizing: border-box;
  transition: all 0.5s;
}

.market-result-info-panel h6 {
  width: 100%;
  font-family: "paybooc-Bold";
  font-size: 14px;
  padding:10px 0px;
  box-sizing: border-box;
}

.market-result-info-panel h6::before {
  display: inline-block;
  content: "";
  width: 13px;
  height: 8px;
  margin-right: 5px;
  background-image: url(../../images/line_icon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
}

.market-result-info-panel .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 87px;
  padding:0px 15px;
  background-color: #54687d;
  box-sizing: border-box;
}

.market-result-info-panel .panel-title > span {
  font-family: "paybooc-Bold";
  font-size: 20px;
  color:#fff;
  border-left: 5px solid #20acb9;
  height: 40px;
  line-height: 40px;
  padding-left: 20px;
}

.market-result-info-panel .panel-title .close-button{
  width: 20px;
  cursor: pointer;
}

.market-result-info-panel .panel-title .close-button img {
  width: 100%;
}

.market-result-info-panel .result-info {
  width: 100%;
  height: 90%;
  padding:10px 15px;
  box-sizing: border-box;
  overflow-y: auto;
}


.market-result-info-panel .result-info::-webkit-scrollbar {
  width: 10px;
}

.market-result-info-panel .result-info::-webkit-scrollbar-thumb {
  background-color: #b6c5d3;
  border-radius: 10px;
  background-clip: padding-box;
}

.market-result-info-panel .result-info::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}


.market-result-info-panel .tab-contents .analysis-result{
  width: 90%;
  margin: 0 auto;
  padding:10px 0px;
  border-bottom:2px dashed #b9c3cc;
  box-sizing: border-box;
}

.market-result-info-panel .tab-contents .analysis-result li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex:1;
  margin-bottom: 5px;
}


.market-result-info-panel .tab-contents .analysis-result .rank{
  display: block;
  background-color: #17528b;
  color:#fff;
  width: 150px;
  padding: 3px 15px;
  text-align: center;
  font-size: 13px;
  border-radius: 25px;
  box-sizing: border-box;
}

.market-result-info-panel .tab-contents .analysis-result .rank span {
  font-family: "paybooc-Bold";
  color:#febe3f;
  font-size: 13px;
  margin-left:10px;
}

.market-result-info-panel .tab-contents .analysis-result .average{
  display: block;
  width: 63%;
  color:#888888;
  text-align: right;
  font-size: 14px;
}

.market-result-info-panel .tab-contents .analysis-result .average span{
  display: inline-block;
  width: 50%;
  font-size: 14px;
  font-family: "paybooc-Bold";
  color:#318be1;
  text-align: right;
}

.market-result-info-panel .tab-contents .analysis-result-chart{
  width: 100%;
  height: 100%;
  padding:10px 15px;
  color:#fff;
  box-sizing: border-box;
}

.market-result-info-panel .data-status-wrapper{
  margin-top:15px;
}

.market-result-info-panel .report-open{
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
}

.market-result-info-panel .report-open button{
  border: 0;
  width: 90%;
  padding: 15px;
  color: #fff;
  border-radius: 22px;
  background-color: #17528b;
  box-sizing: border-box;
}



/* (Market Analysis) 상권 데이터분석 패널
------------------------------------- */
.market-analysis-panel{
  width: 220px;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 90;
  background-color: #fff;
  overflow-y: auto;
}


.market-analysis-panel::-webkit-scrollbar {
  width: 10px;
}

.market-analysis-panel::-webkit-scrollbar-thumb {
  background-color: #b6c5d3;
  border-radius: 10px;
  background-clip: padding-box;
}

.market-analysis-panel::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}


.market-analysis-panel .panel-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 85px;
  font-size: 18px;
  font-family: "paybooc-Bold";
  text-align: center;
  color:#fff;
  background-color: #14426b;
}

.market-analysis-panel .ptg-select-box{
  max-width: 100%;
  border-radius:0;
  background-color: #dde6ee;
}

 .market-analysis-panel .ptg-select-box .header-select-text {
  margin-left:initial;
  text-align: left;
  font-size: 13px;
}

 .market-analysis-panel .ptg-select-box .select-box-icon {
  margin-left: auto;
}

 .market-analysis-panel .select-box-list {
   background-color: #dde6ee;
  bottom: -100px;
  height: 100px;
   z-index: 130;
 }

.select-button-wrapper {
  width: 85%;
  margin: 0 auto;
  padding: 20px 0px;
  border-bottom: 2px dashed #d9dee2;
}

.select-button-wrapper .compare-button{
  justify-content: center;
  width: 100%;
  padding:10px 13px;
  margin-top:15px;
  border:0;
  border-radius: 30px;
  background-color: #d35d72;
  font-size: 15px;
  font-family: "paybooc-Bold";
  color:#fff;
}

.select-button-wrapper .compare-button::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 17px;
  margin-right: 8px;
  background-image: url(../../images/MarketAnalysis-images/compare.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.compare-catgory-list {
    position: relative;
    width: 100%;
    padding: 5px 20px;
    box-sizing: border-box;
    z-index: 90;
}

.compare-catgory-list ul {
  width: 100%;
}

.compare-catgory-list ul li {
  width: 100%;
}

.compare-catgory-list li button {
  width: 100%;
  margin:8px 0px;
  color:#000;
  cursor: pointer;
  font-size: 14px;
  font-family: "paybooc-Bold";
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border:0;
  background-color:transparent;
}


.compare-catgory-list .list-icon{
  width: 45px;
  height: 45px;
  padding:6px;
  margin-left:15px;
  border-radius: 50%;
  background-color: #d9ebff;
  box-sizing: border-box;
}

.compare-catgory-list .list-icon img {
  width: 100%;
}

.compare-catgory-list li .list-icon.active{
  background-color: #17528b;
}

.event-remove-background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 95;
  background-color: #fff;
  opacity: 0.6;
}

/* (Zeropay) Zeropay Panel
------------------------------------- */
.zeropay-panel{
  position: absolute;
  top:0;
  left:0;
  width: 285px;
  height: 100vh;
  background-color: #fff;
  z-index: 90;
}

.zeropay-panel .search-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 212px;
  background-color:#dae030;
}

.zeropay-panel .search-option > h6 {
  color: #4324a6;
  padding:20px 0px 10px 0px;
  box-sizing: border-box;
}

.zeropay-search-bar {
  width: 100%;
  height: 23%;
  font-family: "paybooc-Bold";
  max-width: 250px;
  border-bottom: 2px solid #fff;
}

.zeropay-search-bar .ptg-search-bar-input {
  width: 85%;
  font-size: 18px;
  color: #fff;
  background-color: #dae030;
  border: 0;
}

.zeropay-search-bar .ptg-search-bar-input::placeholder {
  font-size: 18px;
  color: #fff;
  font-style: italic;
}

.zeropay-search-bar .ptg-search-bar-input:focus {
  outline: initial;
  border: initial;
  box-shadow: initial;
}

.zeropay-search-bar .ptg-search-bar-button {
  width: 20%;
  height: auto;
  border: 0;
  padding:5px;
  background-color: transparent;
}

.zeropay-search-bar .ptg-search-bar-button img {
  width: 100%;
}

.zeropay-panel .checkboxes-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.zeropay-panel .checkboxes-wrapper .checkbox{
  margin:0px 10px;
}

.zeropay-panel .checkboxes-wrapper .checkbox-label span {
    font-size: 14px;
}

.zeropay-panel .checkboxes-wrapper .checkbox-label img {
    width: 17px;
    margin-right: 5px;
    margin-left: 0px;
}

.search-button-wrapper{
  width: 100%;
  padding:15px 0px;
  box-sizing: border-box;
}

.search-button-wrapper button {
  justify-content: center;
  width: 80%;
  margin:0 auto;
  padding: 6px 13px;
  border:0;
  border-radius: 30px;
  background-color:#4324a6;
  color:#fff;
}

.search-button-wrapper button img {
  width: 1.3em;
  margin-right: 10px;
}

.zeropay-panel .tab{
  width: 100%;
  height:78%;
}

.zeropay-panel .tab-button {
  width: 100%;
  height: 60px;
  display: flex;
}

.zeropay-panel .tab-button button {
  width: 50%;
  height: 100%;
  border:0;
  color:#4324a6;
  font-weight: bold;
  background-color:#f2effd;
}

.zeropay-panel .tab-button button.active{
  background-color: #0bbed6;
  color:#fff;
}

.zeropay-panel .tab-content{
  width: 100%;
  height: 92%;
  overflow-y: auto;
}

.zeropay-panel .tab-content .market-list{
  display: none;
}

.zeropay-panel .tab-content::-webkit-scrollbar {
  width: 15px
}

.zeropay-panel .tab-content::-webkit-scrollbar-thumb {
  background-color: #f2effd;
  background-clip: padding-box;
  border: 4px solid transparent;
  border-radius: 50px;
}

.zeropay-panel .tab-content::-webkit-scrollbar-track {
  background-color: #fff;
}

.zeropay-panel .tab-content li {
  width: 100%;
  padding:10px;
  cursor: pointer;
  box-sizing: border-box;
}

.zeropay-panel .tab-content li .market-name {
  font-size: 17px;
  color:#4324a6;
}

.zeropay-panel .tab-content li .market-tel,
.zeropay-panel .tab-content li .market-address {
  font-size: 13px;
  margin:3px 0px;
}

.zeropay-panel .tab-content li .label-icons {
  width: 100%;
  margin-top: 10px;
}

.zeropay-panel .tab-content li .label-icons img {
  margin: 0px 5px;
}

.ifream-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 90;
  background-color: #fff;
  overflow-y: auto;
}

.market-analysis-panel .data-date-info{
  padding-left: 25px;
  padding-top: 8px;
  color : grey;
  font-size: 13px;
}
