/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.3/font/bootstrap-icons.css");
@import url("responsividade.css");


*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

body, html {
  overflow-x: hidden;
}

a {
  text-decoration: none !important;
  color: #F6931C ;
}

.main-login {
  background: #F9F9F9;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  display: flex;
}

.bx-login {
  margin: auto;
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
}

.bx-login h1 {
  color: #F6931C;
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
}

.bx-login p {
  color: #444444;
  font-size: 16px;
  font-weight: 400;
}

.bx-login a {
  color: #F6931C;
  font-size: 12px;
  line-height: 12px;
  font-weight: 300;
  text-decoration: none;
  text-align: center;
}
/*
.form-login {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 25px;
}

.form-login input {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 16px;
  border-radius: 5px;
  flex-grow: 1;
}
*/

.form-login {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 30px;
  gap: 25px;
}

.float-label {
  position: relative;
}

.form-login input {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 16px;
  border-radius: 5px;
  width: 100%;
}

.float-label label {
  position: absolute;
  top: 13px;
  left: 16px;
  color: #999999;
  transition: all 0.3s;
  pointer-events: none;
}

.float-label input:focus + label,
.float-label input:valid + label {
  top: -8px;
  left: 12px;
  color: #444444;
  font-size: 12px;
  background: #fff;
  padding: 0 8px;
}

/**/

.form-login .row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.form-login .col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.form-login .col #password-status {
  font-size: 13px;
}

.form-login .row > div {
  font-size: 18px;
  display: flex;
  gap: 8px;
}

.form-login #password-status {
    font-size: 12px;
}


.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #F6931C;
  padding: 6px 12px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px
}

.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}

.logo-details img {
  height: 30px;
  width: 130px;
  object-fit: cover;
  margin-left: 20px;
}

.sidebar i{
  color: #ffffff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}

.tooltiphelp{
  position: relative;
  top: -68px;
  z-index: 3;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}

.htip:hover .tooltiphelp{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
}

.sidebar li.active a {
  background:#fff;
 }
 
 .sidebar li.active i{
  color: #F6931C;
 }
 
 .sidebar li.active a .links_name {
  color: #F6931C;
 }


.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #F6931C;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #F6931C;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #F6931C;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #F6931C;
}
.sidebar li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #F6931C;
}
.sidebar li a:hover{
  background: #ffffff;
}
.sidebar li a .links_name{
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li a .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li a:hover .links_name,
.sidebar li a:hover i{
  transition: all 0.5s ease;
  color: #F6931C;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.nav-foot{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 12px;
  background: #F6931C;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.nav-foot{
  width: 250px;
}

.sidebar li.nav-foot a{
  background: #fff;
}

.sidebar li.nav-foot i {
  color: #F6931C;
}

.sidebar li.nav-foot .links_name {
  color: #F6931C;
}

.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.main{
  position: relative;
  background: #ffffff;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
  margin-bottom: 50px;
  padding-bottom: 120px;
}
.sidebar.open ~ .main{
  left: 250px;
  width: calc(100% - 250px);
  
}

.header_top {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: end;
  align-items: center;
  padding: 0 40px;
  border-bottom: 1px solid #f2f2f2;
  z-index: 9999;
}

ul.header-list {
  display: flex;
  width: 120px;
  list-style: none;
  justify-content: space-between;
}

ul.header-list > li i {
  font-size: 32px;
  list-style: none;
  color: #F6931C;
}

.header_top.dark {
  width: 100%;
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  background: #F6931C;
}

ul.header-list.light {
  display: flex;
  width: 120px;
  list-style: none;
  justify-content: space-between;
}

ul.header-list.light
 > li i {
  font-size: 32px;
  list-style: none;
  color: #ffffff;
}

.logo_info img {
  height: 30px;
  width: 130px;
  object-fit: cover;
}

.login.md-flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.access-denied-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.access-denied-card > .title-bx {
  font-size: 22px;
  font-weight: 700;
}

.access-denied-card > p {
  font-size: 16px;
  font-weight: 400;
}

.login.md-flex > .title-bx {
  font-size: 17px;
  font-weight: 600;
}

.logo_info.login img {
  height: 35px;
  width: 140px;
  margin-bottom: 15px;

}

.main-section {
  width: 100%;
  background: #ffffff;
  margin: auto;
  margin-top: 66px;
}

.main-section.container#files {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
}

