/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.0
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/


@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {

    --color-white: #fff;
    --color-black: #000;
}

body{
	font-family: "Inter", sans-serif;
}

form.loading {
	position: relative;
}
form.loading:before {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 1;
	content: "";
	background-color: #dadada80;
}

a{
  text-decoration: none;
}


.header{
    position: sticky;
    top: 0;
    z-index: 101;
    height: 64px;
}

.header_inner{
    --_1-yZsI: #0000;
    --adaptive-mf-container-padding: 40px;
    background-color: var(--_1-yZsI);
    align-content: center;
    align-items: center;
    display: flex;
    flex: 0 0 auto;
    height: 64px;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.header_backdrop{
    background: linear-gradient(180deg, #0f0f0f, #0f0f0f00);
/*    display: none;*/
    height: 120px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    display: block;
}

.header_area_logo_menu {
    flex-shrink: 0;
    align-items: center;
    display: flex;
    justify-content: flex-start;
    flex-grow: 0;
}

.header_area_logo_menu a{
    color: #ffffff;
    font-weight: 900;
    margin-right: 0;
    font-size: 20px;
}

.header_area_logo_menu a:hover{
    color: #ffffff;
}

.header_middle_wrapper{
    display: flex;
    height: 64px;
    flex-grow: 1;
}

.header_middle_content{
    margin: 0 32px;
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.header_area_menu {
    display: flex;
    align-items: center;
    /* display: none; */
    justify-content: center;
}

.header_main_menu{
    justify-content: center;
    align-items: center;
    align-content: center;
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    font-style: normal;
    --ui-lib-typography-font-size: 16px;
    font-size: var(--ui-lib-typography-font-size);
    font-weight: 500;
    --ui-lib-typography-line-height: 24px;
    display: flex;
    line-height: var(--ui-lib-typography-line-height);
}

.header_main_menu > li{
    display: flex;
}

.header_main_menu > li > a{
    align-items: center;
    background: #0000;
    border: none;
    border-radius: 36px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: flex;
    height: 40px;
    letter-spacing: .3px;
    /* margin: 12px 0; */
    outline: none;
    overflow: visible;
    padding: 8px 16px;
    position: relative;
    white-space: nowrap;
}

.header_area_user{
    flex-shrink: 0;
    align-items: center;
    display: flex;
}

.header_area_user .header_user-pricing{
    margin-left: 12px;
}

.header_user-menu-button{
    align-items: center;
    background: none;
    border: 0;
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0;
    outline: none;
    overflow: visible;
    position: relative;
    flex-direction: column;
    height: 40px;
    padding-bottom: 2px;
    width: 40px;
}

.header_user-menu-button svg path{
    fill: #ffffff;
}

/* From Uiverse.io by kleenpulse */ 
.header_user-pricing {
  --border-color: linear-gradient(-45deg, #ffae00, #7e03aa, #00fffb);
  --border-width: 0.125em;
  --curve-size: 0.5em;
  --blur: 30px;
  --bg: rgb(0 0 0 / 0%);
  --color: #ffffff;
  color: var(--color);
  cursor: pointer;
  /* use position: relative; so that BG is only for .btn */
  position: relative;
  isolation: isolate;
  display: inline-grid;
  place-content: center;
  padding: 0.5em 1.5em;
  font-size: 17px;
  border: 0;
  text-transform: uppercase;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  clip-path: polygon(
    /* Top-left */ 0% var(--curve-size),
    var(--curve-size) 0,
    /* top-right */ 100% 0,
    100% calc(100% - var(--curve-size)),
    /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%,
    /* bottom-right 2 */ 0 100%
  );
  transition: color 250ms;
}

.header_user-pricing::after,
.header_user-pricing::before {
  content: "";
  position: absolute;
  inset: 0;
}

.header_user-pricing::before {
  background: var(--border-color);
  background-size: 300% 300%;
  animation: move-bg7234 5s ease infinite;
  z-index: -2;
}

@keyframes move-bg7234 {
  0% {
    background-position: 31% 0%;
  }

  50% {
    background-position: 70% 100%;
  }

  100% {
    background-position: 31% 0%;
  }
}

.header_user-pricing::after {
  background: var(--bg);
  z-index: -1;
  clip-path: polygon(
    /* Top-left */ var(--border-width)
      calc(var(--curve-size) + var(--border-width) * 0.5),
    calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width))
  );
  transition: clip-path 500ms;
}

.header_user-pricing:where(:hover, :focus)::after {
  clip-path: polygon(
    /* Top-left */ calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    calc(100% - var(--border-width)) var(--border-width),
    /* top-right */ calc(100% - var(--border-width)) var(--border-width),
    calc(100% - var(--border-width))
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
    /* bottom-right 1 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width)),
    /* bottom-right 2 */
      calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
      calc(100% - var(--border-width))
  );
  transition: 200ms;
}

.header_user-pricing:where(:hover, :focus) {
  color: #fff;
}


/*.header_user-pricing {
  align-items: center;
  appearance: none;
  background-color: #EEF2FF;
  border-radius: 8px;
  border-width: 2px;
  border-color: #536DFE;
  box-shadow: rgba(83, 109, 254, 0.2) 0 2px 4px, rgba(83, 109, 254, 0.15) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  box-sizing: border-box;
  color: #536DFE;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono", monospace;
  height: 56px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow, transform;
  font-size: 20px;
}

.header_user-pricing:focus {
  outline: none;
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(83, 109, 254, 0.4) 0 2px 4px, rgba(83, 109, 254, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.header_user-pricing:hover {
  box-shadow: rgba(83, 109, 254, 0.3) 0 4px 8px, rgba(83, 109, 254, 0.2) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
  transform: translateY(-2px);
}

.header_user-pricing:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}*/

.mobi_nav{
	display: none;
}

.section_banner{
    align-items: center;
    background-color: var(--color-black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: -64px;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    top: -64px;
    min-height: 100svh;
}

.backdrop_section{
    inset: 0;
    position: absolute;
}

.backdrop_section img{
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
}


.section_banner_content{
    justify-content: center;
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

/*.section_banner_content_text{
    --offset: 80px;
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
    box-sizing: border-box;
    justify-content: flex-end;
    padding-top: calc(var(--offset) + 64px);
    padding-inline: 20px;
}*/

.section_banner_content h1{
    font-size: 120px;
    font-style: normal;
    font-weight: 700;
    color: #fff;
}

.section_banner_content p{
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    color: #fff;
}

.header_user-pricing.button_free_home{
    --bg: rgb(255 255 255);
    --color: #000000;
    padding: 0.8em 1.5em;
    font-size: 20px;
}

.section_footer > .container-fluid{
  padding-left: 40px;
  padding-right: 40px;
}

.copyright_footer{
    background-color: #000;
    padding: 15px 40px;
    text-align: center;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright_footer p{
    margin-bottom: 0;
    color: #dddddd;
    font-size: 12px;
}

.page_light .header {
    position: relative;
}

.page_light .header_backdrop {
    background: #ffffff;
    display: none;
}

.page_light .header_area_logo_menu a {
    color: #000000;
}

.page_light .header_main_menu > li > a {
    color: #000000;
}

.page_light .header_user-menu-button svg path {
    fill: #000000;
}


body:not(.home) .header {
    position: relative;
}

body:not(.home) .header_backdrop {
    background: #ffffff;
    display: none;
}

body:not(.home) .header_area_logo_menu a {
    color: #000000;
}

body:not(.home) .header_main_menu > li > a {
    color: #000000;
}

body:not(.home) .header_user-menu-button svg path {
    fill: #000000;
}


.section_chart{
  background-color: #ebebeb;
  padding-top: 4px;
}

.chart_main{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.chart_layout_center{
    width: 75%;
}

.chart_layout_right{
    width: 25%;
    padding-left: 4px;
}

.chart_layout_bottom{
    width: 100%;
    margin-top: 4px;
    margin-bottom: 4px;
    background: #ffffff;
}

.chart_layout_bottom_acc{
    width: 25%;
    padding-left: 4px;
	margin-top: 4px;
    margin-bottom: 4px;
}

.tab_chart_right{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    align-content: center;
    height: 100%;
    width: 100%;
    background: #ffffff;
    border-radius: 4px;
}

.tab_chart_right ul.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 50px;
    /* height: 44px; */
    overflow: hidden;
    border-left: 1px solid #ebebeb;
    padding-top: 5px;
}

.tab_chart_right ul.nav > li{
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
}

.tab_chart_right ul.nav > li > a{
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    border-radius: 4px;
    color: #000000;
}

.tab_chart_right ul.nav > li > a.active, .tab_chart_right ul.nav > li > a:hover{
    background-color: #ebebeb;
    color: #000000;
}

.tab_chart_right .tab-content {
    width: calc(100% - 50px);
}

.chart_layout_bottom ul.nav {
    border-bottom: 1px solid #ebebeb;
    padding: 5px 10px;
}

.chart_layout_bottom ul.nav > li {
    margin-left: 10px;
}

.chart_layout_bottom ul.nav > li:first-child{
    margin-left: 0px;
}

.chart_layout_bottom ul.nav > li > .nav-link{
    font-size: 14px;
    color: #000000;
}

.chart_layout_bottom ul.nav > li > .nav-link.active, .chart_layout_bottom ul.nav > li > .nav-link:hover{
      background-color: #ebebeb;
}

.text_not-data{
    text-align: center;
    padding: 20px 0;
}

.text_not-data svg {
    width: 120px;
    height: 120px;
}

.text_not-data svg path{
    fill: #b7b7b7;
}

.text_not-data p{
    color: #b7b7b7;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    margin-top: 16px;
}

.content {
  display: none;
/*   margin-top: 10px; */
/*   padding: 10px; */
  /*border: 1px solid #ddd;
  border-radius: 6px;*/
}

.dropdown_chart button.btn{
    box-shadow: none;
}

.content_md_text{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.content_md_text .dropdown_chart{
    width: 100%;
    text-align: center;
}

.content_md_text img{
    margin-bottom: 16px;
}

.content_md p{
    text-align: center;
    font-size: 18px;
    width: 100%;
    margin-top: 10px;
}

.wrap_chart {
    cursor: default;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.table_list_chart{
	display: flex;
    flex: 1 1 auto;
    font-style: normal;
    min-width: 100%;
    font-size: 12px;
    font-weight: 400;
    border-bottom: 1px solid #ebebeb;
    line-height: 18px;
	color: #707070;
}

.flag_list_chart {
    align-items: center;
    align-self: center;
    display: flex;
    height: 26px;
}

.flag_list_chart svg{
    height: 13px;
    width: 12px;
}

.flag_list_chart svg path{
    fill: #dbdbdb;
}

.table_list_chart span.symbolName{
	align-items: center;
    box-sizing: border-box;
    display: flex;
    flex: 1 1 80px;
    flex-direction: row-reverse;
    height: 27px;
    justify-content: flex-start;
    justify-content: flex-end;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 3px 8px 3px 4px;
    white-space: nowrap;
}

.table_list_chart span.last_span, .table_list_chart span.change_span{
	align-items: center;
    box-sizing: border-box;
    height: 27px;
    justify-content: flex-end;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 3px;
    padding-right: 8px;
    padding-top: 3px;
    white-space: nowrap;
    display: flex;
    flex: 1 1 75px;
}

.table_list_chart span.last_span{
    display: flex;
    flex: 1 1 75px;
}

.table_list_chart span.change_span{
	display: flex;
    flex: 1 1 70px;
}

.table_list_chart span.changein_span{
	align-items: center;
    box-sizing: border-box;
    height: 27px;
    justify-content: flex-end;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding-bottom: 3px;
    padding-right: 8px;
    padding-top: 3px;
    white-space: nowrap;
	display: flex;
    flex: 1 1 60px;
	margin-right: 8px;
}

.table_list_chart span.symbolName.symbolName_btc{
	flex-direction: row;
	justify-content: flex-start;
	margin-left: 14px;
	color: #000000;
}

.table_list_chart span.symbolName.symbolName_btc img{
	border-radius: 99px;
	margin-right: 5px;
	width: 18px;
    height: 18px;
}

.content_list_chart .table_list_chart {
    color: #000000;
}

.content_list_chart .table_list_chart:last-child {
    border-bottom: 1px solid transparent;
}

.content_list_chart .table_list_chart.active{
	background: #ebebeb;
    border: 1px solid #000000;
    border-radius: 4px;
}

.content_list_chart .table_list_chart:hover{
	background: #ebebeb;
}

.green{
	color: #22ab94;
}

.red{
	color: #f23645;
}

.search_list_chart{
	padding: 0 0px;
}

.search_list_chart input{
	font-size: 14px;
	border: none;
    border-bottom: 1px solid #ebebeb;
    box-shadow: none;
	border-radius: 0px;
	padding: 15px 20px;
	line-height: 1.2;
	min-height: 51px;
}


.search_list_chart input:focus{
    box-shadow: none;
	border-color: #ebebeb;
}

@media only screen and (max-width: 550px) {
	.header_middle_wrapper{
		display: none;
	}
	
	.header_user-pricing{
		font-size: 14px;
	}
	
	.header_inner{
    	justify-content: space-between;
	}
	
	.header_inner {
    	padding-left: 20px;
    	padding-right: 20px;
	}
	
	.header_user-menu-button{
		display: none;
	}
	
	.mobi_nav {
    	display: block;
    	margin-right: 10px;
		height: 30px;
        width: 30px;
        background: #ffffff;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 99px;
	}
	
	.mobi_nav svg path{
		fill: #000000;
	}
	
	body:not(.home) .header_area_logo_menu .mobi_nav {
    	display: block;
    	margin-right: 10px;
		height: 30px;
        width: 30px;
        background: #000000;
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: center;
        border-radius: 99px;
	}
	
	body:not(.home) .header_area_logo_menu .mobi_nav svg path{
    	fill: #ffffff;
	}
	
	.offcanvas {
    	z-index: 1060;
	}
	
	ul.menu_mobi_nav{
		list-style: none;
    	padding: 0;
    	margin: 0;
	}
	
	ul.menu_mobi_nav > li{
		
	}
	
	ul.menu_mobi_nav > li > a{
		padding: 8px 0;
		display: block;
		color: #000000;
		display: flex;
		align-items: center;
		justify-content: flex-start;
		align-content: center;
		width: 100%;
		font-size: 16px;
	}
	
	ul.menu_mobi_nav > li > a > span{
		margin-left: 5px;
	}
	
	.section_banner_content h1{
		font-size: 35px;
	}
	
	.section_banner_content p {
		font-size: 14px;
	}
	
	.header_user-pricing.button_free_home {
    	padding: 0.5em 1.2em;
    	font-size: 16px;
	}
	
	.chart_layout_center{
    	width: 100%;
	}
	
	.chart_layout_right {
    	width: 100%;
    	padding-left: 0px;
    	padding-top: 4px;
		min-height: 350px;
	}
	
	.chart_layout_bottom ul.nav > li > .nav-link{
		font-size: 14px;
		color: #000000;
		padding-left: 8px;
		padding-right: 8px;
	}
	
	.text_not-data svg{
   	 	width: 65px;
    	height: 65px;
	}
	
	.text_not-data p {
    	font-size: 18px;
	}
}