@import 'https://fonts.googleapis.com/css?family=Roboto:200,400,500,700';
@import 'https://fonts.googleapis.com/css?family=Rubik:200,400,500,700';

body{
    font-family:'Rubik',sans-serif;
    margin: 0;
    letter-spacing: .5px;
}
body {
    background: #0d6efd;
}
a {
    text-decoration: none;
}

h2, h3 {
    margin: 0;
    /* font-weight: 400; */
    /*opacity: 0.2;*/
}
ul {
    padding: 0;
    list-style: none;
}

input.form-control {
    background: #36393e;
    color: #ebecf0;
    border: 0 none;
    -webkit-: ;
    font-size: 15px;
    height: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.wrap {
    min-height: 100%;
    height: auto;
    margin: 0 auto -60px;
    padding: 0 0 0px !important;
}

div#left_menu {

    display: -ms-flexbox;
    display: flex;

    -ms-flex-direction: column;
    flex-direction: row;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    z-index: 1000;
    width: 100%;
    align-content: flex-start;
    flex-wrap: nowrap;
    position: relative;
}
.bgr {
    background: #fff;
}


/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: .9em; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
  content: '';
  border: 5px solid transparent; /* opinion 4 */
  z-index: 1001; /* absurdity 1 */
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  /*font-family: Helvetica, sans-serif;*/
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 21em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: .3ch;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #333;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
  z-index: 9999999999999;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 100%;
  border-bottom-width: 0;
  border-top-color: #333;
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 5px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 30px;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 20px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 30px;
  left: calc(100% + 20px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 100ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 100ms ease-out forwards;
}

.profil {
    position: absolute;
    top: -13px;
    
    left: -450px;
    padding-left: 90px;
    padding-top: 20px;
    display: flex;
    justify-content: space-around;
    width: 400px;
    height: 65px;
    background: #23272c;
    z-index: -999999999999;
    opacity: 0;
}

.logo .profil img {
    width: 15px;
    margin: 0;
    height: 30px;
}
.logo .profil p {
    margin: 0;
}
.logo:hover .profil {
    left: -8px;
    opacity: 1;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 100px;
}

.logo img:hover{
    opacity: 1;
    
}

div#nav_menu .nav__menu__item a {
    letter-spacing: 2px;
    /* margin-top: 20px; */
    text-align: center;
    color: #545454;
    font-size: 12px;
    position: relative;
    text-decoration: initial;
    text-align: center;
    padding: 15px;
    display: flex;
    /* font-family: Poppins, Helvetica, "sans-serif"; */
}

div#left_menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: row;
    -ms-flex-align: center;
    -ms-flex-pack: justify;
    z-index: 1000;
    width: 100%;
    flex-wrap: nowrap;
    width: 90vw;
    margin: auto;
    height: 50px;
    align-items: center;
}

div#nav_menu {
    display: flex;
}
div#nav_menu:hover{
    opacity: 1;
    filter: blur(0px);
}

div#nav_menu .nav__menu__item a:hover {
    background: #fff;
}


.jobs-list-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    height: 87vh;
    overflow-x: auto;
    width: calc(100vw - 90px);
}

.jobs-list {
    min-width: 300px;
    margin: 0px 5px 0px 5px;
    height: 100%;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    height: 100vh;
    /* background-color: #e2e4e6; */
    /* border-radius: 5px; */
    /* border-right: 1px solid#23272d; */
}

h2.jobs-list-heading {
    /* font-family: "Lato"; */
    font-size: 12px;
    font-weight: bold;
    /* margin-left: 9px; */
    position: sticky;
    top: 0px;
    z-index: 9999;
    background: #ebeff3;
    padding: 10px 5px;
}

.jobs-list-body {
/*    height: ;*/
    /*margin-right: 10px;*/
    /*margin-left: 10px;*/
    overflow: hidden;
}

.jobs-list-body::-webkit-scrollbar {
    width: 0.4em;
}

.jobs-list-body::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0, 0.2);
    border-radius: 5px;
}

.jobs-list-body::-webkit-scrollbar-track {
    background-color: #e2e4e6;
}

.jobs-list-footer{
    height: 50px;
}

div#page_holder {
/*    padding-left: 80px;*/
    background: #ebeff4;
    color: #a5adba;