.container-domains {
  max-width: 1174px;
  margin: auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column; 
}

.title-page {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.title-page > .title {
  color: #444444;
  font-size: 20px;
  font-weight: 500;
}

.title-page > .description {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #8c8c8c;
  font-size: 15px;
  font-weight: 400;
  margin-left: 10px;
  padding: 0 10px;
  border-left: 1px solid #BFBCBC;
}

.title-page > .description i {
  padding-right: 5px;
}

.manage-domains {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  padding: 15px 30px;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
}

.manage-domains > ul.list-domains {
  list-style: none;
  display: flex;
  flex-direction: column;
}


.manage-domains > ul.list-domains li {
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.hosting-account {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hosting-account > .hosting-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow-wrap: anywhere;
}

.hosting-account > .hosting-name > i {
  padding-right: 16px;
  color: #F6931C;
  font-size: 32px;
}

.hosting-account > .hosting-name > .name-domain h2 {
  color: #444444;
  font-size: 16px;
  font-weight: 500;
}

.hosting-account > .hosting-name > .name-domain p {
  color: #8c8c8c;
  font-size: 16px;
  font-weight: 400;
}

.button-ha {
  padding: 12px 35px;
  color: #ffffff;
  background: #F6931C;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.button-ha:hover {
  background: #f0890c;
}

.inactive-popup .button-ha {
  background: #C4C4C4;
  color: #ffffff;
  text-decoration: line-through;
}

.buttondomain {
  min-width: 100%;
}

.main-section.container {width: 90%;}

.dashboard-content{
  display: flex;
  flex-direction: row;
  justify-content: start;
  width: 100%;
  margin-top: 30px;
  gap: 20px;
}

.dashboard-aside {
  width: 25%;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  padding: 35px 25px;
  height: 50%;
}

.container-flex-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2%;
  row-gap: 25px;
}

.container-flex-wrap > .dashboard-navigation{
  width: 23%;
}


.dashboard-content-main {
  flex-grow: 1;
}

.dashboard-navigation {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;


  
}

.dashboard-navigation > .box-navigation {
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  padding: 35px 25px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.box-navigation.infobx {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.dashboard-navigation > .box-navigation i, .content-info-title i{
  font-size: 24px;
  color: #F6931C;
  margin-right: 10px;
}

.dashboard-content-info {
  width: 100%;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  padding: 35px 25px;
  margin-top: 30px;
  overflow-wrap: anywhere;
}

.dashboard-content-info {
  display: flex;
  flex-direction: column;
}

.content-info-title {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content-info:nth-child(2) {
  margin-top: 50px;
}

.content-info-details {
  margin: 30px 0 0 34px;
  width: 100%;
}

.box-nav {
  display: flex;
  gap: 20px;
}

.title-bx {
  color: #444444;
  font-size: 13px;
  line-height: 18px;
  font-weight: 500;
}

.title-bx.title-light {
  color: #444444;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}

.text-bx {
  color: #444444;
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
}


.text-bx.textlight {
  font-weight: 300;
}

.text-bx.text-el {
  color: #444444;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-weight: 300;
  margin-top: 10px;
  text-align: justify;
}

.text-bx.textbold {
  font-weight: 600;
}

a.text-bx {
  color: #F6931C;
  font-size: 12px;
  line-height: 25px;
  font-weight: 400;
}

.details-chart > .text-bx {
  color: #444444;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  text-align: start;
}

.aside-chart {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.details-chart {
  padding-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.details-chart > progress {
  margin-top: 8px;
  width: 100%;
  display: block;
  border-radius: 5px; 
  height: 15px;
}

.details-chart > progress::-webkit-progress-bar {
  background-color: #ededed;
  border-radius: 7px;
}
.details-chart > progress::-webkit-progress-value {
  background-color: var(--progress-color);;
  border-radius: 5px;
}


.details-chart span {
  font-size: 16px;
  text-align: center;
  color: #555;
  line-height: 35px;
}

.details-chart span.legend{
  padding-top: 15px;
} 

.box-md {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 550px;
  margin: auto;
  padding: 30px 45px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%); 
  overflow-wrap: anywhere;
}

.modalDialog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0px;
  z-index: 99999;
  opacity: 0;
  -webkit-transition: opacity 400ms ease-in;
  -moz-transition: opacity 400ms ease-in;
  transition: opacity 400ms ease-in;
  pointer-events: none;
  backdrop-filter: blur(5px);
}

.modalDialog:target {
  opacity: 1;
  pointer-events: auto;

}

.modalDialog > div {
  width: 100%;
  max-width: 500px;
  position: relative;
  margin: 150px auto 0 auto;
  padding: 30px 45px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%); 
  overflow-wrap: anywhere;
  border: 1px solid #d8d8d8;
}

.modalDialog > .filter-form {
  width: 100%;
  max-width: 700px;
  position: relative;
  margin: 150px auto 0 auto;
  padding: 30px 45px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%); 
  overflow-wrap: anywhere;
  border: 1px solid #d8d8d8;
}

.close {
  background: #F6931C;
  color: #FFFFFF !important;
  line-height: 25px;
  position: absolute;
  right: -12px;
  text-align: center;
  top: -10px;
  width: 24px;
  text-decoration: none;
  font-weight: bold;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px; 
}

.divbuttons.bx-buttons {
  gap: 20px;
}

.bx-buttons {
  text-align: center;
}

.bx-buttons.px {
  padding-top: 25px;
  font-size: 12px;
  align-items: center;
}


.divbuttons {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-around;
  flex-basis: 50%;
  margin-top: 20px;
  gap: 20px;
}

.divbuttons a {
  width: 50%;
  text-align: center;
}

.button-submit {
  width: 50%;
  padding: 15px 25px;
  color: #ffffff;
  background: #F6931C;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.button-shut {
  width: 90% ;
  padding: 15px 25px !important;
  color: #F6931C !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

.button-submit:hover{
  background: #f0890c;
}

.button-shut:hover {
  background: #f6941c2f !important;
  border: none !important;
}

.e-mails-page {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 30px;
  overflow-wrap: anywhere;
}

.e-mails-page > .mail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

.mail-sidebar {
  min-width: 25%;
  background: #ffffff;
  padding: 30px 20px;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  height: 40%;
}

ul.menu-list {
  margin-top: 20px;
}

ul.menu-list li {
  list-style: none;
  padding-bottom: 10px;
}

.mainpage-mail {
 flex-grow: 1;
 display: flex;
 flex-direction: column;
 padding-top: 25px;
}

.mainpage-mail > .title-page {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.mainpage-mail > .title-page h1 {
  font-size: 18px;
  font-weight: 500;
}

.button-light {
  padding: 10px 18px;
  color: #F6931C;
  background: #ffffff;
  border: 1px solid #e9e8e8;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
}

.button-light:hover {
  background: #F6931C;
  color: #ffffff;
  border: 1px solid #F6931C;
}

.button-light i {
  font-size: 18px;
  margin-right: 10px;
}

.box-mails {
  background: #ffffff;
  padding: 0px 20px;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  width: 100%;
  margin-top: 25px;
}

.title-table.title-box {
  border-bottom: 1px solid #f4f1f1;
}

.title-table {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 15px 0;
}


.title-table i {
  color: #D9D9D9;
  font-size: 18px;
}

.header-table {
  border-bottom: 1px solid #f4f1f1;
}

table.tablelist-mails {
  width: 100%;
  border-collapse: collapse;
}

table.tablelist-mails tbody {
  border-top: 1px solid #f4f1f1;  
}

table.tablelist-mails tbody tr:not(:last-child) {
  border-bottom: 1px solid #f4f1f1;
}

table.tablelist-mails thead td {
  padding: 15px 16px;
  font-size: 12px;
  color: #444444;
}

table.tablelist-mails tbody td {
  padding: 25px 16px;
  font-size: 12px;
  color: #444444;
}

table.tablelist-mails.statistics td {
  width: 40%;
}

table.tablelist-mails.col4 td {
  width: 30%;
}

table.tablelist-mails.col4 .w90 {
  width: 90%;
}

.linkaction {
  text-align: center;
  white-space: nowrap

}

.text-des {
  font-size: 12px;
  font-weight: 300;
  color: #aca8a8;
}

.actionmail {
  text-align: center;
  justify-content: center;
  width: 100%;
  color: #F6931C;
  border: none;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.actionmail:hover, .actionmail:focus {
  color: #f0890c;
  cursor: pointer;
}



.formbd {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 35px 0;
}

.form-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
}

.form-label {
  min-width: 20%;
  max-width: 20%;;
  color: #444444;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  justify-content: end;
  align-items: center;
  text-align: right;
}

#clientid {
  overflow-wrap: break-word;
}

.input-group {
  color: #b5b5b5;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
}

.input-group.row100 {
  flex-grow: 1;
  align-items: center;
}

.input-group span {
  padding: 7px 10px;
  background: #F9F8F8;
  border-width: 1px 0 1px 1px;
  border-color: #e1e1e1;
  border-style: solid;
  border-radius: 5px 0px 0px 5px;
}

.input-group input {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  flex-grow: 1;
}

.input-group .grouprow-rigth {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 5px 0px 0px 5px;
  flex-grow: 1;
}

.input-group .grouprow-left {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 0px 5px 5px 0px;
  flex-grow: 1;
}

.input-group input:focus {
  outline: 0;
}

.input-group input#passwordbd {
  border-radius: 5px;
}


.input-group input::placeholder {
  color: #A3A3A3;
}

.button-form {
  padding: 8px 15px; 
  color: #ffffff;
  background: #F6931C;
  border: none;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}

.button-form:hover {
  background: #f0890c;
}

.box-mails.main-chart {
  margin-top: 0;
  min-height: 480px;
}

.box-mails.bx_containes {
  padding: 25px;
}

.chart-sidebar {
  width: 48%;
  background: #ffffff;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 24px;
  align-items: start;
  padding: 20px;
}

#chartspace {
  margin-top: 20px;
}

#chart-trafego {
  margin-top: 35px;
}

.charts-page {
  margin: 35px 0;
}

.e-mails-page.charts-page {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.sub-details {
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 15px 0;
  overflow-wrap: anywhere;
}

.account > .text-bx.active {
  color: #f0890c;
}

.account > .text-bx.inactive {
  color: #8c8c8c;
}

/* Menu E-mails*/
.topnav {justify-content: space-between;}
.topnav .icon {display: none;}
.topnav i {font-size: 25px;}
.mail-menu:first-child {margin-bottom: 25px;}

/*Menu suspenso*/

.dropbtn {
  background: #ffffff00;
  color: #f0890c;
  font-size: 12px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  text-align: left;
  color: #444444;
  display: none;
  position: absolute;
  padding: 0;
  background-color: #ffffff;
  min-width: 160px;
  overflow-wrap: anywhere;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  z-index: 1;
  margin-left: -80px;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
}


.dropdown-content a:hover {
  background: #f9f9f9;
  color: #F6931C;
}
.show {display: block;}


.dropbtn i {
  font-size: 25px;
  color: #f0890c;
  background: #f0890c1b;
  padding: 5px;
  border-radius: 50px;
}

#Notice.dropdown-card {
  overflow-y: auto;
}

.dropdown-card {
  text-align: left;
  color: #444444;
  visibility: hidden;
  position: absolute;
  background-color: #ffffff;
  min-width: 280px;
  max-height: 320px;
  overflow-wrap: anywhere;
  box-shadow: 0px 0px 15px rgb(227 227 227 / 70%);
  border: 1px solid #e1e1e1;
  z-index: 99999;
  margin-left: -260px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  border-radius: 8px;
}

.dropdown-card::-webkit-scrollbar {
  width: 12px;               /* width of the entire scrollbar */
}

.dropdown-card::-webkit-scrollbar-track {
  background: #f9f9f9;        /* color of the tracking area */
}

.dropdown-card::-webkit-scrollbar-thumb {
  background-color: #f0890c;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 3px solid #f9f9f9;  /* creates padding around scroll thumb */
}

.showcard {
  visibility: visible;
}

.dropdown-card-titulo {
  background: #444444;
  padding: 15px 10px;
  border-radius: 8px 8px 0 0;
  border: 1px solid #444444;
}

.dropdown-card-titulo h1 {
  padding-left: 25px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.dropdown-card-titulo-content {
  display: flex;
  flex-direction: column;
  
}

.dropdown-card-titulo-content .item-card {
  border-bottom: 1px solid #e1e1e1;
  padding: 25px;
  font-size: 16px;
  display: flex;
  align-items: left;
  flex-direction: column;
  gap: 10px;
  color: #444444;
}

.dropdown-card-titulo-content p.item-card  {
  font-size: 14px;
}

.dropdown-card-titulo-content .item-card:hover {
  background: #F9F9F9;
}
.item-card i {
  color: #f0890c !important;
  font-size: 25px !important; 
}


.text-bx.title-mb  {
  display: none;
}

#header-tablebd {
  text-align: left;
}

.card-navigation {
  flex-wrap: wrap;
}

.htooltip {
  position: relative;
  display: inline-block;
}

.htooltip .tooltiptext {
  visibility: hidden;
  width: fit-content;
  background: #ffffff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  color: #444444;
  font-size: 12px;
  text-align: center;
  border-radius: 6px;
  padding: 5px 8px;
  position: absolute;
  z-index: 1;
  top: 100%;
  margin-left: -60px;
}

.htooltip:hover .tooltiptext {
  visibility: visible;
}

.text-lg {
  text-align: center;
}

.swal-button-container {
  border: 0 !important;
}

.swal-button {
  background-color: #F6931C !important;
}

.swal-button:focus {
  box-shadow: none;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm {
  background-color: #F6931C !important;
}

div:where(.swal2-container) div:where(.swal2-popup) {
  background: #fff !important;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  color: #545454 !important;
}

.swal2-html-container {
  text-align: center !important;
}

div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: rgba(0,0,0,.4) !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus {
  box-shadow: none !important;
}

.swal-button:hover {
  background-color: #f0890c !important;
}

.swal-button--danger {
  background-color: #F6931C;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.swal-button--cancel {
  background-color: #fff !important;
  border: none !important;
  color: #F6931C !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

.swal-button--danger:hover {
  background-color: #f0890c !important;
}

.swal-button--cancel:hover {
  background-color: #f6941c2f !important;
}

.tabbox-content {
  width: 100%;
  padding: 20px 0;
}

.tabbox-content form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25;
}

.tabbox-content .form-group {
  display: flex;
  width: 100%;
  flex-direction: row;
  color: #444444;
  font-size: 12px;
  line-height: 22px;
  font-weight: 400;
}

.form-group {
  display: flex;
  gap: 25px;
  margin: 8px 0;
}

.form-group.groupcol100 {
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-items: start;
  gap: 10px;
}

.col-input-field.groupcol100 {
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  gap: 10px;
}

.col-label {
  min-width: 20%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.col-input-field {
  display: flex;
  text-align: left;
  min-width: 80%;
}

.form-group.btn-form {
  justify-content: flex-end;
}

.btns-right {
  display: flex;
  gap: 25px;
  flex-basis: 280px;
}

.btn-sucess {
  width: 50%;
  padding: 15px 25px;
  color: #ffffff;
  background: #F6931C;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.btn-sucess:hover{
  background: #f0890c;
}

.btn-cancel {
  width: 50% ;
  padding: 15px 25px !important;
  color: #F6931C !important;
  background: #ffffff !important;
  border: none !important;
  border-radius: 5px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
}

.btn-cancel:hover {
  background: #f6941c2f !important;
  border: none !important;
}


.col-input-field input[type=text], .col-input-field input[type=password], .col-input-field input[type=date], .col-input-field input[type=email], .col-input-field input[type=datetime-local]   {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px;
  flex-grow: 1;

}

.col-input-field input[type=text].input-group, .col-input-field input[type=password].input-group, .col-input-field input[type=date].input-group, .col-input-field input[type=email], .col-input-field input[type=datetime-local] {
  border-radius: 5px 0 0 5px;
  flex-grow: 1;
  height: fit-content;
}

.col-input-field select {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px 0 0 5px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  padding-right: 10px;
  height: fit-content;
  font-size: 12px;
}

.input-group.row100 select {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px 0 0 5px;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 5px;
  padding-right: 10px;
  height: fit-content;
  font-size: 12px;
}

.col-input-field textarea {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px;
  width: 100%;
  font-size: 12px;
}

.input-group textarea {
  background: #ffffff;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px;
  width: 100%;
}

.col-input-field span {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #D9D9D9;
  border-left: 0;
  padding: 8px;
  border-radius: 0 5px 5px 0;
  height: fit-content;
}

.input-group.row100 .generate {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #D9D9D9;
  border-left: 0;
  padding: 8px;
  border-radius: 0 5px 5px 0;
  color: #444444;
}

.input-group.row100 .generate:hover, .col-input-field .generate:hover  {
  background: #ededed;
}

span.generate {
  color: #444444;
}

.col-input-field span.domain {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  background: #f9f9f9;
  border: 1px solid #D9D9D9;
  padding: 8px;
  border-radius: 5px;
  width: 100%;
} 

.col-input-field span.btn-default:hover {
  background: #eeeeee;
  cursor: pointer;
}

.col-input-field small {
  font-size: 10px !important;
  text-align: left;
  margin-left: 15px;
  line-height: 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #444444;
}

.input-group small {
  color: #444444;
  line-height: 15px !important;
  margin-left: 15px;
}

.tab-Wrapper {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-mails.tab-Wrapper  i {
  font-size: 24px;
}

.tab-hide {
  padding-right: 25px;
}

.btn-sucess.btnsmall-success {
  width: 35%;
  background: #75C582;
  color: #FFFFFF;
  padding: 10px 20px;
  text-align: center;

}

.btn-sucess.btnsmall-success:hover {
  background: #62a86d;

}

.form-group.groupcol100 .col-input-field {
  width: 100%;
}

.table-filter table {
  margin: 50px 0;
  width: 100%;
  border: 1px solid #d9d9d9;
  border-collapse: collapse;
}

.table-filter tbody tr:nth-child(odd) {
  background: #f2f5f7;
}

.table-filter tbody tr:hover {
  background: #e7eef3;
}

.table-filter table thead th, .table-filter table tbody td {
  padding: 10px;
  font-weight: 500;
  font-size: 12px;
}

.table-filter .dark {
  background: #f9f9f9;
  color: #FFFFFF;
  text-align: left;
}

.text-right {
  text-align: right;
}

.table-filter a {
  color: #444444;
  font-size: 12px;
}

.table-filter a:hover {
 color:  #f0890c;
 text-decoration: solid !important;
}

.table-filter i {
  color: #ffffff;
  font-size: 12px;
  background: #ED4135;
  padding: 8px;
  border-radius: 5px;
}

.table-filter .btns-entrydns {
  display: flex;
  flex-direction: row;
  gap: 3px;
}

.table-filter .btn-edit {
  border: 0;
}

.table-filter .btn-edit i {
  color: #ffffff;
  font-size: 12px;
  background: #72c280;
  padding: 8px;
  border-radius: 5px;
}

.table-filter i:hover {
  cursor: pointer;
}

.filter-form .title-bx{
  font-size: 20px;
}

.filter-form .col-label {
  font-weight: 700;
}

.collapse {
  display: none;
}


.list-mails.tab-Wrapper i {
  color: #f0890c;
}

.list-mails.tab-Wrapper i:hover {
  cursor: pointer;
}

table.tablelist-mails  td.thead {
  padding: 25px 16px;
}


#btns-table-action {
  display: flex;
  gap: 15px;
  flex-grow: 1;
  width: 100%;
}

#btns-table-action .btn-remove {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: #FC5185;
}

#btns-table-action .btn-remove i {
  font-size: 20px;
}

.text-bx.textlight.link_page:hover {
  color: #f0890c;
}

.button-group {
  display: flex;
  gap: 10px;
}

.button-group .button-form.cancel {
  background: #FFFFFF;
  color: #f0890c;
}

.button-group .button-form.cancel:hover {
  background: #f0890c1b;
}

.status .ativo {
  color: #62a86d;
}

.status .inativo {
  color: #ED4135;
}

.input-group #password, .col-input-field #password, .form-group input, .input-group input{
  color: #444444;
}

