@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');


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

html,body{
    height: 100%;
}

body{
    overflow-x: hidden;
    background: #F5F5FA;
}

.center{
    max-width: 1400px;
    padding: 0 2%;
    margin: 0 auto;
}

.clear{
    clear: both;
}

.text-center{
	text-align: center !important;
}

.left{
    float: left;
}

.right{
    float: right;
}

.show{
    display: block !important;
}

.text-right{
    text-align: right;
}

/**/

/* Alerts */
div#box-ct{
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

.box-alert-danger,.box-alert-info,.box-alert-success{
    width: 100%;
    padding: 10px 2%;
    text-align: center;
}
  
.box-alert i{
    font-size: 18px;
}

.box-alert-info{
    color: #664d03;
    background-color: #fff3cd;
    border: 1px solid #ffecb5;
    font-size: 15px;
    border-radius: 4px;
    /* margin-top: 12px; */
    max-width: 500px;
    font-family: 'Montserrat';
    font-weight: 400;
    display: inline-block;
}
  
.box-alert-success{
    font-size: 15px;
    font-weight: normal;
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
    border-radius: 4px;
    /* margin-top: 12px; */
    max-width: 500px;
    font-family: 'Montserrat';
    font-weight: 400;
    display: inline-block;
}
  
.box-alert-danger{
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
    font-size: 15px;
    border-radius: 4px;
    /* margin-top: 12px; */
    max-width: 500px;
    font-family: 'Montserrat';
    font-weight: 400;
    display: inline-block;
}

/**/
  
.center-alert{
    text-align: center;
    width: 100%;
}

/***/

/*display flex*/
div.flex-itens{
	height: 100%;
	width: 100%;
	display: flex;
}

.wrap{
	flex-wrap: wrap;
}

.nowrap{
	flex-wrap: nowrap;
}

div.col-flex{
    padding: 0 5px;
    margin-bottom: 10px;
}

div.col-flex-two{
	width: calc(100% / 2);
    margin-bottom: 10px;
}

div.col-flex-three{
	width: calc(100% / 3);
    padding: 0 15px;
    margin-bottom: 10px;
}

.pd{
    padding: 0 10px;
}

.hg-100{
	height: 100%;
}

/**/

/* modal */

div.modal{
    /* display: none; */
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 110;
    padding: 20px 0;
	background-color: rgba(0,0,0,0.3);
}

div.modal-form{
    position: absolute;
	left: 50%;
	top: 35%;
	transform:translate(-50%,-35%);
	border-radius: 17px;
	background-color: #FFFFFF;
    height: 100%;
    max-height: 900px;
    width: 100%;
	max-width: 800px;
	padding: 40px 3%;
    overflow-y: auto;
    overflow-x: hidden;
}

div.modal-form::-webkit-scrollbar{
    width: 7px;
}

div.modal-form::-webkit-scrollbar-thumb {
    background-color: rgba(162, 242, 168, .5);   
}

.closeMd i{
    color: #a3a3a3;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    position: absolute;
    right: 6px;
    top: 3px;
    font-size: 21px;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
}

.closeMd i:hover{
  color: #dc3545;
}

div.modal-form h3{
    color: #000000;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 23px; 
    text-align: left;
}