/*    min-height: 100vh;*/
    overflow: hidden;
}

.job-block {
    background-color: #ebeff580;
    cursor: pointer;
    display: block;
    margin-bottom: 6px;
    width: 100%;
/*    width: 300px;*/
    min-height: 20px;
    position: relative;
    text-decoration: none;
    z-index: 0;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 5px;
    padding-top: 5px;
/*    border: 1px solid #dddddd;*/
}

.name_driver{

}

.job-block hr {
    margin: 7px -10px;
}

.job-edit {
    color: #757575;
    font-size: 12px;
}

.job-name {
    /* font-family: "Lato"; */
    width: 100%;
    overflow: hidden;
    color: #f5f5f5;
}
.job-info-block {
    margin-top: 5px;
    display: grid;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    grid-template-columns: 10% 40% 24% 26%;
}

.job-date {
    text-align: center;
}

.job-info-block > div{
  margin-right: 3px;
}

.job-name-block{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin-bottom: 0px;
}

.job-date {
    font-size: 10px;
/*    padding: 2px 5px 3px 5px;*/
/*    background-color: #f4f4f4;*/
/*    color: #0d0d0d;*/
    display: inline-block;
    border-radius: 5px;
}

.edit-job-icon{
    width: 10px;
    height: 10px;
}

.edit-job-icon:hover{
    opacity: 0.3;
}

.user-email{
    font-size: 10px;
    /*color: rgba(0,0,0,0.6);*/
    /*font-weight: 700;*/
}

.header_lead {
  display: flex;
  justify-content: space-between;
}
.job-name a {
    color: #a4adba;
    font-weight: 600;
}
.contact {
  opacity: 0.7;
}
span.contact_name {
    font-size: 10px;
}
span.contact_phone {
    font-size: 10px;
/*    padding: 3px;*/
/*    background: #f7a60114;*/
    color: rgb(247,166,0);
/*    border: 1px solid #f7a601;*/
/*    border-radius: 3px;*/
}
div#page_holder{
    overflow: scroll;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
/*    height: 100%;*/
/*    min-height: 90vh;*/
}

.header-top-bar{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    height: 30px;
    padding: 5px;
    background-color: rgba(0,0,0,.15);

    box-shadow: 0 1px 1px rgba(0,0,0,.1);
}

.top-bar-block{
    width: 33.33%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-end;
    align-content: center;
    
}

.top-bar-block.left{
    justify-content: flex-start;
}

.top-bar-block.center{
    
}

.top-bar-block.right{
}

.top-bar-logo{
    height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.profile-icon{
    border-radius: 50%;
    height: 30px;
}

.profile-icon-block{
    float: right;
    text-align: right;
}

.home-icon{
    width: 25px;
    display: inline-block;
    float: left;
    padding-right: 10px;
}

.leads_info {
    max-width: 50%;
    overflow: hidden;
}
.leads_info p {
    margin: 0;
    font-size: 14px;
    height: 12px;
}
.leads_info.to {
  text-align: right;
}

.leads_info p.city {
    font-size: 15px;
    color: #0151b7;
}

p.contry {
    font-size: 10px;
}
p.city span {
    background: #efefef;
    padding: 3px 5px;
    font-size: 10px;
    position: relative;
    top: -1px;
    font-weight: 900;
    color: #0252b78c;
}
.user-type{
  text-align: right;
}
.color_pipeline {
    height: 4px;
    margin: 0 10px 5px 10px;
    border-radius: 32px;
}


div#nav_menu .nav__menu__item .nav__menu__item__title {
    /* position: absolute; */
    /* top: 0px; */
    /* left: 60px; */
    /* background: #23272c; */
    padding: 5px 8px;
    /* opacity: 0.8; */
    /* display: none; */
}

div#page_holder {
/*    padding-left: 80px;*/
/*    background: #2e3237;*/
/*    color: #a5adba;*/
/*    min-height: 100vh;*/
    /*padding-bottom: 80px;*/
    overflow: hidden;
}

.aside {
    width: 50%;
    min-width: 640px;
    /* float: left; */
    height: 100%;
    margin: auto;
}
.aside__top h2 {
    font-weight: 400;
    color: #657185;
    font-size: 16px;
}
.aside__top {
    padding: 10px 30px;
}