input:disabled   {
  color: #555 !important;
  background: #EEEEEE !important;
}

#mostrarsenha {
  border-radius: 0;

}

#mostrarsenha:hover, .bi-magic:hover{
  cursor: pointer;
}

#password-status, #password-status span {
  background: #FFFFFF;
  border: 0;
  border-radius: 0;
  padding: 0;
}

.text-bx.legend {
  font-size: 12px;
}

.title-table.alert_dark i {
  color: #444444;
  font-size: 26px;
}

.title-table.alert_dark h1 {
  font-size: 16px;
}

.topbuttons {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.dns_record_btn {
  font-size: 12px;
  padding: 5px 10px;
  background: #72C280;
  border: 0;
  color: #ffffff;
  border-radius: 5px;
  font-weight: 500;
}

.dns_record_btn:hover {
  background: #62a86d;
  cursor: pointer;
}


.table-filter.table-wrapper table thead td {
  padding: 10px;
}

/* Estilo das talelas de paginação */

#table_dns.table {
  margin: 0;
}

.dataTables_length, .dataTables_filter , .dataTables_info, .dataTables_paginate {
  margin: 20px 0;
  font-size: 12px;
}

.dataTables_length select, .dataTables_filter input , .dataTables_paginate .paginate_button.current {
  border-radius: 5px;
}

