
.content {
    position: absolute;
    width: calc(100% - 200px);
    height: 100%;
    left: 200px;
    padding: 80px;
    box-sizing: border-box;
  }

  .content h3 {
    color: #333;
    font-size: 25px;
  }


  ul.negotiations {
    list-style: none;
    padding: 0; 
    margin: 0;
    overflow-x: auto; /* Adiciona uma barra de rolagem horizontal quando necessário */
    white-space: nowrap; /* Impede que os itens se quebrem para a linha seguinte */
    scrollbar-width: none; /* Firefox: oculta a barra de rolagem */
  }

  ul.negotiations::-webkit-scrollbar {
    display: none; /* Chrome, Safari e outros navegadores Webkit: oculta a barra de rolagem */
  }

  ul.negotiations li {
    display: inline-block;
    margin-right: 5px;
  }

  .open {
    height: auto;
    padding-bottom: 50px;
  }

  .box-negotiation {
    position: relative;
    width: 300px;
    height: auto;
    min-height: 400px;
    border-radius: 12px;
    overflow-x: hidden;
    border: 1px solid gainsboro;
  }

  .profileClient {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 20px auto 0 auto;
    text-align: center;
  }

  .profileClient img {
    position: relative;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }

  .profileClient h4 {
    position: relative;
    color: #333;
    margin: 5px;
    font-weight: 300;
    font-size: 18px;
  }

  .artist,
  .place {
    width: 300px;
    height: auto;
    margin: auto;
    text-align: center;
  }

  .img {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin: auto;
    border-radius: 100px;

  }

  .img img {
    position: absolute; 
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
  }


  .desc {
    vertical-align: top;
    display: inline-block;
    width: 200px;
    height: auto;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid gainsboro;
    white-space:initial;
  }

  .desc h4 {
    font-size: 14px;
    color: #333;
    margin: 0;
    padding: 0;
  }

  .desc h4.data {
    font-size: 13px;
    margin: 20px auto 10px auto;
  }

  .desc h5 {
    font-size: 13px;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 5px;
    font-weight: 300;
  }

  .artist .img {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin-top: 30px;
  }

  .artist .desc {
    margin: 5px auto;
    display: block;
    text-align: center;
  }

  .artist .desc h4 {
    font-size: 18px;
    font-weight: 300;
    padding-top: 5px;
    margin-bottom: 5px;
  }
  
  .artist .desc h3 {
    margin: 0; 
    padding: 0;
  }

  .track {
    height: auto;
    margin-bottom: 20px;
  }

  .timeline {
    position: relative;
    margin: 0;
    margin-top: 40px;
    padding-left: 10px; 
  }

  .timeline-item {
    position: relative;
    height: auto;
    min-height: 50px;
    margin-bottom: 0;
    display: flex;
    padding: 0;
    align-items: top;
  }

  .timeline-item:last-child {
    height: auto;
  }

  .dot {
    position: absolute;
    left: 12px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: gainsboro;
  }

  .dot.green {
      background-color: #05d450;
  }

  .dot.red {
      background-color: red;
  }

  .title {
    display: block;
    color: black;
    font-weight: 500;
    margin-left: 40px;
    margin-bottom: 10px;
  }

  .bts {
    position: relative; 
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .bts button {
    position: relative; 
    display: inline-block;
    width: auto;
    padding: 8px;
    background-color: white;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    /* border: 2px solid transparent; */
    border: 1px solid gainsboro;
  }

  .bts button.black {
    color: #333;
    background-color:#ffd1d5; 
  }

  .bts button.green {
    background-color: #cbddb5;
    color: #333;
  }
  
  .bts button {
    font-weight: 500;
    color:#333;
  }
  
  .bts button:hover {
    font-weight: 500;
     border: 1px solid black;
  }


  /* .bts button:hover {
    border: 2px solid #666;
  }
  .bts button.green:hover {
    border: 2px solid green;
  }
  .bts button.black:hover {
    border: 2px solid red;
  }
  */

  .line {
    position: absolute;
    top: 0;
    left: 18px;
    width: 3px;
    height: 100%;
    background-color: gainsboro;
  }

  .line.green {
    background-color: #05d450;
  }
  
  .info {
    width: 240px;
    font-size: 12px;
    font-weight: 300;
    color: #666;
    padding: 0; 
    margin: 0;  
    overflow: hidden; /* Esconde o texto que ultrapassa o tamanho da div */
    white-space: nowrap; /* Evita que o texto quebre para a próxima linha */
    text-overflow: ellipsis; /* Adiciona as reticências (...) */
  }
  
  .info a {
    font-size: 12px;
    color: blue;
  }

  .chat {
    position: relative;
    width: 200px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    height: auto;
    border: 1px solid #333; 
    padding: 10px 15px;
    margin: 10px auto 30px auto;
    color: #333;
    border-radius: 8px;
    cursor: pointer;
  }

  .chat:hover {
    background-color: ghostwhite;
  }

  .chat img {
    position: relative;
    width: 18px;
    vertical-align: middle;
  }

  
  .support {
    margin: 10px auto 20px auto; 
    font-size: 13px; 
    color: #333;
    cursor: pointer;
    text-align: center;
  }

  ul li {
    vertical-align: top;
  }

  .box-negotiation.success {
    background-color: #f5ffee;
  }

  .box-negotiation.failed {
    background-color: #fbebed;
  }

  .numMsg {
    position: absolute; 
    top: -10px; 
    right: -10px;
    font-size: 11px;
    width: 15px;
    height: 15px;
    background-color: red;
    color: white;
    padding: 8px;
    border-radius: 100px;
  }
  .chat:hover .numMsg {
    transform: scale(1.2); /* Aumenta o tamanho do elemento em 1.5 */
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
  }



/* 

.popup {
text-align: center;
position: absolute;
z-index: 5;
left: 0; 
right: 0;
padding: 0;
margin: auto;
width: 400px;
height: auto;
background-color: white;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); 


}

.popup .headerPop {
position: relative;
padding: 0;
top: 0;
left: 0; 
right: 0;
margin: 15px auto;
padding-top: 5px;
padding-bottom: 20px;
font-size: 15px;
color: #333;
font-weight: 500;
border-bottom: 1px solid #333;
}

.popup .headerPop img {
width: 18px;
vertical-align: middle;
margin-right: 5px;
}

.popup .contentPop {
position: relative;
margin: 30px 30px 30px 30px; 
height: auto;
} */

.closePop {
position: absolute; 
z-index: 2;
top: 0; 
left: 0; 
margin: 15px 20px;
font-size: 16px;
font-weight: 500;
color: #333;
cursor: pointer;
}

.contentPop .msg {
width: 100%;
padding: 20px 0;
margin: auto;
height: 400px;
overflow-x: auto;
scrollbar-width: none; /* Firefox: oculta a barra de rolagem */
border-bottom: 1px solid gainsboro;
}

.contentPop .msg ::-webkit-scrollbar {
display: none; /* Chrome, Safari e outros navegadores Webkit: oculta a barra de rolagem */
}

.contentPop .msg .client,
.contentPop .msg .artist {
margin-bottom: 30px;
font-size: 14px;
font-weight: 300;
}

.contentPop .msg .client {
text-align: left;
width: 100%;
color: #333;
}
.contentPop .msg .client img {
display: inline-block;
width: 30px;
height: 30px;
border-radius: 100%;
margin-right: 5px;
vertical-align: top;
}

.contentPop .msg .artist img {
float: right;
width: 30px;
height: 30px;
border-radius: 100%;
margin-left: 5px;
vertical-align: top;
}

.contentPop .msg .client .text {
display: inline-block;
max-width: 70%;
}

.contentPop .msg .artist {
text-align: right;
width: 100%;
display: block;
color: #333;
}

.sender {
position: relative;
width: 100%;
height: auto;
margin: 30px 0;
}

.sender textarea {
position: relative;
width: calc(100% - 40px); /* Faz a textarea ocupar toda a largura disponível */
min-height: 0;
max-height: 200px; /* Altura máxima para o texto */
overflow-y: hidden; /* Esconde a barra de rolagem vertical */
resize: none; /* Desabilita a redimensionação manual pelo usuário */
border: none;
outline: none;
/* border-bottom: 1px solid #333; */
vertical-align: middle;
font-size: 14px;
margin-bottom: -20px;
}

.sender img {
vertical-align: bottom;
cursor: pointer;
margin-left: 8px;
}

.sender img:hover {
cursor: pointer;
transform: scale(1.2); /* Aumenta o tamanho do elemento em 1.5 */
transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.contentPop .desc {
width: 100%;
margin: 0; 
padding: 0;
padding-bottom: 20px;
/* margin-bottom: 30px; */
text-align: left;
}

.contentPop .desc h4.data {
margin-top: 10px;
}

.contentPop .desc h4 {
  font-weight: 500;
}

.contentPop h3 {
font-size: 20px;
color: #333;
padding-bottom: 20px;
padding-top: 20px;
}


.contentPop h3.counter {
padding-bottom: 0;
}

.proposal input#counteroffer {
border: 0; 
font-weight: 600;
width: 180px;
border-bottom: 1px solid #333;
border-radius: 0; 
font-size: 28px;
}

.proposal {
display: inline-block;
font-weight: 600;
font-size: 28px;
color: #333;
}

.sendProposal {
display: block;
text-align: center;
width: 100%;
margin: 20px 0;
}
.sendProposal button {
width: auto;
background-color: black;
padding: 8px 12px;
margin: 30px auto;

}

.sendProposal h4 {
color: #333;
font-size: 14px;
font-weight: 500;
}

.descProposal  {
text-align: center;
}

.descProposal h4 {
font-size: 14px;
color: #333;
margin: 0;
padding: 0;
}

.descProposal h4.data {
font-size: 13px;
margin: 10px auto 10px auto;
}     

.descProposal h5 {
font-size: 13px;
color: #333;
margin: 0;
padding: 0;
padding-top: 5px;
font-weight: 300;
}

.descProposal img {
width: 80px;
height: 80px;
border-radius: 100px; 
margin: auto;
}

.descProposal h4.clientName {
position: relative;
color: #333;
margin: 5px;
font-weight: 300;
font-size: 18px;
}

.descProposal .place {
margin-top: 20px;
}

h3.initial {
font-size: 28px;
}


@keyframes shake {
0% { transform: translateX(0); }
25% { transform: translateX(-10px); }
50% { transform: translateX(10px); }
75% { transform: translateX(-10px); }
100% { transform: translateX(0); }
}

.shake {
animation: shake 0.2s;
animation-timing-function: ease-in-out;
}

.line.last {
  display: none;
}


@media (max-width: 820px) {
	
	.content {
		position: absolute;
		width: 100%;
		padding: 20px;
	  left: 0;
	}
	
}  