.d-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.jcc{
    justify-content: center;
}
.jcs {
    justify-content: space-between;
}
.f-r{
    float: right;
}
a.btm {
    padding: 4px 10px;
    border: 1px solid #000;
    background: none;
    -webkit-box-shadow: 0 0 0 1px #ff5630;
    box-shadow: 0 0 0 1.6px #ff5630;
    color: #ff5630;
    font-weight: 100;
    border-radius: 4px;
}

.options_room {
    background: #36393e;
    padding: 0px 0;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}
a.btm_tab {
    text-align: center;
    text-transform: uppercase;
    padding-bottom: 25px;
    padding-top: 10px;
    background: #36393e;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 600;
    color: #a5adba;
}
a.btm_tab.active {
    color: #23272c;
    background: #a5adba;
}



a.btm:hover {
    color: #fff;
    background: #ff5630;
}


.aside__content {
    /*margin-top: 50px;*/
}

.aside__content a{
    color: #84aaf7;
}

.aside__content h3 {
    color: #ebecf0;
    margin-bottom: 10px;
    opacity: 1;
    font-weight: 400;
    font-size: 16px;
    width: 360px;
}

.aside__content .item {
    padding: 10px 30px;
    padding-right: 0;
    border-bottom: 1px solid #4d525b;
}

.item.active{
    background: #23272c;
}

.aside__content .item .date{
   width: 50px;
}


.status_doc {
    display: flex;
    justify-content: space-between;
}




.sc-events-list-item--date__day {
    display: block;
    font-size: 11px;
    color: #8993a4;
    letter-spacing: .5px;
    text-align: center;
    line-height: 16px
}

.sc-events-list-item--date__date {
    display: block;
    font-size: 19px;
    color: #ebecf0;
    text-align: center;
    line-height: 15px;
}

.sc-events-list-item--date__month {
    display: block;
    font-size: 12px;
    color: #8993a4;
    letter-spacing: .5px;
    text-align: center;
    line-height: 16px;
    /*padding-bottom: 6px*/
}

.sc-events-list-item--date__time {
    display: block;
    font-size: 14px;
    color: #8993a4;
    letter-spacing: .5px;
    text-align: center;
}

.sc-events-list-item--date__type {
    font-size: 0px;
    color: #e5e5e5;
    letter-spacing: .5px;
    line-height: 10px;
    text-align: center;
    padding-top: 0px;
    margin-top: 0;
    background: #428093;
    margin-bottom: 0;
}


.aside__content .item .settings{
    opacity: 0;
    
}
.aside__content .item:hover .settings{
    opacity: 1;
}
.aside__content .item:hover {
    background: #23272c;
    /*border-left: 3px solid #36393e;*/
}

.aside__content .item .nav__menu__item a {
    text-align: center;
    color: #8c9ea3;
    position: relative;
    text-align: center;
    padding: 15px;
    
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
}
.aside__content .item .nav__menu__item a:hover {
    background: #2a4158;
}

.dots, .dots:after, .dots:before{
  display: inline-block;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background-color: #a5adba;
  position: relative;
}

.dots:after, .dots:before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
}

.dots:before{
  left: -7px
}

.dots:after{
  right: -7px
}

.room-sidebar{
    background: #23272c;
/*    min-height: 100vh;*/
}