.paginate_button:hover {
  border-radius: 5px !important;
}

.flex-colum {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sub-group small {
  margin: 0;
}

.htooltip.info_group {
 margin: 10px;
}

.htooltip.info_group:hover {
  cursor: pointer;
}

.htooltip.info_group small {
    width: 250px;
    right: 5px;
    padding: 15px 8px;
    font-size: 12px !important;

}

.sub-group {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.sub-group input {
  flex-grow: 0;
}

.title-table.title-box h1.text-bx.textbold {
  font-size: 17px;
}

#table_dns a {
  color: #444444;
}

#table_dns a:hover {
  cursor: pointer;
}

.text-medium {
  font-size: 14px;
}

.hidden {
  display: none;
}

.circular-progress{
  position: relative;
  height: 250px;
  width: 250px;
  border-radius: 50%;
  background: conic-gradient(#7d2ae8 3.6deg, #ededed 0deg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.circular-progress::before{
  content: "";
  position: absolute;
  height: 210px;
  width: 210px;
  border-radius: 50%;
  background-color: #fff;
}
.progress-value{
  position: relative;
  font-size: 40px;
  font-weight: 600;
  color: #7d2ae8;
}

p.progress-value {
  font-size: 25px;
}


.details-chart > progress {
  margin-top: 8px;
  width: 100%;
  display: block;
  border-radius: 5px; 
  height: 15px;
}

.details-chart > progress::-webkit-progress-bar {
  background-color: #f9f9f9;
  border-radius: 7px;
}
.details-chart > progress::-webkit-progress-value {
  background-color: #2DB8B5;
  border-radius: 5px;
}

.domains-legend-chart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%
}