.flex-input{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.col-input-two{
    width: calc(100% / 2);
}

.col-input-three{
    width: calc(100% / 3);
}


div.form-group{
    margin: 18px 0;
}

div.form-group label{
    color: #7C838A;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
}

div.form-group input{
    height: 41px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #7C838A;
    color: #1C1C1C;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    padding-left: 12px;
    outline: none;
    margin-top: 5px;
}

div.form-group input::placeholder{
    color: #9ca2a8;
    font-weight: 400;
}

.checkbox{
    margin-top: 12px;
}

div.form-group input[type=checkbox]{
    width: 18px;
    height: 18px;
    border-radius: 3px;
    accent-color: #308C50;
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    font-size: 5px;
}

div.form-group input[type=file]{
    padding-top: 8px;
}

div.form-group span{
    color: #7C838A;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 14px;
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    top: 2px;
}

div.form-group select{
    height: 41px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #7C838A;
    color: #1C1C1C;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 15px;
    padding-left: 12px;
    outline: none;
    margin-top: 5px;
}

div.form-group textarea{
    height: 110px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #7C838A;
    color: #1C1C1C;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 15px;
    padding: 12px;
    resize: vertical;
    outline: none;
    margin-top: 5px;
}

div.form-group button{
    text-align: center;
    height: 44px;
    padding: 4px 25px;
    background-color: #308C50;
    font-family: 'Roboto';
    font-weight: 500;
    color: #FFFFFF;
    font-size: 18px;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    margin-top: 10px;
}

div.modal-form button{
    text-align: center;
    height: 46px;
    width: 100%;
    padding: 4px 0;
    background-color: #255932;
    font-family: 'Inter';
    font-weight: 600;
    color: #FFFFFF;
    font-size: 17px;
    border-radius: 6px;
    border: 0;
    cursor: pointer;
    margin-top: 10px;
}

.pd-btn{
    padding: 0 5%;
}

/* .open{
    display: block;
} */

/* select */
  
.dropdown {
    margin-bottom: 15px;
    position: relative;
}
  
.dropdown label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
  
.dropdown .select-box {
    border: 1px solid #616462;
    border-radius: 6px;
    height: 39px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    font-family: 'Inter';
    color: #616462;
    font-weight: 500;
    font-size: 14px;
}
  
.dropdown .select-box::after {
    content: '\25BC';
    font-size: 12px;
    color: #333;
}
  
.dropdown.open .select-box::after {
    content: '\25B2';
}
  
.dropdown .options {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    z-index: 10;
    margin-top: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
  
.dropdown.open .options {
    display: block;
}
  
.dropdown .options div {
    padding: 10px 7px;
    cursor: pointer;
    display: flex;
    align-items: center;
}
  
.all-opt{
    border-bottom: 1.5px solid #B9B9B9;
}
  
.dropdown .options div:hover {
    background-color: #f1f1f1;
}
  
.dropdown .options input {
    margin-right: 10px;
    accent-color: #308C50;
    width: 14px;
    height: 14px;
    cursor: pointer;
    vertical-align: middle;
}
  
.dropdown .options label {
    margin: 0;
    cursor: pointer;
    font-family: 'Inter';
    color: #454444;
    font-size: 13px;
    font-weight: 500;
    vertical-align: middle;
}


/**/

/* form error */

input.error{
    border: 1px solid #dc3545 !important;
}

label.error{
    font-family: 'Poppins' !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    text-align: left !important;
    color: #dc3545 !important;
    text-transform: lowercase !important;
    display: block;
    position: relative;
    top: -12px;
}

/**/

/* buttons */

.btn{
    padding: 4.5px 14px;
    font-size: 12px;
    border-radius: 4px;
    border: 0;
    cursor: pointer;
    line-height: 20px;
}

.btn i{
    font-size: 17px;
    position: relative;
    top: 3px;
}

.success-bg1{
    background-color: #BAEDBD;
    color: #008767;
    font-family: 'Poppins';
    font-weight: 500;
}

.success-bg2{
    background-color: #308C50;
    color: #FFFFFF;
    font-family: 'Poppins';
    font-weight: 500;
}

.success-bg3{
    background-color: #308C50;
    color: #FFFFFF;
    font-family: 'Archivo';
    font-weight: 400;
}

.danger-bg1{
    background-color: #dc3545;
    color: #FFFFFF;
    font-family: 'Poppins';
    font-weight: 500;

}

/**/


/* header */

header{
    height: 60px;
    width: calc(100% - 240px);
    left: 240px;
    padding: 10px 0;
    position: fixed;
    background-color: #FFFFFF;
    border-bottom: 1px solid #ebebeb;
    z-index: 100;
    transition: 300ms linear;
}

div.content-top{
    width: 100%;
    height: 100%;
    padding: 0 14px;
}

div.icon-menu{
    float: left;
}

div.icon-menu i{
    font-size: 26px;
    color: #3B424A;
    position: relative;
    top: 7px;
    left: -10px;
    cursor: pointer;
}

div.global-search{
    float: left;
    position: relative;
    left: -10px;
}

div.global-search i{
    display: inline-block;
    font-size: 23px;
    color: #64748B;
    position: relative;
    top: 5px;
    left: 32px;
}

div.global-search input{
    height: 36px;
    width: 300px;
    background-color: #F5F5FA;
    border-radius: 6px;
    font-family: 'Inter';
    font-weight: 500;
    color: #64748B;
    font-size: 15px;
    padding-left: 28px;
    outline: none;
    border: 0;
    display: inline-block;
}

div.global-search input::placeholder{
    color: #A7ABBA;
}

div.notifications-help{
    float: right;
}

div.notices{
    width: 40px;
    height: 40px;
    border-radius: 36px;
    background-color: #F1F5F9;
    text-align: center;
    margin-right: 10px;
    float: left;
}

div.notices i{
    font-size: 21px;
    color: #64748B;
    vertical-align: middle;
    position: relative;
    top: 8px;
}

.active{
    color: #255932 !important;
    font-weight: 700 !important;
}

.container-panel{
    position: relative;
    top: 60px;
    width: calc(100% - 240px);
    left: 240px;
    transition: 300ms linear;
}


/* aside */

aside{
    height: 100%;
    width: 240px;
    background-color: #FFFFFF;
    position: fixed;
    transition: 300ms linear;
    overflow-y: auto;
}

aside::-webkit-scrollbar{
    width: 7px;
}

aside::-webkit-scrollbar-thumb {
    background-color: rgba(162, 242, 168, .5);   
    border-radius: 20px;  
}


div.logo{
    text-align: center;
    padding: 10px;
    width: 100%;
}

div.logo img{
    margin-top: 10px;
    width: 160px;
    position: relative;
}

aside ul{
    padding: 10px;
    margin-top: 20px;
    list-style-type: none;
    text-align: center;
    margin-left: 14px;
}

aside ul li{
    margin-bottom: 15px;
    text-align: left;
    color: #3B424A;
}

aside ul li i{
    font-size: 21px;
    vertical-align: middle;
}

aside ul li a{
    font-family: 'Inter';
    font-weight: 500;
    text-decoration: none;
    font-size: 15px;
    vertical-align: middle;
    padding-left: 4px;
    color: #3B424A;
    cursor: pointer;
}

aside ul.settings{
    margin-top: 15px;
    margin-bottom: 20px;
}

aside ul.settings h3{
    font-family: 'Inter';
    font-weight: 500;
    text-decoration: none;
    color: #7B8190;
    font-size: 17px; 
    text-align: left;  
    margin-bottom: 13px;
}

div.submenu{
    display: none;
}

div.submenu ul{
    padding: 0;
    list-style-type: disc;
    margin-left: 35px;
}

div.submenu li a:hover{
    color: #202327;
}

.active-menu{
    color: #FFFFFF !important;
    background-color: #255932;
    border-radius: 9px;
    padding: 10px;
    margin-left: -3px;
}

.active-item{
    color: #FFFFFF !important;
}

/**/

/* home */

section.dash{
    height: 100%;
    width: 100%;
    padding-top: 20px;
    border-bottom: 50px;
}

section.dash h2{
    text-align: left;
    font-family: 'Inter';
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    padding-left: 2%;
}

div.change-dash{
    margin-top: 15px;
    width: 100%;
    border-bottom: 2px solid #E4E4E4;
}

div.opt-change{
    padding-left: 2%;
}

div.opt-change ul{
    list-style-type: none;
}

div.opt-change ul li{
    display: inline-block;
    position: relative;
    top: 1.5px;
}

div.opt-change a{
    font-family: 'Inter';
    color: #727272;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    text-align: center;
    margin: 0 8px;
    padding: 10px 15px;
    position: relative;
    top: -4px;
}

.active-dash{
    border-bottom: 2px solid #000;
}

.active-dash a{
    color: #000 !important;
}

div.filter-dash{
    padding-top: 25px;
    padding-left: 2%;
}

div.filter-dash ul{
    list-style-type: none;
    position: relative;
    z-index: 1020;
}

div.filter-dash ul li{
    position: relative;
    display: inline-block;
    margin: 3px 5px 3px 0;
    padding: 0;
}

div.filter-dash ul li a{
    text-decoration: none;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 700;
    color: #000000;
    font-size: 14px;
    border: 1.5px solid #727272;
    border-radius: 34px;
    padding: 5px 10px;
    position: relative;
    z-index: 991;
    transition: .2s ;
}

div.filter-dash li a i{
    font-size: 15px;
}

div.filter-dash ul li a:hover{
    color: #308C50 !important;
    border: 1.5px solid #308C50 !important;
}

div.box-filter{
    width: 340px;
    background-color: #fff;
    border: 1px solid #ebebeb;
    border-radius: 6px;
    box-shadow: 0 0 0 3px hsla(0, 0%, 92%, .3);
    display: block;
    left: -15px;
    max-width: 100vw;
    padding: 70px 20px 15px;
    position: absolute;
    top: -15px;
    z-index: 990;
    display: none;
}

div.filter-group{
    margin-bottom: 18px;
}

div.filter-group label{
    text-align: left;
    color: #727272;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    display: block;
    margin: 0 0 4px 4px;
}

div.filter-group input{
    height: 39px;
    width: 100%;
    color: #616462;
    border: 1px solid #616462;
    padding-left: 4px;
    font-family: 'Inter';
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    outline: none;
}

div.btn-filter{
    margin-top: -10px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
}

div.btn-filter .btn-filter{
    margin-top: 0;
}

div.btn-filter button{
    display: inline-block;
    padding: 5px 10px;
    background-color: transparent;
    border: 1px solid #A6A6A6;
    border-radius: 19px;
    margin-right: 5px;
    margin-top: 10px;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 600;
    cursor: pointer;
}

div.btn-filter button:hover{
    color: #308C50;
    border: 1.5px solid #A2F2A8;
}

div.filter-controls{
    margin: 30px 0 0;
    white-space: nowrap;
}

div.filter-controls button{
    background-color: transparent;
    border-radius: 19px;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 600;
    cursor: pointer;
    padding: 5px 10px;
    border: 2px solid transparent;
    color: #000000;
    transition: .2s;
}

div.filter-controls button#apply{
    color: #FFFFFF !important;
    background-color: #308C50 !important;
}

div.filter-controls button:hover{
    border: 2px solid #308C50;
}

div.dash-wrapper{
    height: 100%;
    width: 100%;
    padding: 40px 1.6%;
}

div.chart-group{
    margin-bottom: 17px;
}

div.graph{
    height: 100%;
    padding: 10px;
    border-radius: 20px;
    border: 1.5px solid #949494;
    margin-left: 8px;
    margin-right: 8px;
    font-family: 'Inter' !important;
}

div.graph .apexcharts-title-text,
div.graph h3{
    font-family: 'Inter' !important; 
    font-weight: 600 !important;
    font-size: 16px !important;
    color: #4E504F !important;
}

div.graph .apexcharts-text tspan{
    font-family: 'Inter' !important; 
    font-weight: 600 !important;
    font-size: 12px;
    color: #b93939 !important;
}

div.box-metrics{
    padding: 12px;
    margin-left: 8px;
    margin-right: 8px;
    border-radius: 20px;
    border: 1.5px solid #949494;
}

div.box-metrics h3{
    font-family: 'Inter';
    font-weight: 600;
    color: #373d3f;
    font-size: 16px;
}

div.single-metric{
    margin-top: 17px;
}

div.single-metric span{
    font-family: 'Inter';
    color: #595B5A;
    font-size: 17px;
    font-weight: 600;
    vertical-align: middle;
}

div.single-metric span i{
    font-size: 21px;
    vertical-align: middle;
}

div.single-metric span i.bx-up-arrow-circle{
    color: #3d9b5e;
}

div.single-metric span span{
    position: relative;
    top: 1px;
}

div.single-metric h4{
    margin-top: 5px;
    font-family: 'Inter';
    color: #595B5A;
    font-size: 13px;
    font-weight: 600;
}

div.box-metrics .col-flex{
    width: calc(100% / 6);
}

/* table dash */

div.table-dash{
    height: auto;
    padding-top: 20px;
}

div.table-wrapper{
    overflow: auto;
    width: 100%;
}

div.table-wrapper table{
    font-size: 14px;
    border-collapse: separate;
    border-spacing: 0 2px;
    color: #000;
    font-family: 'Inter';
    font-weight: 400;
    max-width: 100%;
    width: 100%;
}

div.table-wrapper table tr{
    box-shadow: 0 0 0 0 #fff, 0 -1px 0 0 #dddddd;
}

div.table-wrapper table tr:nth-of-type(1){
    box-shadow: none;
}

div.table-wrapper table tr td{
    border-left-width: 2px;
    height: 43px;
    padding: 9px 6px 6px;
    border-color: transparent;
    border-style: solid;
    border-width: 2px 0;
}

.bills .col-flex{
    width: calc(100% / 5) !important;
}

/**/



/* crm */

section.box-crm{
    width: 100%;
    margin-top: 35px;
}

div.frames .col-flex{
    width: calc(100% / 4);
    padding: 0 10px;
}

div.create-frame{
    height: 120px;
    width: 100%;
    max-width: 205px;
    padding: 10px;
    border-radius: 15px;
    border: 3px solid #308C50;
    text-align: center;
    cursor: pointer;
}

div.create-frame h3{
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    text-align: center;
    margin-top: 18px;
}

div.create-frame button{
    border: 0;
    background-color: transparent;
    text-align: center;
    margin-top: 2px;
    cursor: pointer;
}

div.create-frame button i{
    font-size: 31px;
    color: #49454E;
}

div.frame-single{
    height: 120px;
    width: 100%;
    max-width: 205px;
    border-radius: 15px;
    position: relative;
}

div.frame-single a{
    text-decoration: none;
    height: 100%;
    width: 100%;
}

div.info-frame{
    padding: 20px 25px;
}

div.info-frame h3{
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 15px;
    margin-top: 20px;
    text-align: left;
}

div.info-frame p{
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 13px;
    text-align: left;
}

div.frame-single i{
    font-size: 20px;
    color: #FFFFFF;
    cursor: pointer;
    display: none;
}

div.frame-single:hover .edit-frame i{
    display: block;
}

div.edit-frame{
    position: absolute;
    right: 1px;
    bottom: 1px;
    z-index: 10;
    padding: 10px;
}

.fm-light{
    background-color: #BAEDBD;
}

.fm-light a{
    color: #1D3620 !important;
}

.fm-dim{
    background-color: #308C50;
}

.fm-dim a, .fm-dark a{
    color: #FFFFFF !important;
}

.fm-dark{
    background-color: #1D3620;
}

div.opt-frame{
    display: none;
    max-height: 432px;
    background-color: #fff;
    border: 1px solid #c1d5e4;
    border-radius: 4px;
    width: 200px;
    box-shadow: rgba(102, 102, 102, 0.05) 0px 3px 17px,
     rgba(102, 102, 102, 0.06) 0px 9px 14px, rgba(102,
      102, 102, 0.09) 0px 4px 6px;
    position: relative;  
    top: 3px;
    left: 68px;
    padding: 10px 0;
}

div.opt-frame ul{
    list-style-type: none;
}

div.opt-frame ul li{
    padding: 0 10px;
    margin-bottom: 10px;
}

div.opt-frame ul li button{
    font-family: 'Inter';
    font-weight: 600;
    color: #101820;
    font-size: 13px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
    margin-left: 5px;
}

.delFrame{
    color: #ff3d00;
    text-decoration: none;
}

/**/

/* section frame */

section.frame{
    width: 100%;
    height: 100%;
    padding-top: 35px;
}

div.head-frame{
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E4E4E4;
    padding: 7px 10px;
}

div.head-frame h3{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    color: #308C50;
    position: relative;
    top: 3px;
    text-align: left;
    display: inline-block;
}

div.frame-view{
    display: inline-block;
    margin-left: 14px;
}

div.view-opt{
    width: 95px;
    height: 35px;
    display: inline-block;
    position: relative;
    top: 3.5px;
}

div.frame-view button{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #727272; 
    cursor: pointer;
    background-color: transparent;
    border: 0;
}

div.frame-view button i{
    font-size: 20px;
    position: relative;
    top: 3px;
}

.live-view{
    color: #308C50 !important;
}

.border-view{
    border-bottom: 2px solid #308C50;
}

.btnFilter{
    height: 35px;
    padding: 4px 14px;
    border-radius: 4px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    color: #308C50;
    background-color: transparent;
    border: 1px solid #308C50;
    cursor: pointer;
    position: relative;
    top: -1px;
    float: right;
    margin-right: 13px;
}

.btnFilter i{
    font-size: 16px;
    position: relative;
    top: 1px;
}

.btnAdd{
    height: 35px;
    padding: 4px 14px;
    border-radius: 4px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    background-color: #1D3620;
    border: 0;
    cursor: pointer;
    position: relative;
    top: -1px;
    float: right;
}

/* box-columns */

div.box-columns{
    height: 100%;
    width: 100%;
    margin-top: 25px;
}

div.columns-wrapper{
    min-width: 900px;
    overflow-y: hidden;
    overflow-x: auto;
}

div.columns-wrapper::-webkit-scrollbar{
    height: 7px;
}

div.columns-wrapper::-webkit-scrollbar-thumb {
    background-color: rgba(162, 242, 168, .8); 
    border-radius: 20px;  
}

div.colum-single{
    border-radius: 6px;
    background-color: #FFFFFF;
    height: 100%;
    min-height: 350px;
    width: 280px;
    padding: 13px;
    border: 1px solid #E4E4E4;
    min-height: 400px;
}

div.head-colum{
    height: 35px;
    width: 100%;
}

div.head-colum h3{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    display: inline-block;
    margin-right: 2px;
}

div.head-colum span{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #727272;
}

div.create-card button{
    height: 39px;
    width: 100%;
    background-color: #F2F2F2;
    border: 0;
    border-radius: 4px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    cursor: pointer;
    line-height: 40px;
}

div.create-card button i{
    font-size: 20px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

div.blocks-wrapper{
    height: 100%;
    width: 100%;
    max-height: 400px;
    overflow-y: hidden;
}

div.blocks-wrapper:hover{
    overflow-y: auto;
}

div.blocks-wrapper:hover::-webkit-scrollbar{
    width: 7px;
}

div.blocks-wrapper:hover::-webkit-scrollbar-thumb {
    background-color: rgba(162, 242, 168, .5);
}

div.block-single{
    height: 130px;
    width: 100%;
    padding: 7px;
    border-radius: 4px;
    margin-bottom: 12px;
    border: 1px solid #E4E4E4;
    cursor: pointer;
}

div.block-single:nth-of-type(1){
    margin-top: 14px;
}

div.labels{
    width: 100%;
    max-width: 207px;
    overflow-x: hidden;
}

div.label-single{
    padding: 4px;
    border-radius: 4px;
    background-color: #FBF4EC;
}

div.label-single span{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 11px;
    color: #D28E3D;
}

div.block-single > i{
    float: right;
    font-size: 21px;
    color: #AFAFAF;
    position: relative;
    top: -32px;
    left: 2px;
    cursor: pointer;
}

div.block-single h3{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
    color: #000000;
    text-align: left;
    position: relative;
    left: 3px;
}

div.date-block{
    width: 100%;
}

div.date-block .col-flex{
    width: calc(100% / 2);
}

div.date-block p{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #727272;
    margin-top: 6px;
}

div.date-block p i{
    font-size: 16.5px;
    position: relative;
    top: 2px;
}

div.date-block .col-flex:nth-of-type(2){
    text-align: right;
}

div.members-files{
    width: 100%;
}

div.members-files .col-flex{
    width: calc(100% / 2);
}

div.members-block img{
    width: 25px;
}

div.members-block img:nth-of-type(2){
    width: 25px;
    position: relative;
    left: -17px;
}

div.members-block img:nth-of-type(3){
    width: 25px;
    position: relative;
    left: -35px;
}

div.info-block{
    width: 100%;
    text-align: right;
}

div.info-block span{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    color: #727272;
}

div.info-block span:nth-of-type(1){
    margin-right: 7px;
}

div.info-block span i{
    font-size: 18px;
    transform: rotate(-90deg);
    position: relative;
    top: 2px;
}

div.info-block span:nth-of-type(2) i{
    transform: rotateY(180deg) !important;
}

/**/

/* table */

div.table{
    min-height: 400px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px 20px;
    margin-bottom: 3rem;
}

div.table table{
    width: 100%;
}

div.table table thead th{
    font-family: 'Poppins';
    font-weight: 500 !important;
    font-size: 15px;
    color: #727272;
    text-align: left !important;
    border-bottom: 1px solid #EEEEEE !important;
    padding: 15px 0;
}

div.table table td{
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 13px;
    color: #292D32;
    text-align: left !important;
    border-bottom: 1px solid #EEEEEE;
    padding: 12px 0;
}

div.table table td img{
    width: 100%;
    max-width: 60px;
}

.collaborators table td img{
    max-width: 40px !important;
}

div.table table td a{
    font-size: 17px;
    color: #308C50;
    text-decoration: none;
}

.dt-info{
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 14px;
    color: #B5B7C0 !important;
}

#arrowtb{
    font-size: 17px !important;
    vertical-align: middle;
}

div.dt-container .dt-paging .dt-paging-button{
    border-radius: 5px !important;
    font-size: 11.5px;
    font-family: 'Poppins';
    padding: .5em 1.1em !important;
}

div.table div.dt-container .dt-paging .dt-paging-button.current{
    background-color: #308C50 !important;
    font-family: 'Poppins';
    color: #FFFFFF !important;
    font-size: 11.5px;
    border: 0;
}

div.table div.dt-container .dt-paging .dt-paging-button:hover{
    background: #308C50 !important;
    color: #FFFFFF !important;
    border: 0;
}

.dt-length label{
    display: none;
}

.dt-input{
    background-color: #F9FBFF !important;
    outline: none !important;
    height: 36px;
    padding: 5px 10px !important;
    border: 0 !important;
    border-radius: 4px;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 12px;
    width: 200px;
}

.dt-input:hover,
.dt-input:focus{
    border: 1px solid #308C50 !important;
}

#viewTable{
    display: none;
}

