:root {
  --body-bg:#F2F2F2;
  --text-color:#1A2645;
  --nav-bg:#F2F2F2;
  --switch-bg:#878E9F;
  --nav-border:#CFCFD1;
  --option-button:white;
  --active-button:#1A2645;
  --gradient-button:linear-gradient(to bottom, rgba(108,219,141,0) 25%,#1A2645 25%,#1A2645 75%,rgba(108,219,141,0) 75%);
  --right-border-button:#1A2645;
  --widg-bg:white;
  --up-down-up:url("/img/flecha%20arriba.png");
  --up-down-down:url("/img/flecha%20abajo.png");
  --card-alert-border:#1A2645;
  --text-card-color-f:#1A2645;
  --text-card-color-s:#878E9F;
  --text-card-color-t:#383C4A;
  --text-sub-card-color:#272A35;
  --card-bg-base: rgb(255,255,255);
  --card-bg-base-gr: linear-gradient(90deg, rgba(255,255,255,0.196516106442577) 0%, rgba(228,228,228,0.6166841736694677) 100%);
  --switch:"\f185";
  --switch-off:"\f186";
  --switch-margin:35px;
  --switch-sun:#ff9900;
  --switch-moon:#878E9F;
  --switch-circle-color:#CFCFD1;
  --dropdown-menu-color:black;
  --bg-dpdown-menu-color:#edecee;
  --btn-idiom-color:black;
  --dpdown-shadow: 10px -3px 12px 0px #c3c1bf;
  --hunter-color:#2aa77b;
  --hunter-rgb: rgb(42, 167, 123);
  --hunter-rgb-shadow: 0 5px 10px rgb(42, 167, 123 / 30%) !important;
  --par:#ababab;
  --foot_priv_bg:#FFF;
  --image-filter:none;
  --res-tempo:#f2f2f2;
  --res-tempo-color:#2aa77b;
  --alert-active:rgba(128, 128, 128,0.5);
  --res-tempo-b:rgba(128,128,128,.5);
}
[data-theme="dark"] {
  --body-bg:#272a35;
  --text-color:white;
  --nav-bg:#272a35;
  --switch-bg:#878E9F;
  --nav-border:#383C4A;
  --option-button:#1e222d;
  --active-button:white;
  --gradient-button:linear-gradient(to bottom, rgba(108,219,141,0) 25%,#CFCFD1 25%,#CFCFD1 75%,rgba(108,219,141,0) 75%);
  --right-border-button:#CFCFD1;
  --widg-bg:#1e222d;
  --up-down-up:url("/img/flecha%20ariba%202.png");
  --up-down-down:url("/img/flecha%20abajo%202.png");
  --card-alert-border:#878E9F;
  --text-card-color-f:white;
  --text-card-color-s:#878E9F;
  --text-card-color-t:#383C4A;
  --text-sub-card-color:white;
  --card-bg-base: #1e222d;
  --card-bg-base-gr: #1e222d;
  --switch:"\f186";
  --switch-off:"\f185";
  --switch-margin:-24px;
  --switch-sun:#878E9F;
  --switch-moon:#878E9F;
  --switch-circle-color:#1e222d;
  --dropdown-menu-color:#fff;
  --bg-dpdown-menu-color:linear-gradient(0deg, rgba(56,60,74,1) 0%, rgba(30,32,43,1) 100%);
  --btn-idiom-color:#fff;
  --dpdown-shadow: none;
  --par:#ababab;
  --foot_priv_bg:#272a35;
  --foot_priv_color:white;
  --image-filter:brightness(0) invert(1);
  --res-tempo:rgba(117,134,150,.6);
  --res-tempo-color:#2aa77b;
  --alert-active:rgba(128, 128, 128,0.5);
  --res-tempo-b:rgba(117,134,150,.6);
}


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

html { height:100%; }
ul.dropdown-menu {
  color:var(--dropdown-menu-color);
  background: var(--bg-dpdown-menu-color);
  border-radius: 10px;
  box-shadow:var(--dpdown-shadow);
}
body {
  /*position:absolute; top:0; bottom:0; right:0; left:0;*/

  display: flex;
 /* flex-direction: column;*/
  /* height: 100vh; */
  background-color: var(--body-bg);
}

/* html[theme="dark-mode"] {
  filter: invert(1) hue-rotate(180deg);
} */

.option{
  color: #FFFFFF;
}


.active {
  color: var(--active-button) !important;
}

.avatar {
  border-top-left-radius:50%;
  border-bottom-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  /*margin-left: 2px;*/
  margin-top: 2px;
}
.btn-idiom{
  margin: auto 0rem;
}
.idioma {
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: none;
  margin-top: -10px;
  text-align: center;
  color: var(--btn-idiom-color);

}

.logout {
  font-size: 20px;
  cursor: pointer;
  border: none;
  background: none;
  margin-top: -10px;
}


main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5px 25px 0px 25px;
  background-color: var(--body-bg);
}

.navbar {
  background-color: white;
  padding: 0px 20px;
  display: flex;

  justify-content: space-between;
  align-items: center;
}

.navbar-list {
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar-list li {
  margin-right: 20px;
}

.navbar-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 40px;
  margin-right: 20px;
}

.header {
  padding: 0 20px;
  display: flex;
  align-items: center;
  background-color:var(--nav-bg);
  border-bottom:1px solid var(--nav-border);
  height: 80px;
}



.header-logo {
  padding: 5px 0;
  height: 55px;
  /* width: 80px; */
  margin-left: 12px;
}

.separator {
  color: gray;
  margin: 0 15px;
  /*border-right: 2px solid gray;*/
  height: 55px;
}

main {
  flex: 1;
  height: 100%;
  width: 100%;
  min-height: calc(100vh - 80px);
  max-height: calc(100vh - 80px);
}

.theme-icon {
  font-size: 13px;
  border: 1px solid gray;
  padding: 5px;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  z-index: 10;
}


.theme-icon2{

  font-size: 20px;
  border: none;
  padding: 0px;
  margin: 0 15px;
  cursor: pointer;
  z-index: 10;

}

.options-container {
  padding: 5px;
  display: flex;
  justify-content: space-around;
  height: 26px;
  width: 260px;
  color: #fff;
  min-height: 26px;
  max-height: 26px;
}


.options-container button {
  background-color: var(--option-button);

  width: 80px;
  text-align: center;
  border: 1px solid #FFF;
  border-left-width: 0px;
  border-right-color:var(--right-border-button);
  cursor: pointer;
  color:var(--text-card-color-s);
  border-image: var(--gradient-button);
  border-image-slice: 1;
}
.options-container button.left-radius {
  background-color: var(--option-button);

  width: 80px;
  text-align: center;
  border: 1px solid #FFF;
  border-top-left-radius:10px;
  border-bottom-left-radius:10px;
  border-top-right-radius:0px;
  border-bottom-right-radius:0px;
  border-image: var(--gradient-button);
  border-left-width: 0px;
  border-image-slice: 1;
  cursor: pointer;
}
.options-container button.right-radius {
  background-color: var(--option-button);

  width: 80px;
  text-align: center;
  border: 1px solid var(--option-button);
  border-top-left-radius:0px;
  border-bottom-left-radius:0px;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border-left-width: 0px;
  cursor: pointer;
}
.option-container button.active{
  color: #1A2645 !important;
}


no-border-kind{
  border-right: none !important;
}




/*.option::after {
  content: ",";
}*/

.option:last-child::after {
  content: "";
}

.content {
  flex: 1;
  margin-top: 3px;
  display: flex;
  padding: 5px;
}

.widget {
  border: 10px solid var(--widg-bg);
  border-radius: 10px;
  width: 75%;
  height: calc(100vh - 80px - 26px - 50px - 5px);
  flex: 1;
}

.panel {
  background-color: var(--widg-bg);
  border: 25px solid var(--widg-bg);
  margin-left: 30px;
  width: 25%;
  border-radius: 50px;
  padding: 10px;
  font-size: 90%;
  overflow-y:auto;
  overflow-x:hidden;
}

.panel h4 {
  color: var(--text-color);
  font-weight: bolder;
  letter-spacing: 3px;
  font-size: 20px;
  text-align: center;
}

.panel > div.container {
  color: var(--text-color);
  text-align: center;
}

.panel input {
  width: 100%;
  margin-bottom: 10px;
}

.alerts {
  width: 100%;
  height: calc(100vh - 80px - 26px - 50px - 85px);
  overflow-y: scroll;
  overflow-x: hidden;
  /* overflow:visible; */
  box-sizing:border-box;
  margin-right: 30px;
}



.active-alert {
  background-color: #E47E2B;
}

.footer{
    background-color:#FFFFFF;
    opacity: 0.5;
}
.foot-er{
  color:var(--text-color);
}



.broker-combo{
  border-top-left-radius:25px !important;
  border-bottom-left-radius:25px !important;
  border-top-right-radius:25px !important;
  border-bottom-right-radius:25px !important;
  background-color: var(--widg-bg) !important;
  color: var(--text-card-color-s) !important;
  font-size: 0.8rem !important;
  height: calc(2.25rem) !important;
  background: url("http://cdn1.iconfinder.com/data/icons/cc_mono_icon_set/blacks/16x16/br_down.png") no-repeat !important;
  background-position: calc(100% - 10px) center !important;
	appearance: none !important;
  padding-right: 2.0rem !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
}
.broker-combo::-ms-expand {
	display: none;
}


.sphere-broker{
  border-top-left-radius:50%;
  border-bottom-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  width:40px;
}
.title-broker{
  color:var(--text-color);
}

.up-down{
  background-color: var(--widg-bg);
  width: 54px;
  height: 93%;
  margin-left: 10px;
  position:relative;
  margin-top: 1%;
}
.flags{
  background-color: var(--widg-bg);
  width: 75px;
  height: 93%;
  margin-left: 20px;
  position:relative;
  margin-top: 1%;
  float: right;
  background-color: transparent;
}

.mid-body > div.mid-body-f{
  padding-top: 10px;
  color:var(--text-card-color-f);
  font-size:.8rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mid-body > div.mid-body-s{
  color:var(--text-card-color-s);
  font-size:.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mid-body > div.mid-body-t{
  color:var(--text-card-color-t);
  font-size:.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sub-card-title{
  color:var(--text-sub-card-color);
  height:40px;
  width:100%;
  font-size:.8rem;
  text-align: center;
  font-weight: 500;
}
.sub-card-flag{
  height:40px;
  width:100%;
  position: relative;
  margin-bottom: -15px;
}
.sub-card-flag > img{
  height:25px;
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;

}

.up-down.up{
  background-image: var(--up-down-up) !important;
  background-repeat:no-repeat;
  background-position: center;
  background-size: 80% ;
  background-color: transparent;
  float: left;
}
.up-down.down{
  background-image: var(--up-down-down) !important;
  background-repeat:no-repeat;
  background-position: center;
  background-size: 80% ;
  background-color: transparent;
  float: left;
}

.card-alert{
  border-top-left-radius:25px !important;
  border-bottom-left-radius:25px !important;
  border-top-right-radius:25px !important;
  border-bottom-right-radius:25px !important;
  border-color: var(--card-alert-border) !important;
  border-width: 1px;
  border-style: solid;
  position: relative;
  cursor:pointer;
  background: var(--card-bg-base);
  background: var(--card-bg-base-gr);
}

.border-gradient {
  /* border: 10px solid; */
  border-image-slice: 1;
  /* border-width: 5px; */
  border-radius: 50%;
  position:absolute;
  top:50%; left:50%;
  transform: translate(-50%, -50%);
  margin:0;
  width:60px;
  height: 60px;
  background: linear-gradient(to left, #00C853, #B2FF59);

}
.border-gradient-green {
  position: absolute;
  background-color: var(--widg-bg);
  border-radius: 50%;
  width:50px;
  height: 50px;

}
.notify-bell-lnk{
  height: 30px;
  margin-right: 1rem;
}
.switch-container{
  margin: auto 1rem;
}
.avatar-container{
  margin-top: 0px;
  margin-right: 2rem;
  border-top-left-radius:50%;
  border-bottom-left-radius:50%;
  border-top-right-radius:50%;
  border-bottom-right-radius:50%;
  width: 54px;
  height: 54px;
  background: rgb(4,122,144);
background: -moz-linear-gradient(270deg, rgba(79,221,22,0.7147233893557423) 20%, rgba(4,122,144,0.6166841736694677) 45%);
background: -webkit-linear-gradient(270deg, rgba(79,221,22,0.7147233893557423) 20%, rgba(4,122,144,0.6166841736694677) 45%);
background: linear-gradient(270deg, rgba(79,221,22,0.7147233893557423) 20%, rgba(4,122,144,0.6166841736694677) 45%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4fdd16",endColorstr="#047a90",GradientType=1);
}

.broker-sphere{
  padding: 0 !important;
}

.foot-banner-p {
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.foot-banner-p a{

  color:var(--text-color);
}

.foot-banner-p a:hover{
  color:var(--text-color);
}





.switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 25px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--switch-bg);
  -webkit-transition: .4s;
  transition: .4s;

}

.slider:after {
  font-family: "Font Awesome\ 5 Free";
  content: var(--switch-off);
  margin-left:var(--switch-margin);
  line-height: 1.7rem;
  font-size: 1rem;

}

.slider:before {
  position: absolute;
  font-family: "Font Awesome\ 5 Free";
  content: var(--switch);
  height: 25px;
  width: 25px;
  left: 0px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  text-align: center;
  margin: auto;
  line-height: 1.7rem;
  font-size: 1rem;
  color:var(--switch-sun);
  background-color: var(--switch-circle-color);
}

input:checked + .slider {
  background-color: var(--switch-bg);
}

input:focus + .slider {
  box-shadow: 0 0 2px #272a35;
}

input:checked + .slider:before {
  -webkit-transform: translateX(32px);
  -ms-transform: translateX(32px);
  transform: translateX(32px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  border-color: var(--card-alert-border);

}

.slider.round:before {
  border-radius: 50%;
}

.footer-item{
  text-align: center;
  flex: 1 !important;
  flex-grow: 1 !important;
  flex-basis: 0 !important;
}

.footer-link-item{
  margin-left: auto;
  margin-right: auto;
  text-decoration: none; 
}

.footer-link-item-social{
  text-decoration: none; 
  margin-left:1rem;
  margin-right: 1rem;
  font-size:16px;
  display: flex !important;
  align-items: center !important;
}
.foot-cont{
  align-items: end;
}


.icon-sus {
  width: 16px;
  height: 16px;
  display: inline-block;
  background-color: #1B2646;
  -webkit-mask: url('/static/images/idiomas.svg') no-repeat center;
  mask: url('/static/images/idiomas.svg') no-repeat center;
  line-height: 1;
}

.body-container{
	width: 100%;
	position: relative;
	display: flex;
	/*min-height: 100vh;*/
	height: 100%;
	
	background-color: var(--body-bg);
	padding:5px 25px 0px 25px;
}

.widget_container{
  padding:0rem 1rem 1rem 1rem;
  height: calc(100vh - 80px - 26px - 50px - 10px);
}

.alert-panel{
    width: 25%;
    margin-left:30px;
    height: 100vh;
    padding:0rem 0;
}


.alert-container{
    position:relative;
    width: 100%;
    height: 50vh;
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    margin-right: 30px;
}
.alert-container::-webkit-scrollbar {
  width: 10px; 
}

.alert-container::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px 10px transparent;
  border: solid 3px transparent;
}

.alert-container::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #CFCFD1;
  border: solid 3px transparent;
}
.alert-container::-webkit-scrollbar-button{
  color:transparent;
}


.alert-subpanel{
  width: 100%;
  padding: 2px;
  font-size: 90%;
  height: 100%;
  background-color: var(--widg-bg);
  border: 10px solid var(--widg-bg);
  border-radius: 15px;

}
.card-alert{
  border-top-left-radius:25px !important;
  border-bottom-left-radius:25px !important;
  border-top-right-radius:25px !important;
  border-bottom-right-radius:25px !important;
  border-color: var(--card-alert-border) !important;
  border-width: 1px;
  border-style: solid;
  position: relative;
  cursor:pointer;
  background: var(--card-bg-base);
  background: var(--card-bg-base-gr);
  min-height: 80px;
  /*height: 80px;*/
  margin-bottom: 1rem!important;
  display: flex
  
}

.up-down{
  background-color: var(--widg-bg);
  width: 54px;
  height: 93%;
  margin-left: 10px;
  position:relative;
  /*margin-top: 1%;*/
}
.flags{
  background-color: var(--widg-bg);
  width: 75px;
  height: 93%;
  margin-left: 20px;
  position:relative;
  margin-top: 1%;
  float: right;
  background-color: transparent;
}
.mid-body{
  position:relative;
  float: left;
  /*height: 80px;*/
  min-width: calc(100% - 150px); 
  background-color: transparent;
  text-align: left;
}

.mid-body > div.mid-body-f{
  padding-top: 10px;
  color:var(--text-card-color-f);
  font-size:.8rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mid-body > div.mid-body-s{
  color:var(--text-card-color-s);
  font-size:.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0.1rem;
  margin-top: 0.1rem;
}

.mid-body > div.mid-body-t{
  color:var(--text-card-color-t);
  font-size:.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 10px;
  display: flex;
}

.sub-card-title{
  color:var(--text-sub-card-color);
  height:40px;
  width:100%;
  font-size:.8rem;
  text-align: center;
  font-weight: 500;
}
.sub-card-flag{
  height:40px;
  width:100%;
  position: relative;
  margin-bottom: -15px;
}
.sub-card-flag > img{
  height:25px;
  display: block;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;

}

.up-down.up{
  background-image: var(--up-down-up) !important;
  background-repeat:no-repeat;
  background-position: center 0px;
  background-size: 80% ;
  background-color: transparent;
  float: left;
  min-height: 80px;
  margin: 10px auto;
  /*margin-left: 10px;*/
}
.up-down.down{
  background-image: var(--up-down-down) !important;
  background-repeat:no-repeat;
  background-position: center 0px;
  background-size: 80% ;
  background-color: transparent;
  float: left;
  height: 80px;
  min-height: 80px;
  margin: 10px auto;
  /*margin-left: 10px;*/
}

.on-mobile{
  display: none
}

.logout-button{
  padding: 1rem
}

.dp-l{
  left:0px !important;
}


.btn-lng{
  padding: 1rem 2.5rem 1rem 1rem;
}


.custom-row-filter{
  /*padding-left:0.75rem;*/
  margin:0;
}
.broker-combo-parnt{
  padding:0.1rem !important;
  width: 27%;
  /*flex: 0.33;*/
}

.alert-light{
  padding: 3px 15px;
  background-color: white;
  color: white;
  border-radius: 30deg;
  font-size: 12px;
  border-radius: 8px;
  margin-right: 5px
}

.alert-light-red{
  background-color: #C22E31
}
.alert-light-yellow{
  background-color: #F2D12F
}
.alert-light-green{
  background-color: #2AA77B
}
.alert-light-dark-blue{
  background-color: #CFCFD1 
}
.alert-light-gray{
  background-color: #292735 
}
.alert-mined-cyan{
  background-color: #1ab2d1 
}
.alert-mined-green{
  background-color: #2aa77b 
}

span.filter-badge {
    height: 12px;
    width: 25px;
    border-radius: 3px;
    display: inline-block;
}

li span.red { background-color: #C22E31 }
li span.yellow { background-color: #F2D12F }
li span.green { background-color: #2AA77B }

.dropdown-button-filter span.red { background-color: #C22E31 }
.dropdown-button-filter span.yellow { background-color: #F2D12F }
.dropdown-button-filter span.green { background-color: #2AA77B }

.card-alert-bolder{
  font-weight: bolder !important;
  color: var(--text-card-color-f) !important;
}

.dropdown-button-filter{
  width:100%;
  border-radius:25px;
  display:flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0.5rem;
  font-size: 0.8rem !important;
  color: var(--text-card-color-s) !important;
  background-color:  var(--widg-bg) !important;
  border: 1px solid #ced4da;
  z-index: 9999;
  position: relative;
  height: 100%;
}

ul.dropdown-c-filter{
    text-decoration: none;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 0.7rem;
    position:absolute;
    width: calc(100% - 0.2rem);
    background-color: var(--widg-bg);
    z-index: 10000;
    text-align: left;
    margin-top: -1rem;
    border: 1px solid #ced4da;
    height: auto;
    display: block;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    color:var(--text-card-color-s) !important;
    max-height: 400px;
    overflow: auto;
}

.hid-filter{
  height: 0px !important;
  display: none !important;
}

.filter-cont{
  position:relative;
}
.filter-item:first-child{
  margin-top: 1rem
}
.filter-item:last-child{
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}
.filter-item{
  display:flex;
  align-items: center;
  padding: 5px 0.5rem;
  position:relative;
  cursor: pointer;
  justify-content: center;
  border-bottom: 1px solid #ced4da;
}

.filter-item:hover{
  background-color: #878E9F;
  color:white;
}

.dropdown-menu{
  z-index:1000000;
}

span.filter-badge-button {
    height: 15px;
    width: 25px;
    border-radius: 3px;
    display: inline-block;
    margin-right: 5px;
}

.strategy-active-a{
  width: 24%;
  height: 40px
}
.strategy-active-b{
  width: 27%;
  height: 40px
}

@media only screen and (min-width: 1700px){
  .widget_container{
    min-width:78%;
  }
  .alert-panel{
    width: 22%;
  }
  .resolution_bar_b{
      margin-right: calc(22% + 30px + 5px) !important
  }
}
@media only screen and (max-width: 1320px){
  .widget_container{
    min-width:70%;
  }
  .alert-panel{
    width: 30%;
  }
}
@media only screen and (max-width: 1172px){
  .flags{
    margin-left: 0px;
  }
  .widget_container{
    min-width:65%;
  }
  .alert-panel{
    width: 35%;
  }
}
@media only screen and (max-width: 1084px){
  .broker-sphere{
    float: right;
  }
  .body-container{
    flex-direction: column;
    flex-wrap: wrap;
  }
  .widget_container{
    min-width:100%;
    height: 500px;
    padding: 0;
    flex: 1;
  }
  .alert-panel{
    margin:auto;
    margin-top: 30px;
    width: 100%;
    height: 500px;
    flex: 1;
  }
  .up-down{
    margin-top: auto !important;
  }
  body{
    background-color: var(--body-bg) !important;
  }
  .alerts{
    height: 400px;
  }
  .foot-cont{
    margin-top:10px !important; 
    flex-direction: column;
    align-items: initial !important;
  }
  .alert-container{
    height: 400px
  }
  .resolution_bar{
    margin-left:25px !important
  }
  .resolution_bar_b{
    margin-left:auto !important;
    margin-right: 25px !important
  }
}
@media only screen and (max-width: 792px){
  .options-bar{
    flex-direction:column;
  }
  .resolution_bar_b{
    width: 260px !important;
    margin-left:25px !important;
    margin-right: auto !important
  }
  .header-logo{
    display: none;
    margin:0;
  }
  .on-mobile{
    display: flex !important
  }
  .avatar-container{
    display: none
  }
}
@media only screen and (max-width:440px){
  .header-logo{
    height: 60px;
  }
  /*.card-alert{*/
  /*  height: 100px !important;*/
  /*}*/
  .up-down{
    width: 60px !important;
  }
  .up-down.up{
    height: 60px;
    background-size: 60% ;
    margin-left: 5px;
    margin-right: 5px;
  }
  .up-down.down{
    height: 60px;
    background-size: 60% ;
    /*margin-left: 0;*/
    /*margin-top: 0;*/
    margin-left: 5px;
    margin-right: 5px;
  }
  .mid-body{
    /*width: calc(100% - 80px);*/
  }
  .flags{
    /*width: 100%;*/
    height: 0;
  }
  .title-broker{
    width:100% !important;
    float: left !important;
    margin-bottom: 10px;
  }
  .broker-combo-parnt{
    /*width:80% !important;*/
  }
  .broker-sphere{
    width:20%;
    margin-left: auto
  }
  .avatar{
    margin-right: 10px !important;
  }
  .notify-bell-lnk{
    margin-right: 10px !important;
  }
  .switch-container{
    margin-right: 10px;
  }
  .avatar-container{
    margin-right: 10px;
  }
  .btn-idiom{
    margin-right: 1px !important;
  }
  .broker-combo-parnt{
    padding: 0.2rem 0.75rem !important;
    flex: 1;
  }
  .custom-row-filter{
    flex-direction: column-reverse;
  }
  .broker-combo-parnt{
    width:100%;
  }
  ul.dropdown-c-filter{
    width: calc(100% - 1.5rem) !important;
  }
}

@media only screen and (max-width:375px){
  .mid-body{
    width: calc(100% - 80px - 80px);
  }
  /*.card-alert{*/
  /*  height: 160px !important;*/
  /*}*/
  .btn-lng {
      padding: 0.5rem;
  }
  .logout-button{
    padding: 0rem
  }
}

body::-webkit-scrollbar {
  width: 10px; 
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px 10px transparent;
  border: solid 3px transparent;
}

body::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #CFCFD1;
  border: solid 3px transparent;
}
body::-webkit-scrollbar-button{
  color:transparent;
}


body .dropdown-c-filter::-webkit-scrollbar {
  width: 10px; 
}

body .dropdown-c-filter::-webkit-scrollbar-track {
  box-shadow: inset 0 0 10px 10px transparent;
  border: solid 3px transparent;
}

body .dropdown-c-filter::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 10px 10px #CFCFD1;
  border: solid 3px transparent;
}
body .dropdown-c-filter::-webkit-scrollbar-button{
  color:transparent;
}

.avatar-placeholder{
  display: flex;
  height: 100%;
  align-items: center;
  text-align: center;
  justify-content: center;
  font-size: 25px;
  /* line-height: 0px; */
  color: white;
}

.filter-btn{
  z-index:99999;
}

.resolution_bar{
    padding: 5px;
    margin-left: calc(25px + 1rem);
    margin-top: 5px;
    display: flex;
    justify-content: space-around;
    height: 26px;
    width: 260px;
    color: var(--text-card-color-s);
    min-height: 26px;
    max-height: 26px;
    background-color: var(--option-button);
    border-radius: 10px;
}

.resolution_bar span.option-rb{
  line-height: 1;
  cursor:pointer;
  width: 80px;
  border-right: 1px solid black;
  color: var(--text-card-color-s);
}
.resolution_bar span:last-child{
  border-right: none;
}

.resolution_bar span.option-rb:hover{
  background-color: var(--res-tempo);
  color:var(--res-tempo-color);
}


.resolution_bar span.option-active{
  background-color: var(--res-tempo);
  color:var(--res-tempo-color);
}

.active-now-alert::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--alert-active);
  opacity: 0.5;
  border-top-left-radius:25px !important;
  border-bottom-left-radius:25px !important;
  border-top-right-radius:25px !important;
  border-bottom-right-radius:25px !important;
}

.card-alert-containers{
  width: 100% !important;
  display: flex;
}

.side-s-line{
  display: flex;
  opacity:0;
  border-left: 2px solid var(--alert-active) ;
  height: auto;
  content:"";
  margin-left: 10px;
  margin-right: 10px;
  /* padding-bottom: 10px; */
  margin-bottom: 1rem;
  margin-top: 0;
}

.side-s-line.active{
  display: flex;
  opacity:1;
}

.resolution_bar_b span:not(.sub):last-child{
  border-right: none;
  margin-left: 5px;
}
.option-rb-s{
  line-height: 1;
    cursor: pointer;
    width: 149px;
    /*border-right: 1px solid black;*/
    color: var(--text-card-color-s);
    background-color: var(--option-button);
    padding:5px;
    border-radius: 10px;
}

.option-rb-s span{
  width: calc(100% - 5px);
    display: inline-block;
    margin: 0;
}

.resolution_bar_b span.option-rb-s:hover{
  background-color: var(--res-tempo-b);
  /*background-color: var(--alert-active);*/
  /*background-color: var(--option-button);*/
  color:var(--res-tempo-color);
}


.resolution_bar_b span.option-active{
  background-color: var(--res-tempo-b);
  /*background-color: var(--alert-active);*/
  /*background-color: var(--option-button);*/
  color:var(--res-tempo-color);
}

.resolution_bar_b{
  /*padding: 5px;*/
    /*margin-left: calc(25px + 1rem);*/
    margin-left: auto;
    margin-right: calc(25% + 30px + 1rem + 5px);
    margin-top: 5px;
    display: flex;
    justify-content: space-around;
    height: 26px;
    width: 300px;
    color: var(--text-card-color-s);
    min-height: 26px;
    max-height: 26px;
    /*background-color: var(--option-button);*/
    border-radius: 10px;
}