.chart-sidebar.w100 {
  width: 98% !important;
  padding-bottom: 25px;
}
.label-check {
  display: flex;
  justify-content: start;
  gap: 10px;
}

.label-check input {
  width: fit-content;
}

.chart-sidebar.w100 .details-chart {
  align-items: start;
  padding-top: 0;
}

.details-chart.w100 {
  width: 100%;
}

.details-chart.w100 .progress-legend {
  width: 100%;
  display: flex;
  text-align: end;
  justify-content: end;
  padding: 10px 0;
  color: #8c8c8c;
}

.chart-sidebar .title-table.title-box {
  display: flex;
  flex-direction: column;
 align-items: start;
 gap: 0px;

}

.swal-footer {
  display: flex;
  align-items: center;
  justify-content: center;
}

.swal-text {
  text-align: center;
}

#tablelist-mails {
  border: none;
}

#tablelist-mails td,
#tablelist-mails th {
  border: none;
}

.sorting, .sorting_desc, .sorting_asc {
  color: #f0890c;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: #f0890c;
  border-color: #f0890c;
}

.text-small {
  padding-left: 5px;
}

.dados-dns {
  width: 30% !important;
}

#page-dns.e-mails-page .table-filter.table-wrapper {
  overflow-wrap: wrap !important;
}