/* section clients */

.clients .head-frame h3{
    top: 6px;
}


/* section products */

.products h3, .alg-tit h3{
    top: 5.5px !important;
}

/**/


/* section contracts */

section.box-contracts{
    width: 100%;
    height: 100%;
    padding: 47px 2%;
}

div.contracts-wrapper h2{
    font-family: 'Inter';
    font-weight: 600;
    color: #1D3620;
    text-transform: uppercase;
    font-size: 25px;
}

div.contracts{
    margin-top: 20px;
}

div.contracts .col-flex{
    width: calc(100% / 4);
    padding-right: 15.5px;
}

div.contract-single{
    background-color: #FFFFFF;
    height: 170px;
    width: 100%;
    border-left: 3px solid #4B795E;
    border-radius: 6px;
    margin-bottom: 16px;
}

div.contract-data{
    padding: 6px;
}

div.contract-data h3{
    font-family: 'Inter';
    font-weight: 600;
    color: #1D3620;
    text-transform: uppercase;
    font-size: 14px;
}

div.contract-data span{
    font-family: 'Inter';
    font-weight: 500;
    color: #80878F;
    font-size: 12px;
    position: relative;
    top: 3px;
}

div.contract-status{
    padding: 3px 0;
    background-color: #1D3620;
    width: 55%;
    float: right;
    position: relative;
    right: -5.5px;
    margin-top: 16px;
}