.form-control {
    background: #36393e;
    color: #ebecf0;
    border: 0 none;
    -webkit-
    
    font-size: 15px;
    height: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.form-group label {
    font-weight: 400;
    text-transform: none;
    font-size: 16px;
    color: #000000;
    letter-spacing: .5px;
    margin-bottom: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.input-group-sm>.form-control, .input-group-sm>.input-group-addon, .input-group-sm>.input-group-btn>.btn {
    width: 100%;
    height: 33px;
    padding: 6px 9px;
    font-size: 13px;
    line-height: 1.5;
    border-radius: 3px;
}

.add.webinar {
    margin-top: 40px;
}

.form-group{
    margin-top: 20px;
    margin-bottom: 0;
}
.d-flex .form-group {
    margin-right: 20px;
}

.form-group .thumb {
    margin-top: 20px;
}
.form-group .thumb img {
    width: 100%;
}


.form-group input::-webkit-input-placeholder{color rgba(0,0,0,.0)}
.form-group input::placeholder{olor rgba(0,0,0,.0)}
.form-group input:-moz-placeholder{color rgba(0,0,0,.0)}
.form-group input::-moz-placeholder{color rgba(0,0,0,.0)}
.form-group input:-ms-input-placeholder{color rgba(0,0,0,.0)}

.Button__all {
    padding: 6px 14px;
    background-color: #f63;
    border: 0;
    border-radius: 6px;
    font-family: inherit;
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: .02em;
    font-weight: 700;
    color: #fff;
    transition: background-color 200ms ease-out;
    cursor: pointer;
}


.analytics-sidebar {
    width: 25%;
    height: 100vh;
    float: left;

    display: flex;
    flex-direction: column;
    /*background-color: #091e42;*/
    color: grey;
    /*border-left: 1px solid #253858;*/
    /*padding: 20px 50px 20px 30px;*/
}

.analytics-sidebar a {
    display: block;
    color: #fb5028;
}

.analytics-sidebar a {
    /*font-size: 12px;*/
    font-weight: 400;
    padding: 10px 0;
    color: #97a0af;
    transition: color .1s;
}


/*
  Hide radio button (the round disc)
  we will use just the label to create pushbutton effect
*/
input[type=radio] {
    display:none; 
    margin:10px;
}

/*
  Change the look'n'feel of labels (which are adjacent to radiobuttons).
  Add some margin, padding to label
*/
input[type=radio] + label {
    text-align: center;
    text-transform: uppercase;

    background: #36393e;
    padding: 9px 25px;
    border-radius: 20px;
    font-weight: 400;
    color: #a5adba;
    font-size: 11px;
    margin: 0;
}
input[type=radio] + label {
    text-align: center;
    text-transform: none;
    background: transparent;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: 400;
    color: #a5adba;
    font-size: 12px;
    margin: 0;
}
/*
 Change background color for label next to checked radio button
 to make it look like highlighted button
*/
input[type=radio]:checked + label { 
    color: #23272c;
    background: #a5adba;
}
input[type=radio]:checked + label {
    color: #23272d;
    background: #a5adba;
}

.demo_room{
  background: #000;
  height: 100%;
}

div.blur {
    filter: blur(4px);
}

.template_demo {
    background: url(/css/iphone-x-screen.png);
    position: absolute;
    top: 0;
    left: 81px;
    width: 47%;
    min-height: 798px;
    background-size: 380px;
    padding: 136px 175px 0;
    background-position: center 40px;
    background-repeat: no-repeat;
    display: none;
    opacity: 0;
    transition: 1s linear;
}
.button_demo a {
    width: max-content;
    margin: auto;
    background: #c92417;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 0;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 10px;
    display: block;
    margin-top: 3px;
}
.demo_room {
    background: #000;
    height: 566px;
    width: 326px;
    margin: auto;
}
.template_demo.active{
  display: block;
  opacity: 1;
}
.template_demo img{
  width: 100%;
}

.item-12{
  float: left;
  width: 100%;
  /*padding: 15px;*/
}

.item-4{
   float: left;
   width: 33.333%;
   padding: 15px;
}
.item-4 div, .item-12 div{
    background: #a5adba14;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}


.blue { color: #185875; }
.yellow { color: #FFF842; }

.container th h1 {
    font-weight: 400;
    font-size: 12px;
    text-align: left;
    color: #a6adba;
}

.container td {
      font-weight: normal;
      font-size: 12px;

}



.container td, .container th {
      padding-bottom: 2%;
      padding-top: 2%;
  padding-left:2%;  
}

/* Background-color of the odd rows */
.container tr:nth-child(odd) {
      /*background-color: #323C50;*/
}

/* Background-color of the even rows */
.container tr:nth-child(even) {
    background-color: #23272c78;
}

.container th {
      background-color: #23272c;
}

.container td:first-child {
    color: #a6adba70;
}
.link_login {
    margin-top: 10px;
}
.link_login a {
    padding: 10px;
    display: block;
    text-align: center;
}

.tradomatic-mui-style-ry3hrw {
/*    overflow: auto;*/
    flex: 1 1 0%;
    position: relative;
    
    font-family: inherit;
    background-color: transparent;
/*    padding-left: 12px;*/
/*    padding-right: 12px;*/
    -webkit-box-flex: 1;
}
.core-table-row.MuiBox-root.tradomatic-mui-style-wdnc1l.no-select {
    display: grid;
    /* position: absolute; */
    /* top: 0px; */
    min-width: 100%;
    border-bottom: 1px solid rgb(239, 240, 243);
    transform: translateY(0px);
    padding-top: 8px;
    padding-bottom: 8px;
    font-family: inherit;
    align-items: center;
    padding: 0px 0px;
    border-width: 1px;
    border-style: solid;
    border-color: transparent transparent rgb(239, 240, 243);
    justify-content: space-between;
        grid-template-columns: 24% 7% 17% 6% 6% 5% 12% 9% 6% 8%;
}
@media (max-width: 800px) {
.container td:nth-child(4),
.container th:nth-child(4) { display: none; }

.aside-analytics{
  width: 75%;
}
.logo img {
    width: 80px;
}

div#page_holder{
    padding-left: 0;
}
.aside__top {
    padding: 10px;
}
.aside {
    min-width: initial;
}
.aside-analytics {
    width: 100%;
}

.form-group {
    margin-bottom: 5px;
}
div#left_menu {
    padding: 10px 0;
}
/*.bgr {
        background: linear-gradient(0deg, rgba(235, 239, 244, 1) 86%, rgba(13, 110, 253, 1) 100%);
}*/
.core-table-cell.tradomatic-mui-style-1n93jhs, .core-table-cell.tradomatic-mui-style-s6t344.no-select.con-tooltip.top, .core-table-cell.tradomatic-mui-style-2fv6bt, .core-table-cell.tradomatic-mui-style-1wwmrxm, .core-table-cell.tradomatic-mui-style-1xil5g0 {
    display: none;
}
.MuiBox-root.tradomatic-mui-style-174pge9 {
    height: auto;
    overflow-y: auto;
}
.tradomatic-mui-style-ry3hrw {
    background: transparent;
}
.core-table-row.MuiBox-root.tradomatic-mui-style-wdnc1l.no-select {
    background: #fff;
    display: block;
    margin-bottom: 10px;
    border-radius: 10px;
}
.tradomatic-mui-style-ry3hrw .core-table-cell:first-child, .tradomatic-mui-style-ry3hrw .core-table-cell:last-child {
/*    padding-left: 10px;*/
    display: block;
    width: 100%;
    height: auto;
}
.tradomatic-mui-style-ry3hrw .core-table-cell {
    padding-left: 8px;
    padding-right: 8px;
    font-family: inherit;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.3em;
    padding: 15px 10px;
}
.tradomatic-mui-style-ry3hrw {
    background-color: transparent;
}
}
#menu {
    position: absolute;
    display: grid;
    top: 100%;
    z-index: 9999999;
    background: #ffffff;
    padding: 0px;
    backdrop-filter: blur(5px);
    right: 0;
    border-radius: 10px;
    box-shadow: 0px 5px 10px #cecece;
    border: 1px solid #0000001a;
}
#menu a {
    padding: 10px;
    color: #606060;
    border-bottom: 1px solid #e5e5e5;
    text-decoration: none;
}
.title{
  color: #a5adba;
    padding-bottom: 10px;
    padding-top: 10px;
}

.filter .form-control{
  display: block;
  float: right;
  width: 200px;
}

.help-block {
    position: absolute;
    bottom: 0px;
    left: 16px;
}
.help-block {
    position: absolute;
    font-size: 12px;
    color: red;
    opacity: 0.5;
}


/* /// DECORATION CSS /// */
/* .cont_select_center {
   position: absolute;
   left: 50%;
   top: 50%;
   margin-top: -30px;
   margin-left: -150px;
}*/
/* .cont_heg_50 {
   position: absolute;
   height: 50%;
   left: 0;
   top: 0;
   width: 100%;
   background-color: #fd7b52;
}*/
/* /// END DECORATION CSS /// */
 .icon_select_mate {
   position: absolute;
   top: 5px;
   right: 2%;
   font-size: 16px;
   height: 22px;
   transition: all 275ms;
}
 .select_mate {
   position: relative;
   float: left;
   min-width: 300px;
   width: 300px;
   /*min-height: 60px;*/
   font-family: 'Roboto';
   color: #6c798f;
   font-weight: 300;
   background-color: #36393e;
   box-shadow: 1px 2px 10px -2px rgba(0, 0, 0, 0.3);
   border-radius: 3px;
   transition: all 100ms ease-in-out;
  /* Oculto el elemento select */
}
 .select_mate select {
   position: absolute;
   overflow: hidden;
   height: 0px;
   opacity: 0;
   z-index: -1;
}
 .cont_list_select_mate {
   position: relative;
   float: left;
   width: 100%;
}
 .cont_select_int {
   overflow: scroll !important;
   /*height: 200px !important;*/
   position: absolute;
   left: 0px;
   top: 0px;
   z-index: 999;
   overflow: hidden;
   height: 0px;
   width: 100%;
   background-color: #fff;
   padding: 0px;
   margin-bottom: 0px;
   margin-top: 0px;
   border-radius: 0px 0px 3px 3px;
   /*box-shadow: 1px 4px 10px -2px rgba(0, 0, 0, 0.2);*/
   transition: all 100ms ease-in-out;
}
.cont_select_int li {
    position: relative;
    float: left;
    width: 100%;
    border-bottom: 1px solid #36393e;
    background-color: #2e3237;
    list-style-type: none;
    padding: 6px 9px;
    margin: 0px;
    transition: all 100ms ease-in-out;
    display: block;
    cursor: pointer;
}

 .cont_select_int li:hover {
    background-color: #36393e;
    color: #a6adba;
}
 .cont_select_int .active {
   background-color: #eee;
}
/* etiqueta <p> con la opcion selecionada */
 .selecionado_opcion {
    padding: 6px 9px;
   width: 96%;
   display: block;
   margin: 0px;
   cursor: pointer;
}





.main__table {
  width: 100%;
  min-width: 1050px;
  border-spacing: 0;
}
.main__table thead {
  border-bottom: 20px solid #1a191f;
}
.main__table thead th {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  padding: 0 15px 0 15px;
  line-height: 100%;
  margin-bottom: 0;
  border: none;
}
.main__table tbody tr {
  border-bottom: 10px solid #1a191f;
}
.main__table tbody td {
  padding: 0;
  background-color: transparent;
  border: 0px solid transparent;
}
.main__table tbody td:first-child .main__table-text {
  -webkit-border-radius: 6px 0 0 6px;
  border-radius: 6px 0 0 6px;
}
.main__table tbody td:last-child .main__table-text,
.main__table tbody td:last-child .main__table-btns {
  -webkit-border-radius: 0 6px 6px 0;
  border-radius: 0 6px 6px 0;
}
.main__table--dash {
  width: 100%;
  min-width: 500px;
}
.main__table--dash thead {
  border-bottom: 1px solid rgba(210,201,255,0.1);
}
.main__table--dash thead th {
  padding: 0 10px 15px 0;
}
.main__table--dash tbody tr {
  border-bottom: none;
  background-color: transparent;
}
.main__table--dash tbody td {
  padding: 0;
}
.main__table--dash tbody td .main__table-text {
  background-color: transparent;
  padding: 10px 15px 0 0;
}
.main__table-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  /*font-size: 16px;*/
  color: #fff;
  font-weight: 400;
  line-height: 30px;
  padding: 15px;
  background-color: rgba(210,201,255,0.04);
}
.main__table-text i {
  font-size: 14px;
  margin-right: 6px;
  color: #ffd80e;
  line-height: 24px;
  margin-top: 1px;
}
.main__table-text--rate {
  font-weight: 600;
  font-size: 16px;
}
.main__table-text--rate i {
  font-weight: normal;
}
.main__table-text--red {
  color: #fd6060;
}