.table-filter.table-wrapper {
  overflow-x: scroll;
}

.e-mails-page.page-dns {
  overflow-wrap: wrap !important;
}

button.ancora_link {
  background: #f0890c00;
  border: none;
  padding: 12px 16px;
  font-size: 12px;
  width: 100%;
  text-align: left;
}

button.ancora_link:hover {
  background: #f9f9f9;
  color: #F6931C;
  cursor: pointer;
}

.formdrop {
  width: 100%;
}

.input-group span.units_bd {
  border-width: 1px 1px 1px 0px !important;
  border-radius: 0px 5px 5px 0px !important;
} 

.input-group .units-right {
  padding: 7px 10px;
  background: #ffffff;
  border: 1px solid #e1e1e1;
  border-radius: 5px 0px 0px 5px;
  flex-grow: 1;
}

#btns-table-action.actionsubdomain a{
  width: max-content;
}

#btns-table-action.actionsubdomain {
  justify-content: end;
}

.tablesub .editsub button.btn-editsub {
  display: flex;
  flex-direction: row;
  border: 0;
  background: transparent;
  width: max-content;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #f0890c;
}

.tablesub .editsub button.btn-editsub:hover {
  cursor: pointer;
}


/* Modal Overlay */
.modal-webftp {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Content */
.modal-content-webftp {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Modal Header */
.modal-header-webftp {
    padding: 25px 30px;
    background: linear-gradient(135deg, #ff7a00 0%, #ff9a33 100%);
    color: white;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.modal-header-webftp h2 {
    margin: 0;
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Close Button */
.close-webftp {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

.close-webftp:hover {
    transform: translateY(-50%) scale(1.2);
}

/* Modal Body */
.modal-body-webftp {
    padding: 30px;
}

/* Info Box */
.info-box-webftp {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-item-webftp {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.info-item-webftp:last-child {
    border-bottom: none;
}

.info-label-webftp {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.info-value-webftp {
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

/* Form Group */
.form-group-webftp {
    margin-bottom: 20px;
}

.form-group-webftp label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-group-webftp input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group-webftp input[type="password"]:focus {
    border-color: #ff7a00;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.1);
}

/* Connect Button */
.btn-connect-webftp {
    width: 100%;
    padding: 14px;
    background: #ff9a33;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-connect-webftp:hover {
    background: #f0890c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-connect-webftp:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Alert Info */
.alert-info-webftp {
    background: #f0890c08;
    border-left: 4px solid #f0890c;
    padding: 12px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 13px;
    color: #f0890c;
}

/* Page Specific Styles */
.webftp-content-info {
    margin-top: 30px;
}

.webftp-sub-details-box {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.webftp-link-manage {
    color: #f0890c;
    font-weight: bold;
}

.webftp-empty-state {
    text-align: center;
    padding: 40px;
}

.webftp-empty-icon {
    font-size: 64px;
    color: #ccc;
}

.webftp-empty-state h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.webftp-create-link {
    margin-top: 20px;
}

.webftp-inactive {
    color: #999;
}

/* Badge de notificação de tarefas */
.badge-tarefas {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: #ffffff;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.swal2-shown.swal2-height-auto {
  padding-right: 0 
  !important;
}