div.contract-status p{
    font-family: 'Inter';
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    font-size: 13px;
}

div.line-ct{
    height: 1px;
    width: 100%;
    background-color: #767676;
    opacity: 10%;
    margin-top: 25px;
}

div.date-link{
    margin-top: 7px;
}

div.date-link p{
    font-family: 'Inter';
    font-weight: 400;
    color: #80878F;
    font-size: 13px;
}

div.date-link a{
    color: #80878F;
}

div.date-link p i{
    font-size: 18px;
    color: #767676;
    vertical-align: middle;
}

div.date-link p:nth-of-type(2){
    margin-top: 5px;
}

/* section box-charges */

section.box-charges{
    height: 100%;
    width: 100%;
    padding: 45px 2%;
}

div.charges-wrapper h2{
    font-family: 'Inter';
    font-weight: 600;
    color: #1D3620;
    font-size: 19px;
}
div.charges-wrapper p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    margin-top: 8px;
    color: #308C50;
}

div.charges-wrapper p a{
    color: #308C50;
    text-decoration: none;
}

/* section config */

section.config{
    height: 100%;
    width: 100%;
    padding: 20px 0;
}

div.config-wrapper h2{
    color: #1D3620;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 22px;
}

div.options-config ul{
    margin-top: 28px;
    list-style-type: none;
}