.profile__tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  .profile__tabs li {
    margin-right: 30px;
  }
  .profile__tabs li:last-child {
    margin-right: 0;
  }
  .profile__tabs a {
    display: block;
    /*line-height: 80px;*/
    color: rgba(255,255,255,0.7);
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.4px;
  }
  .profile__tabs a:hover {
    color: #ffd80e;
  }
  .profile__tabs a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-color: #ffd80e;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    transform: translateY(2px);
    opacity: 0;
  }
  .profile__tabs a.active {
    color: #ffd80e;
  }
  .profile__tabs a.active:before {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  .profile__mobile-tabs {
    display: none;
  }
  .profile__actions {
    position: relative;
    top: auto;
    right: auto;
    margin-left: auto;
  }
  .profile__action {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin-right: 15px;
  }
  .profile__action:last-child {
    margin-right: 0;
  }

  .block_tesla span:before {
    content: "";
    width: 190px;
    height: 2px;
    background: #000;
    position: absolute;
    top: -2px;
    left: 0;
}


.wrap > .container {
    padding: 0;
}

label.balans:hover {
    background: #2a4158;
}



/** LEAD **/


.custom-select {
  position: relative;
  height: 36px;
  cursor: pointer;
  max-width: 400px;
  margin: 0 auto;
}
.custom-select select.hide {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.custom-select span {
  display: block;
}
.custom-select .select-selection {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 36px;
    overflow: hidden;
    background: rgb(35 39 45);
    border-radius: 5px;
    transition: 0.15s ease-in-out;
}
.custom-select .select-selection .arrow {
  width: 8px;
  height: 8px;
  border-top: 2px solid #a5adba;
  border-right: 2px solid #a5adba;
  position: absolute;
  top: 10px;
  right: 12px;
  transform: rotate(135deg);
  transition: 0.15s ease-in-out;
}
.custom-select .select-selection:hover {
  background-color: #3c98f4;
  border-color: #3c98f4;
  color: white;
  /*box-shadow: 0 4px 8px rgba(26, 134, 242, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1);*/
}
.custom-select .select-selection:hover .arrow {
  border-color: white;
}
.custom-select .select-selection:active {
  background-color: #0d79e5;
  border-color: #0a60b5;
  /*box-shadow: 0 0 0 transparent, 0 0 0 transparent;*/
}
.custom-select .select-selection:active .arrow {
  border-color: white;
}
.custom-select .select-selection .selection-options {
  position: absolute;
  top: 0;
  width: 100%;
}
.custom-select .select-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36px;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  /*border-radius: 2px;*/
  transition: 0.15s ease-in-out;
  overflow: hidden;
}
.custom-select .select-wrap .dropdown-options {
  position: absolute;
  top: 0;
  width: 100%;
  transition: 0.15s ease-in-out;
  pointer-events: none;
}
.custom-select .dropdown-options > span,
.custom-select .selection-options > span {
  line-height: 36px;
  text-indent: 0px;
    background: #2e3238;
}
.custom-select.open .select-wrap {
  height: 200px;
  /*box-shadow: 0 2px 2px rgba(26, 134, 242, 0.06), 0 2px 2px rgba(0, 0, 0, 0.02);*/
}
.custom-select.open .select-wrap .dropdown-options {
  pointer-events: auto;
}
.custom-select.open .select-selection {
  /*background-color: #3c98f4;*/
  /*border-color: #3c98f4;*/
  color: white;
  left: -3px;
  right: -3px;
  padding: 0 3px;
}
.custom-select.open .select-selection .arrow {
  border-color: white;
  transform: rotate(-45deg);
  top: 14px;
  right: 15px;
}
.custom-select.open .select-selection .selection-options {
  transition: 0.15s ease-in-out;
}


textarea#person_n {
    width: 100%;
    background: transparent;
    border: 0;
    word-break: break-word;
    max-height: 300px;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: 0 0;
    color: #fff!important;
    width: 100%;
    max-width: 100%;
    min-height: 30px;
    border-radius: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: bottom;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -.8px;
    resize: none;
}
textarea#person_n:focus{
    border: 0;
}

