/*CSS GLOBAL*/
body {
  margin: 0;
  padding: 0;
  font-family: Roboto,"Helvetica Neue",Arial,sans-serif;
  color: #4e4b54;

  -ms-overflow-style: none; /* for Internet Explorer, Edge */
  scrollbar-width: none; /* for Firefox */
  overflow-y: scroll; 
}

body::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}

a{
  text-decoration: none;
}

.dialogify__close{
 cursor: pointer;
}

.wrapper{
  width: 100%;
  margin: 0 auto;
}

.container{
  margin: 0 36px;
}

.off{
  display: none!important;
}

.row{
  display: flex;
  flex-direction: row;
}
.col{
  display: flex;
  flex-direction: column;
}


/*SKELETON*/
.skeleton {
  background-color: #e2e5e7!important;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0)
  );
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  -webkit-animation: shine 1s ease infinite;
  animation: shine 1s ease infinite;
}

.skeletonNumber{
  color: transparent!important;
}

@-webkit-keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

.main {
  width: calc(100% - 80px);
  padding-left: 80px;
  min-height: 100vh;
  background: #F1F4F9;
  position: relative;
}




.footer{
  padding: 0 0 16px;
  text-align: center;
}

.details {
  width: 380px;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgb(250, 250, 250);
  box-shadow: rgb(170 170 170) 10px 0px 20px 0px;
  transition: transform 0.5s ease 0s;
  z-index: 99999;
  transform: translateX(0px);
  padding: 0 24px;
  overflow: hidden auto;
}

.detailTitle h1{
  font-size: 24px;
  margin: 0;
  padding: 0;
}
.detailTitle{
  width: 95%;
  text-align: center;
}

.detailTitle h3{
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  text-align: center;
}

.details h2{
  font-size: 18px;
  margin: 0;
  padding: 0;
}

.details label{
  margin: 0 0 4px;
  padding: 0;
  font-size: 14px;
  font-weight: 400;
}
.details button{
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.detailHeader{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 16px 0;
}

.detailsCol{
  display: flex;
  flex-direction: column;
}
.detailsRow{
  display: flex;
  flex-direction: row;
  margin: 8px 0;
}
.detailsRowGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 8px 0;
  align-items: center;
}
.detailsOptions{
  display: flex;
}
.detailsOptions button{
  align-items: center;
  background: #fb0a30;
  border-radius: 8px;
  color: #fff;
}
.detailsOptions i{
  font-size: 24px;
}

.detailsBuy .detailsRow{
  display: flex!important;
}

.detailStatus {
  display: flex;
  justify-content: center;
}
.detailStatusBox{
  font-size: 14px;
  padding: 4px;
  border-radius: 8px;
  text-align: center;
  margin: 0 4px 16px;
  width: 280px;
}
.detailBottom{
  margin-bottom: 16px;
}

.detailsReceivables table{
  width: 100%;
}
.detailsReceivables th{
  font-size: 14px;
  font-weight: 400;
}
.detailsReceivables td{
  text-align: center;
}
.detailsReceivablesTable{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  width: 100%;
}

.detailsReceivables .detailsRowGrid{
  text-align: center;
  margin: 8px 16px 24px;
  gap: 16px;
}

.detailsReceivablesBox{
  background-color: #fff;
  border-radius: 12px;
  padding: 20px;
  margin: 0px;
  box-shadow: rgb(235 235 235) 0px 3px 7px;
}

.detailsNumber{
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.detailsReceivables .succeeded, .detailsReceivables .pending, .detailSell .succeeded, .detailSell .pending{
  border: none;
}

#detailsReceivablesOff{
  text-align: center;
  margin: 24px 0;
}

#detailsReceivablesOff h2{
  font-size: 16px;
  padding: 8px 0 4px;
}

#detailsReceivablesOff i{
  font-size: 24px;
}

.detailClient{
  margin-bottom: 24px;
}

.detailsTitle {
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding: 16px 0!important;
  width: 100%;
}

#detailsConsultorContent {
  margin: -24px 0 24px;
}


#detailsBusinessContent{
  margin: -24px 0 16px;
}