div.options-config li{
    margin-bottom: 10px;
}

div.options-config li a{
    font-family: 'Roboto';
    color: #3B424A;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
}

div.options-config li a:hover{
    color: #308C50;
}

/* section account */

section.account{
    height: 100%;
    width: 100%;
    padding: 46px 5px;
}

div.account-wrapper h2{
    color: #1E293B;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 21px;
}

div.opt-account{
    margin-top: 30px;
}

div.opt-account ul{
    list-style-type: none;
    border-bottom: 1px solid #ddd;
}

div.opt-account ul li{
    display: inline-block;
    margin-bottom: 0;
    margin-bottom: 5px;
}

div.opt-account li a{
    color: #3B424A;
    font-size: 17px;
    font-weight: 600;
    font-family: 'Inter';
    text-decoration: none;
    cursor: pointer;
    margin-right: 3px;
    padding: 10px 5px;
}

.active-acc{
    color: #308C50 !important;
}

div.billing-data{
    margin-top: 24px;
    padding-left: 8px;
}

div.billing-data h3{
    color: #191A15;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
}

div.form-billing{
    width: 100%;
    max-width: 540px;
}

div.plan-account{
    margin-top: 24px;
    padding-left: 8px;
}

#boxPlan{
    display: none;
}

div.plan-details label{
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 17px;
}