textarea#person_n:focus-visible{
    border: 0;
}

/* Remove outline on the forms and links */
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
.card-fields label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 13px;
}

.card-fields > div {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-auto-rows: auto;
    padding: 3px 0px;
    white-space: nowrap;
    align-content: center;
    align-items: center;
    justify-content: start;
    justify-items: start;
}

.card-fields input {
    background: #36393e;
    color: #ebecf0;
    border: 0 none;
    -webkit-: ;
    font-size: 15px;
    height: 40px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    width: 100%;
    padding: 6px 12px;
}

input.form-control {
    /*background: transparent;*/
    padding: 0;
}

.contacts input.form-control {
    font-weight: 900;
}

.contact_page .aside__top {
    padding: 10px 20px;
}

.d-flex.card-fields.fromTo.options_room {
    border-radius: 3px;
    padding: 5px 10px;
}

.fromTo {
    margin-bottom: 10px;
    position: relative;
}
.fromTo input {
    background: transparent;
    border: 0;
    word-break: break-word;
    max-height: 300px;
    width: 100%;
    overflow: hidden;
    padding: 0;
    background: 0 0;
    color: #fff!important;
    width: 100%;
    max-width: 100%;
    min-height: 30px;
    border-radius: 0;
    border: 0;
    box-sizing: border-box;
    vertical-align: bottom;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -.8px;
    resize: none;
}
.fromTo h3 {
    margin: 6px 10px;
    color: #757575;
}