div.plan-details p{
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 17px;
    margin-top: 18px;
}

div.plan-details .col-flex{
    padding-right: 31px;
}

div.status-plan h3{
    margin-top: 30px;
    color: #3B424A;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 19px;
}

div.status-plan p{
    margin-top: 15px;
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
}

div.method-pay{
    margin-top: 25px;
    border-top: 1px solid #ddd;
}

div.method-pay h3{
    margin-top: 15px;
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 17px;
}

div.card-method{
    margin-top: 12px;
    border: 1px solid #ddd;
    height: 110px;
    width: 300px;
    border-radius: 4px;
    display: flex;
}

div.card-method i{
    align-items: center;
    align-self: flex-start;
    background-color: #f0f0f0;
    border-radius: 4px;
    color: #000;
    display: inline-flex;
    font-size: 45px;
    height: 90px;
    width: 90px;
    justify-content: center;
    padding-right: 1px;
    padding-top: 1px;
    margin-top: 10px;
    margin-left: 10px;
}

div.method-text{
    margin-left: 10px;
}

div.method-text h3{
    margin-top: 30px;
}

div.method-text p{
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 400;
    margin-top: 5px;
    font-size: 14px;
}

/**/

/* card crm */

div.box-card{
    height: 100%;
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 10px;
}

div.card{
    height: 100%;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    position: relative;
}

.close-card{
    position: absolute;
    right: 0;
}

.close-card i{
    position: relative;
    top: 4px;
    right: 4px;
    font-size: 25px;
    color: #616462;
    cursor: pointer;
}

.close-card i:hover{
    color: #dc3545;
}

.flex-card{
    height: 100%;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.flex-card .col-card{
    height: 100%;
    overflow-y: hidden;
}

.col-card:nth-of-type(1){
    width: 40%;
    border-right: 1.5px solid #A6A6A6;
}

.actions-card{
    padding: 25px 12px;
    height: 100%;
    position: relative;
    transition: .5s;
    overflow-y: auto;
}

/* .actions-card:hover{
    overflow-y: auto;
} */

.actions-card::-webkit-scrollbar{
    width: 7px;
}

.actions-card::-webkit-scrollbar-thumb {
    background-color: rgba(128, 128, 128, 0.5);   
    border-radius: 20px;  
}

.header-card h2{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 20px;
    color: #000;
}

.responsible-label{
    margin-top: 20px;
}

.responsible-label button{
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: 'Inter';
    font-weight: 500;
    color: #616462;
    font-size: 14px;
}

.responsible-label > button:hover{
    color: #308C50;
}

.responsible-label button i{
    font-size: 19px;
    position: relative;
    top: 2px;
}

.box-labels{
    display: inline-block;
    margin-left: 6px;
}

.box-labels > button{
    display: inline-block;
    margin-right: 2px;
    border: 0;
    padding: 4px 8px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
    border-radius: 12px;
}

.menu-card{
    width: 100%;
    margin-top: 20px;
}

.menu-card button{
    margin-right: 3.7px;
    margin-bottom: 8px;
    padding: 3.5px 8px;
    border: 1px solid #308C50;
    background-color: transparent;
    border-radius: 14px;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 12px;
    vertical-align: middle;
    cursor: pointer;
    transition: .3s;
}

.menu-card button i{
    font-size: 17px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.menu-card button:hover{
    background-color: #A2F2A8;
}

#link{
    transform: rotate(-37deg);
}

.active-bt{
    background-color: #A2F2A8 !important;
}

.content-card{
    margin-top: 20px;
    width: 100%;
    overflow-y: auto;
}

/* .box-opportunity */

.box-opportunity h3{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 17px;
    color: #000;
}

.opportunity{
    margin-top: 15px;
}

.form-opportunity{
    margin: 10px 0;
}

.form-opportunity label{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
    color: #000;
    vertical-align: middle;
}

.form-opportunity label i{
    font-size: 18px;
    position: relative;
    top: 1px;
}

.form-opportunity p{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    color: #454545;
    margin-top: 5px;
}

.form-opportunity input{
    height: 40px;
    width: 100%;
    margin-top: 6px;
    border-radius: 5px;
    border: 1.5px solid #D3CECE;
    outline: none;
    padding-left: 6px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
}

.form-opportunity textarea{
    height: 90px;
    width: 100%;
    margin-top: 6px;
    border-radius: 5px;
    border: 1.5px solid #D3CECE;
    outline: none;
    padding: 9px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    resize: vertical;
}

.labels-temperature{
    margin-top: 10px;
    list-style-type: none;
}

.labels-temperature li{
    margin-left: 10px;
    margin-bottom: 6px;
}

.labels-temperature .label-temp{
    display: inline-block;
    min-height: 18px;
    min-width: 18px;
    border-radius: 50%;
    margin-right: 6px;
    background-color: #e2c628;
    vertical-align: middle;
}

.labels-temperature li p{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    color: #454545;
    display: inline-block;
    position: relative;
    top: 2px;
}

/* history-card */

.history-card{
    margin-top: 20px;
}

.history-card h3{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 18px;
    color: #000;
}

.box-history{
    margin-top: 15px;
}

.history-single{
    border: 1px solid #D3CECE;
    border-radius: 4px;
    padding: 18px 16px;
    margin: 12px 0px;
    position: relative;
    margin-bottom: 10px;
}

.history-data h3{
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
    color: #FFA600;
    background-color: #FFF5E0;
    display: inline-block;
    padding: 4px;
    border-radius: 3px;
}

.history-data span{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 13px;
    color: #454545;
    display: block;
    margin-top: 7px;
}

.history-data p{
    text-align: right;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 13px;
    color: #454545;
    position: absolute;
    top: 8px;
    right: 8px;
}


/* annex */

.box-annex h3{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 19px;
    color: #000;
}

.box-annex > button{
    float: right;
    position: relative;
    top: -18px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    border: 0;
    cursor: pointer;
    color: #308C50;
}

.box-annex > button i{
    font-size: 18px;
    position: relative;
    top: 2px;
}

.annex-wrapper{
    margin-top: 25px;
}

.annex{
    background-color: rgba(197, 197, 197, 0.1);
    width: 100%;
    padding: 10px 7px;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: .3s;
}

.annex i{
    font-size: 25px;
    vertical-align: middle;
}

.img > i{
    color: #308C50;
}

.pdf > i{
    color: #dc3545;
}

.word > i{
    color: #3d8bfd;
}

.annex a{
    font-family: 'Inter';
    font-weight: 500;
    font-size: 15px;
    color: #505150;
    vertical-align: middle;
    position: relative;
    top: 1px;
    text-decoration: none;
}


.btn-annex{
    float: right;
    display: none;
    transition: display .3s;
}

.btn-annex i{
    font-size: 22px;
    cursor: pointer;
    color: #505150;
}

.btn-annex > i{
    position: relative;
    top: 1px;
}

.btn-annex i:hover{
    color: #308C50;
}










/**/

/* support */

.support .head-frame h3{
    top: 6px;
}

.support h2{
    color: #1D3620;
    font-family: 'Inter';
    font-weight: bold;
    font-size: 22px;
    display: inline-block;
}

.btn-add button{
    float: right;
    position: relative;
    top: -19px;
    font-size: 14px;
    padding: 6px 15px;
}

/* section tickets */

section.tickets{
    width: 100%;
    height: 100%;
    padding: 25px 1.5%;
}

.btn-back a{
    text-decoration: none;
    font-size: 15px;
    font-family: 'Inter';
    font-weight: 600;
    position: relative;
    top: -9px;
    color: #000;
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 4px 7px;
    margin-bottom: 50px;
}

.btn-back a i{
    vertical-align: middle;
    font-size: 20px;
    color: #ffffff;
    padding: 1px;
    border-radius: 50%;
    background-color: #308C50;
    position: relative;
    top: -1.6px;
    left: -3px;
}

div.box-ticket{
    margin-top: 20px;
}

div.box-ticket .col-flex:nth-of-type(1){
    width: 30%;
    height: 100%;
    padding: 0;
}

div.box-ticket .col-flex:nth-of-type(2){
    width: 70%;
    height: 100%;
    padding: 0;
}

div.info-ticket{
    height: 500px;
    width: 100%;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.line-tick{
    width: 100%;
    height: 22px;
    background-color: #1D3620;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

div.data-ticket{
    padding: 13px;
}

div.data-ticket h3{
    color: #308C50;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 16px;
}

div.user-support{
    padding: 7px 10px;
    background-color: #255932;
    border-radius: 14px;
    margin-top: 11px;
    width: 80%;
    margin-bottom: 18px;
}

div.user-support span{
    color: #ffffff;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 14px;
}

div.label-ticket{
    margin-bottom: 29px;
}

div.label-ticket label{
    color: #308C50;
    font-family: 'Inter';
    font-weight: 600;
    font-size: 15px;
}

div.label-ticket p{
    color: #3B424A;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    margin-top: 4px;
}

div.chat-messages{
    width: 100%;
    height: 100%;
    max-height: 500px;
    overflow-y: auto;
    padding-bottom: 6rem;
}

div.chat-messages::-webkit-scrollbar{
    width: 7px;
}

div.chat-messages::-webkit-scrollbar-thumb {
    background-color: rgba(162, 242, 168, .5);   
    border-radius: 20px;  
}


div.box-messages{
    padding: 0 10px;
}

div.msg-single{
    margin-bottom: 5px;
    width: 100%;
    display: inline-block;
}

.data-msg{
    padding: 8px 14px;
    width: 100%;
    height: 100%;
    max-width: 260px;
}

.data-msg p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    position: relative;
    top: 1px;
}

.sent{
    color: #F8F9FD;
    border-top-left-radius: 28px;
    border-bottom-left-radius: 28px;
    border-top-right-radius: 28px;
    float: right;
    background-color: #308C50;
}

.received{
    color: #1A1A1B;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
    float: left;
    background-color: #DCE6FF;
}

.date-msg{
    margin-top: 9px;
    display: block;
    width: 100%;
}

.date-msg p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    color: #AFB8CF;
}

.date-rg{
    float: right;
}

.date-lf{
    float: left;
}

.date-rg p{
    text-align: right;
}

.date-lf p{
    text-align: left;
}

div.send-message{
    height: 80px;
    width: 100%;
    background-color: #FFFFFF;
    position: absolute;
    bottom: 35px;
    padding: 10px 0;
}

div.send-message textarea{
    background-color: #F8F9FD;
    border: 0;
    width: 45%;
    border-radius: 8px;
    padding: 9px;
    resize: none;
    outline: none;
    color: #101820;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    height: 58px;
    margin-left: 7px;
}

div.send-message button{
    background-color: #308C50;
    border: 0;
    border-radius: 50%;
    padding: 7px;
    cursor: pointer;
    color: #F8F9FD;
    position: relative;
    top: -25px;
}

div.send-message button i{
    font-size: 20px;
    vertical-align: middle;
}

div.file-ticket{
    display: inline-block;
    border-radius: 50px;
    background-color: #F8F9FD;
    padding: 7px;
    cursor: pointer;
    position: relative;
    top: -25px;
    left: 4px;
    border: 1px solid #ccc;
}

div.file-ticket i{
    color: #202327;
    font-size: 20px;
    vertical-align: middle;
}

div.file-ticket input{
    cursor: pointer;
    direction: ltr;
    font-size: 200px;
    margin: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    padding: 17px;
}

/* Finances */

.finances .head-frame h3{
    top: 6px;
}

/* section chat-ia*/

section.chat-ia{
    height: 100%;
    width: 100%;
    padding-top: 15px;
}

div.box-chat{
    padding: 15px 22px;
    width: calc(100% - 220px);
    height: 100%;
}

div.content-chat h2{
    margin-top: 45px;
    color: #1C1C1C;
    font-family: 'Inter';
    font-weight: 800;
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
}

.data-chat{
    height: 100%;
    width: 100%;
    padding-bottom: 65px;
}

.question{
    width: 100%;
    margin-bottom: 20px;
    display: inline-block;
}

.question-msg{
    float: right;
    padding: 13px 16px;
    background-color: rgba(232, 232, 232, .5);
    max-width: 70%;
    border-radius: 1.5rem;
}

.question-msg p{
    color: #1C1C1C;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 400;
}

.reply-ia{
    display: flex;
    width: 100%;
    margin-bottom: 30px;
}

.logo-ia{
    position: relative;
    top: 19px;
    padding-right: 8px;
}

.logo-ia img{
    width: 38px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.reply-msg h3{
    color: #1C1C1C;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 19px;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 10px;
}

.reply-msg p{
    color: #292D32;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    line-height: 25px;
    margin-bottom: 10px;
    max-width: 80%;
}

.reply-msg ol{
    margin-top: 20px;
    list-style-position: inside;
    margin-bottom: 10px;
}

.reply-msg ol li{
    color: #292D32;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    text-align: left;
    margin-bottom: 10px;
    max-width: 80%;
}

.reply-msg ul{
    list-style-type: disc;
    list-style-position: inside;
    margin-bottom: 10px;
    margin-top: 10px;
}

.reply-msg ul li{
    color: #292D32;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 10px;
}

.reply-msg ol li ul{
    padding-left:  1.625em;
}

.reply-msg ul li ul{
    padding-left:  1.625em;
}

div.ai-quality{
    text-align: center;
}

div.ai-quality i{
    color: #1C1C1C;
    font-size: 20px;
}

div.ai-quality h3{
    color: #1C1C1C;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 600;
}

div.ai-quality p{
    color: #1C1C1C;
    font-size: 13px;
    font-family: 'Inter';
    font-weight: 400;
    text-align: justify;
    margin: 14px;
}

div.search-ia{
    padding: 15px;
    background-color: #FFFFFF;
    width: calc(100% - 460px); 
    position: fixed;
    bottom: 0;
    text-align: center;
}

div.search-ia textarea{
    height: 60px;
    width: 100%;
    max-width: 550px;
    padding: 15px;
    resize: none;
    background-color: #F7F9FB;
    border-radius: 16px;
    border: 0;
    outline: none;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: #191A15;
    display: inline-block;
    vertical-align: middle;
}

div.search-ia textarea::placeholder{
    color: #c5c5c5;
}

div.search-ia button{
    background-color: transparent;
    cursor: pointer;
    border: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    left: -37px;
}

div.search-ia button i{
    font-size: 25px;
    color: #9FA0A2;
}

div.chat-history{
    width: 220px;
    height: 100%;
    background-color: #FFFFFF;
    position: fixed;
    right: 0;
    top: 60px;
    transition: 300ms linear;
    overflow-y: auto;
    padding: 12px;
}

div.history-wrapper{
    text-align: center;
}

div.history-wrapper button{
    padding: 8px 10px;
    width: 190px;
    background-color: #1C1C1C;
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Inter';
    font-weight: 300;
    font-size: 14px;
    border: 0;
    display: inline-block;
    margin-top: 9px;
    cursor: pointer;
}

div.history-wrapper button a{
    color: #FFFFFF;
    text-decoration: none;
}

div.history-wrapper ul{
    margin-top: 14px;
    list-style-type: none;
}

div.history-wrapper ul li{
    text-align: left;
    margin-left: 5px;
    margin-bottom: 15px;
}

div.history-wrapper li a{
    color: #1C1C1C;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 13px;
    text-decoration: none;
}

div.history-wrapper li a i{
    font-size: 18px;
    position: relative;
    top: 3px;
}






/**/




/* Responsivo */

@media screen and (max-width: 1400px){
    div.modal-form{
        background-color: #FFFFFF;
        height: 100%;
        max-height: 500px;
        width: 100%;
        max-width: 500px;
    }
}