div#block_input {
    position: absolute;
    background: transparent;
    display: block;
    height: 250px;
    overflow: scroll;
    z-index: 999999999999999;
    border: 0px solid;
    padding: 0;
    width: 100%;
    padding: 10px;
    background: #2e3238;
    top: 40px;
}
.card-form__button {
    background: #000;   
}

.page_contract input.form-control {
    /* background: transparent; */
    padding: 10px;
}

.page_contract .card-fields label {
    padding-left: 10px;
}

.page_contract .card-input.card-fields {
    margin-bottom: 10px;
}
.page_contract .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    background: #36393e;
    line-height: 1.42857143;
    color: inherit;
    /* background-image: none; */
     border: 0px solid #ccc; 
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.page_contract sup {
    padding-left: 10px;
    padding-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.page_contract .form-group:hover sup{
    opacity: 1;
}

.page_contract .form-group {
    margin-bottom: inherit;
    margin-top: 10px;
}

.page_contract .form-group label {
    color: #808080;
}

.card-form__button {
    background: #0070fc;
    padding: 10px 20px;
    color: #fff;
    border: 0;
    font-weight: 300;
    margin-top: 0px;
    border-radius: 3px;
/*    float: right;*/
    margin-bottom: 0px;
    width: 100%;
    margin: 0 0px;
}
.card-form__button:hover {
    filter: contrast(120%);
}
.aside__top input.form-control {
    background: #ffffff;
    color: #000000;
}

.aside__top form.counteragent_form.counteragent {
    background: #fff;
    padding: 0px 10px;
    border-radius: 10px;
}
.aside__top .form-group {
    margin-bottom: 0rem !important;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
}
.aside__top .form-group {
    margin-bottom: 0 !important;
    display: grid;
    grid-template-columns: 30% 70%;
    align-items: center;
    border-bottom: 0.1px solid #ebeff3;
}
.aside__top .form-group {
    margin-bottom: 0;
    margin-top: 0;
    padding: 5px 0;
}

.aside__top .card-input__label {
    overflow: hidden;          
    text-overflow: ellipsis;   
    white-space: nowrap;       
    width: 100%;               
    display: block;            
}
.aside__top .info_p {
    font-size: 12px;
    color: #272727;
    font-weight: 200;
    padding: 10px;
}
.aside__top .info_h3 {
    font-size: 16px;
    color: #6e6e6e;
    font-weight: 300;
    padding: 0 10px;
    margin-bottom: 0;
}
.manager {
    display: grid;
    grid-template-columns: 15% 85%;
    align-items: center;
    padding: 10px;
    background: #fff;
    margin-top: 10px;
/*    margin: 10px;*/
    border-radius: 10px;
    gap: 10px;
}
.manager img{
    width: 100%;
    display: block;
    background: #e9e9e9;
    padding: 10px;
    border-radius: 100px;
    opacity: 0.4;
}
.manager a {
    color: #000;
    font-size: 18px;
    text-decoration: none;
    font-weight: 400;
}

.manager p {
    color: #a1a1a1;
    margin: 0;
    font-weight: 300;
}
.manager span {
    color: #000;
    margin: 0;
    opacity: 0.6;
}

.aside__top {
    margin: 0 !important;
}
