@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&display=swap");

:root {
  /* COLOR */
  --primary-color: #512d89;
  --secondary-color: #7fcfd3;
  --title-color: #0f0324;
  --description-color: #545454;
  --white-color: #ffffff;
  --border-color: #e4e5e7;
  /* TYPOGRAPHY */
  --h1-font-size: 20px;
  --h2-font-size: 16px;
  --normal-font-size: 16px;
  --small-font-size: 13px;
  /* TYPOGRAPHY */
  --body-font: "Be Vietnam Pro", sans-serif;
}

/*========== BASE ==========*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.scroll-container {
  height: 20px;
  overflow-y: scroll;
}

.scroll-content {
  padding: 20px;
}

/* Hide default scrollbar */
::-webkit-scrollbar {
  width: 1px;
  height: 1px;
  padding: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--primary-color);
}

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--title-color);
  line-height: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

h1 {
  font-size: var(--h1-font-size);
  color: var(--title-color);
  font-weight: 600;
}

h2 {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  font-weight: 600;
}

h2.light {
  color: var(--description-color);
}

p {
  font-size: var(--normal-font-size);
  color: var(--description-color);
  margin: 0;
  line-height: 1.6;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--title-color);
}

img {
  max-width: 100%;
  height: auto;
}

/* Common Css*/

.btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: var(--normal-font-size);
  background: var(--primary-color);
  color: var(--white-color);
  transition: all 0.5s ease-in-out;
}

.btn:hover {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: var(--normal-font-size);
  background: var(--secondary-color);
  color: var(--white-color);
}

.btn.disabled,
button.disabled {
  background-color: #dddd !important;
  border-color: var(--bs-btn-disabled-border-color) !important;
  cursor: not-allowed !important;
  color: #535353 !important;
}

.btn.disabled:hover,
button.disabled {
  background-color: #dddd !important;
  border-color: var(--bs-btn-disabled-border-color) !important;
  cursor: not-allowed !important;
  color: #535353 !important;
}

.break-all {
  word-break: break-all;
}

.break-line {
  white-space: pre-line;
  line-height: 1.25;
}

.break-word {
  word-break: break-word;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main {
  display: flex;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}

.body-content {
  width: 100%;
  margin-top: 60px;
  margin-left: 250px;
}

.body-container {
  margin: 50px 0 30px 0;
  padding: 0 30px;
  width: 100%;
}

.page_number {
  display: flex;
  width: 250px;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding-top: 30px;
}

/* Side Navbar */

.side_navbar {
  padding: 50px 0;
  background: var(--white-color);
  box-shadow: 0px 8px 50px rgba(81, 45, 137, 0.08);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.side_navbar .nav {
  margin-top: 40px;
}

.side_navbar .user_profile img {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  margin: auto;
  display: flex;
}

.side_navbar .client_name {
  margin-top: 20px;
  color: var(--title-color);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 20px;
}

.side_navbar .review {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.side_navbar .review .icons {
  color: #ffc700;
}

.side_navbar .nav ul {
  width: 250px;
}

.side_navbar .nav ul li {
  margin-top: 5px;
}

.side_navbar .nav ul li a {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-left: 3px solid transparent;
  color: var(--title-color);
  font-size: 15px;
}

.side_navbar .nav ul li a:hover,
.side_navbar .nav ul li a.active {
  border-left: 3px solid var(--primary-color);
  color: var(--primary-color);
  background: linear-gradient(90deg,
      rgba(127, 207, 211, 0.25) 0%,
      rgba(127, 207, 211, 0) 100%);
}

.side_navbar .nav .icons {
  margin-right: 10px;
}

.navbar-nav .nav-link.active,
.nav-link:hover {
  color: var(--primary-color);
}

/* Top Navbar */
.top_navabr {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
}

.top_navabr .navbar {
  padding: 25px 0;
  background: var(--white-color);
  box-shadow: 0px 8px 50px rgba(80, 45, 137, 0.11) !important;
  height: 80px;
}

.top-nav-content {
  position: absolute;
  right: 50px;
  top: 15px;
}

.top_navabr .navbar .nav-2 {
  display: none;
}

.top-nav-content .icons {
  margin-right: 30px;
}

.top-nav-content .notification {
  position: relative;
}

.top-nav-content .notification::after {
  content: "2";
  position: absolute;
  left: 10px;
  padding: 12px 10px;
  border-radius: 100px;
  font-size: 10px;
  background-color: var(--primary-color);
  color: var(--white-color);
}

/* Body Container */
.post_project {
  width: 100%;
  border: 1px solid var(--border-color);
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
}

.body-container .nav {
  width: 100%;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 20px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.body-container .nav h1 {
  color: var(--title-color);
}

.body-container .nav h1 span {
  color: var(--description-color);
}

.body-container .nav .form-select {
  width: 250px;
}

.create-project {
  width: 100%;
  margin-top: 40px;
}

.create-project .card {
  border: none;
  margin: auto;
  max-width: 450px;
  text-align: center;
}

.create-project .card img {
  width: 80px;
  margin: auto;
}

.create-project .card .card-body {
  margin-top: 20px;
}

.create-project .card .card-body p {
  margin: 20px 0;
}

/* Last proposals received */

.post_project.user {
  width: 100%;
}

.proposals-list {
  max-height: 430px;
  overflow: auto;
}

.proposal-container {
  overflow: hidden;
}

.proposal-container.nopro {
  overflow: visible;
}

.proposals-list .proposal {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-top: 10px;
  cursor: pointer;
}


.proposals-list .proposal:hover {
  background: #E1F2F3
}


.client-reviews {
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  border-top: 1px solid var(--border-color);
  margin-top: 10px;
}

.proposals-list .proposal.client {
  padding: 0;
  border: 0;
}

.client-reviews .reply {
  margin-top: 30px;
  font-weight: 500;
  color: var(--primary-color);
}

.freelancer-img img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.proposals-list .proposal .user {
  display: flex;
  align-items: center;
}

.proposals-list .proposal .user .freelancer-img {
  width: 50px;
}

.proposals-list .proposal .user .proposal-info {
  width: calc(100% - 120px);
  padding: 0 15px;
}

.proposals-list .proposal .proposal-info .name {
  font-size: var(--small-font-size);
  font-weight: 600;
}

.proposals-list .proposal .proposal-info .project,
.proposals-list .proposal .proposal-info .messages {
  font-size: var(--small-font-size);
  color: var(--description-color);
}

.proposals-list .proposal .proposal-info .ellipsis {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  white-space: pre-line;
  word-break: break-all;
}

.proposals-list .proposal .proposal-info .date {
  font-size: 8pt;
  color: #999;
  font-weight: normal;
}

.proposals-list .proposal .day {
  width: 70px;
}

.proposals-list .proposal .day p {
  font-size: var(--small-font-size);
  color: var(--description-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.proposals-list .icons {
  margin-left: 5px;
  font-size: 10px;
}

/* Card Section Css */

.card-list {
  margin-top: 20px;
  text-align: center;
}

.card-list .card-row {
  display: flex !important;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}

.card-list .section-title h1 {
  margin: 10px 0;
}

.card-list .card-row {
  margin-top: 20px;
}

.card-list .card {
  padding: 30px 10px;
  box-shadow: 0px 8px 50px rgba(81, 45, 137, 0.08);
  border-radius: 16px;
  border-color: var(--border-color);
  position: relative;
  margin-right: 30px;
  margin-top: 20px;
  height: 100%;
}

.card-list .card::after {
  content: url("../img/next.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 108%;
  transform: translate(-50%, -108%);
}

@media screen and (max-width: 1650px) {
  .card-list .card::after {
    position: absolute;
    top: 50%;
    left: 112%;
    transform: translate(-50%, -112%);
  }
}

.card-list .card.ex-icon::after {
  display: none;
}

.card-list .card .card-icons {
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 100px;
  padding: 20px;
  text-align: center;
  max-width: 50px;
  max-height: 50px;
}

.card-list .card .card-body {
  height: 100%
}

.card-list .card .card-body h2 {
  margin: 15px 0;
  color: var(--title-color);
}

.card-list .card .card-body p {
  color: var(--description-color);
}

/* Active Project */

.no_proposal {
  margin: auto;
  width: 250px;
  text-align: center;
  margin-top: 80px;
}

.no_proposal h2 {
  margin-top: 20px;
  color: var(--title-color);
}

.post_project-active {
  border: 1px solid var(--border-color);
  height: 500px;
  overflow: hidden;
}

.proposals-list,
.active-project-group {
  width: 100%;
  height: 415px;
  overflow: auto;
  padding-bottom: 15px;
}

.active-project-group.nopro {
  display: flex;
  align-items: center;
}

.active-project {
  padding: 0 20px;
  width: 100%;
  overflow: auto;
}

.active-project .card {
  padding: 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 15px;
  cursor: pointer;
}

.active-project .card h2 {
  word-break: break-word;
}

.active-project .card:hover {
  background: #E1F2F3
}

.active-project .card p {
  font-size: var(--small-font-size);
  color: var(--title-color);
  font-weight: 600;
}

.active-project .card h2 {
  font-size: 16px;
  width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 1rem;
}

.active-project .card p span {
  color: var(--description-color);
}

.active-project .card a {
  font-size: var(--small-font-size);
  font-weight: 600;
}

.active-project .card .name {
  width: 35%;
  padding-right: 1rem;
}

.active-project .card .date {
  width: 25%;
  padding-right: 1rem;
  text-align: center;
}

.active-project .card .count {
  width: 20%;
  padding-right: 1rem;
  text-align: center;
}

.active-project .card .status {
  width: 20%;
  padding-right: 1rem;
  text-align: center;

}

.project-list {
  padding-top: 62px;
}

/*=========================================== 
Find Talent Page
===========================================*/

.talent-page {
  width: 100%;
  overflow-y: auto;
  padding-top: 95px;
}

.client-page {
  height: 100%;
  overflow-y: hidden;
  overflow-x: auto;
}

.p-info {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  margin-top: 50px;
  flex-wrap: wrap;
}

.p-info p {
  font-size: 18px;
  color: var(--description-color);
  font-weight: 600;
}

.p-info p span {
  font-size: 18px;
  color: var(--primary-color);
  font-weight: 600;
  margin-left: 10px;
}

@media screen and (max-width: 1850px) {
  .client-page {
    height: 100%;
    overflow-y: hidden;
    overflow-x: auto;
  }
}

.body-container .element .nav {
  border: 1px solid var(--border-color) !important;
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  border-radius: 8px;
  background-color: var(--white-color);
}

.body-container .tab {
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  padding: 20px 20px;
  background-color: var(--white-color);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.body-container .section {
  border: 1px solid var(--border-color);
  border-radius: 0 0 8px 8px !important;
  padding: 20px;
}

.search-box-container {
  background: white;
  margin-top: -50px;
  position: fixed;
  padding-top: 50px;
  padding-bottom: 0px;
  width: calc(100% - 310px)
}

.search-box {
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid var(--border-color);
  border-radius: 100px;
  max-width: 320px;
}

.search-box input[type="text"] {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 300px;
  border-radius: 30px;
  margin-right: 2px;
  outline: none;
}

.search-box button[type="submit"] {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  border-radius: 100px;
}

.search-box button[type="submit"]:hover {
  background-color: #3367d6;
}

.fa-search {
  font-size: 18px;
}

.talent_profile {
  padding: 20px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 100%;
}

.contact {
  margin-top: 20px;
}

.talent_profile .talent-info img {
  margin-right: 5px;
}

.freelancer_img {
  width: 100px;
  height: 100px;
  border-radius: 10000px;
}

.talent-info {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.freelancer_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}

.freelancer {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.freelancer a {
  min-width: 100px;
}

.freelancer_info span.btn {
  cursor: default;
}



.talent_profile .talent-info .down-icons-list,
.talent_profile .talent-info .down-icons-list .star,
.talent_profile .talent-info .down-icons-list .ex_icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.talent_profile .talent-info .down-icons-list {
    margin-top: 5px;
    flex-wrap: wrap;
    gap: 10px;
}

.talent_profile .talent-info .down-icons-list .ex_icon span {
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    border-radius: 100px;
    padding: 15px;
    text-align: center;
    max-width: 20px;
    max-height: 20px;
    margin-right: 10px;
    cursor: pointer;
}

.talent_profile .talent-info .down-icons-list .ex_icon span:last-child {
    margin-right: 0;
}

.cert_av,
.talent_profile .talent-info .down-icons-list .ex_icon span.cert_av {
    background: #f3ebfd;
    color: #5f3799;
    border: 1px solid #5e37995d;
}

.cert_ap,
.talent_profile .talent-info .down-icons-list .ex_icon span.cert_ap {
    background: #ffde4e;
    color: #94730b;
    border: 1px solid #94730b;
}

.cert_av,
.cert_ap {
    border-radius: 100px;
    padding: 20px;
}

.talent_profile .talent-info .down-icons-list .ex_icon span:nth-child(3) {
    background: #e6f9fb;
    color: #7bc3c9;
    border: 1px solid #7bc2c956;
}

.talent_profile .talent-info .down-icons-list .ex_icon span .icons {
    font-size: 12px;
}

.talent_profile .talent-info .down-icons-list .star {
    margin-left: -2px;
}

.talent_profile .talent-info .down-icons-list .star>.rating {
    margin-left: 5px;
    font-size: 10pt;
    vertical-align: middle;
}

.talent_profile .talent-info .down-icons-list .star .icons {
    margin: 0 2px;
    color: #ffc700;
}

.talent_profile .talent-info .down-icons-list .star p {
    margin-left: 5px;
}

.talent_profile .talent-info .country {
    margin-top: 6px;
    font-size: 14px;
}

.talent_profile .talent-info .down-icons-list .country img {
  margin-left: 15px;
  margin-right: 10px;
}

.talent_profile .about-freelancer {
  width: 100%;
  margin-top: 30px;
  color: var(--description-color);
}

.about-freelancer p {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.talent_profile .keywords-group {
  margin-top: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.talent_profile .keywords-group .ky_btn {
  font-size: var(--small-font-size);
  padding: 10px 16px;
  background: rgba(81, 45, 137, 0.05);
  border-radius: 100px;
  font-weight: 600;
  margin-right: 10px;
  line-height: 1;
}

.text__content {
  max-height: 81px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}


.text__content2 {
  max-height: 250px;
  overflow-x: auto;
  /*transition: max-height 0.3s ease; */
}

.description_part .wrap-box p,
.wrap-box.short p {
  -webkit-line-clamp: 3;
  /* font-size: 14px; */
}


#toggleButton,
#toggleButton2 {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
}

.text__content.showLess,
.text__content2.showLess {
  max-height: 100%;
}

.talent-page.freelancer_profile {
  overflow-x: auto;
}


/*=========================================== 
Talent Profile Page
===========================================*/

.about_us {
  padding: 20px;
  margin-top: 30px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.about_us .section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}


.about_us p {
  margin-top: 10px;
  color: var(--description-color);
}

.freelancer_profile {
  height: 100%;
}

.seller_review {
  margin-top: 30px;
}

.seller_review .section {
  color: var(--description-color)
}

.seller_review .section {
  font-size: 18px;
}

.seller_review .post_project,
.seller_review .proposals-list {
  height: auto !important;
}

.seller_review .ratting {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seller_review .proposals-list .proposal .user .proposal-info p.name {
  font-size: 16px !important;
  font-weight: 600;
}

.seller_review .ratting p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

.seller_review h1.ratting_number {
  font-size: 16px;
  color: var(--description-color);
}

.seller_review .ratting p,
.seller_review .ratting p .icons,
.seller_review .ratting p img {
  margin-right: 10px;
  font-size: var(--small-font-size);
  color: var(--primary-color);
  font-weight: 600;
}

.seller_review .icons {
  color: #ffc700;
}

.seller_review .post_project .nav {
  border: none !important;
}

.seller_review .nav h1.ratting_number .icons {
  color: #ffc700;
  margin-right: 10px;
}

.seller_review .freelancer-img img {
  width: 70px;
  height: 70px;
  border-radius: 100px;
}

/*=========================================== 
Project Page
===========================================*/
.project-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-container .left {
  width: calc(65% - 20px);
  flex-grow: 1;
}

.project-container .right {
  width: 35%;
  flex-grow: 1;
  align-self: center;
}

.project_area {
  border: 1px solid var(--border-color);
  padding: 20px 20px;
  border-radius: 8px;
}

.project_area .project_info .project_heading {
  margin-bottom: 10px;
}

.project_area .project_info h2 {
  margin-bottom: 15px;
}

.project_area .date {
  margin-top: -10px;
  font-size: var(--small-font-size);
  font-weight: normal;
  font-style: italic;
  color: #999;
}

.project_area .box {
  border: 1px solid var(--border-color);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
  border-radius: 8px;
}

.project_area .status.box .btn {
  cursor: default;
}

.project_area .box .proposal_number {
  margin-top: 20px;
  font-size: 28px;
}

.project_area .box .btn {
  background: var(--primary-color);
  margin-left: 20px;
}

.contact .btn_part {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact .btn_part .icons_group .icons {
  padding: 10px;
  border-radius: 100px;
}

.contact .btn_part .icons_group .icons:nth-child(1) {
  background: var(--primary-color);
  color: var(--white-color);
}

.contact .btn_part .icons_group .icons:nth-child(2) {
  background: var(--secondary-color);
  color: var(--white-color);
}


.project_info .wrap-box p,
.project_info .clamp-text {
  font-size: 14px;
}

/* Private-Info Page */

.private-info {
  position: relative;
  left: 50%;
  top: 75%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100vh;

}

.private-info img {
  width: 300px;
  height: auto;
  display: flex;
  margin: auto;
}

.private-info .text {
  max-width: 550px;
  margin: auto;
  text-align: center;
}

.btn-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn-group .btn.btn_2 {
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--title-color);
}

.btn-group .btn.btn_2:hover {
  background-color: #e4e5e7;
}

.btn.btn-cancel {
  background: #cd2334;
  color: white;
}

.btn.btn-cancel:hover {
  border: 1px solid var(--bs-danger-border-subtle);
  background: #e35d6a;
}

.btn.bg-secondary:hover {
  background-color: #999 !important;
}

.btn.btn-warning {
  background: #cda223;
  color: white;
}

.btn.btn-warning:hover {
  border: 1px solid var(--bs-warning-border-subtle);
  background: #e0ba48;
}


/* .btn.bg-success:hover {
  background-color: #1ea566 !important;
} */

/*=========================================== 
Popup
===========================================*/

.modal-open .modal {
  padding-left: 0 !important;
}

.modal.show .modal-dialog {
  padding: 20px;
  padding-left: 5px;
}

.modal-dialog {
  width: 850px;
  max-width: 100%;
  border-radius: 8px;
}

h2.modal-title {
  font-size: 18px;
}

.modal-title span {
  font-size: 16px;
  font-weight: 400;
  color: var(--description-color);
}

.modal em {
  font-weight: bold;
  font-style: normal;
  color: #dc3545;
  font-size: 8pt;
  margin: 10px 0px;
  display: none;
  line-height: 1;
}

.modal-content {
  background: var(--white-color);
  border-radius: 8px;
}

.btn-close {
  opacity: 1;
  background: transparent;
  border: none;
  font-size: 22px;
  color: var(--title-color);
  --bs-btn-close-focus-opacity: 0;
}

/* Proceed Popoup */

#proceed .modal-dialog,
#released .modal-dialog {
  width: 450px;
}

.proceed .btn-group {
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.proceed .btn-group div {
  width: auto;
}

.proceed a.btn {
  min-width: 200px;
}

.released {
  text-align: center;
}

/* Support Popup */

.user-info .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.user-info .item {
  margin-top: 30px;
  width: 100%;
}

.user-info .item.error em {
  display: block;
}

.user-info .item.error {
  color: #dc3545
}

.user-info .item.error input,
.user-info .item.error textarea {
  border-color: #dc3545;
  color: #dc3545;
}

.user-info .item.error label p {
  color: #dc3545;
}

.user-info .btn {
  /* margin-top: 30px; */
  border-radius: 1000px;
  /* width: 100%; */
}

.items input, .items select {
  padding: 12px 12px;
  border-radius: 10px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  width: 100%;
  box-sizing: border-box;
  color: var(--description-color);
  margin-top: 20px;
}

.items textarea {
  padding: 12px 15px;
  border-radius: 16px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  width: 100%;
  box-sizing: border-box;
  color: var(--description-color);
  margin-top: 20px;
}

.items .check-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
}

input[type="checkbox"] {
  accent-color: var(--primary-color);
}

/* Create Project Popup */

.checkbox_item {
  display: flex;
}

.items .checkbox {
  width: auto;
  margin-top: 0;
  margin-right: 15px;
}

/* Notification Popup */
.notification {
  overflow: auto;
  height: 500px;
}

.notification .sourch,
.notification .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification .item {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-top: 20px;
  opacity: 0.4;
}

.notification .item.active {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  background: var(--white-color);
  margin-top: 20px;
  opacity: 1;
}

.notification .sourch img {
  margin-right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.notification .sourch .text {
  margin-top: -8px;
}

.notification .sourch .text p {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--title-color);
}

/* Edit Profile Popup  */
.upload-img {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.upload-img>div {
  display: flex;
  flex-direction: column;
  align-items: baseline;
}

.upload-img img {
  height: 170px;
  width: 170px;
  border-radius: 100px;
  background: var(--border-color);
}

.empty-image {
  border-radius: 100px;
  background: var(--border-color);
}

/* Responcive Part */


@media screen and (min-width: 1350px) {
  .body-container.dashboard {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 1350px) {
  .body-content {
    margin-left: 0;
  }

  .side_navbar {
    display: none;
  }

  .navbar-toggler {
    display: block !important;
  }

  .card-list .card::after {
    display: none;
  }

  .card-list .card {
    width: 100%;
    margin-right: 0;
  }

  .EXXX {
    position: fixed;
  }


  .top_navabr .navbar .nav-2 {
    display: block !important;
    background: var(--white-color);
    margin-top: 30px;
    height: 100vh;
    padding: 30px 30px;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
  }

  navbar-collapse.collapse.show .top_navabr .navbar .nav-2 {
    display: block;
  }

  .top_navabr .navbar .nav-2 li {
    margin-top: 20px;
  }

  .top_navabr .navbar .nav-2 li .icons {
    margin-right: 10px;
  }

  .search-box-container {
    width: calc(100% - 60px)
  }
}


@media screen and (max-width: 991px) {

  .body-container {
    margin-left: 0;
  }

  .project-container .left {
    width: 100%
  }

  .project-container .right {
    width: 100%
  }

  .post_project.user {
    margin-top: 20px;
  }


  .active-project-group,
  .post_project-active {
    height: 100% !important;
  }

  .active-project-group {
    padding-bottom: 20px;
  }

  .proposals-list {
    max-height: 100%;
  }
}

@media screen and (max-width: 800px) {
  .card-list .card-row .card {
    width: 100%;
    overflow: hidden;
  }

  .card-list .card-row img {
    rotate: 90deg;
  }

  .body-container .nav {
    display: block !important;
  }

  .body-container .nav .form-select {
    margin-top: 20px;
    width: 100% !important;
  }

}

@media screen and (max-width: 768px) {
  .proposals-list .client-reviews {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .active-project .card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    cursor: pointer;
  }

  .active-project .card:hover {
    background: #E1F2F3
  }

  .active-project .card h2 {
    width: auto;
    word-break: break-all;
  }


  .active-project .card .name {
    width: auto;
    word-break: break-all;
    padding-right: 1rem;
  }

  .active-project .card .date {
    width: auto;
  }

  .active-project .card .count {
    width: auto;
  }

  .active-project .card .status {
    width: auto;
  }

  .talent_profile {
    display: flex;
    flex-direction: column;
  }

  .search-box input[type="text"] {
    width: 100%;
  }

  .search-box-container>.nav .form-select {
    width: 100%;
  }

  .body-container .element .nav .search-box {
    max-width: 100% !important;
    margin-top: 20px;
  }

  .seller_review .nav h1.ratting_number {
    margin-top: 20px;
  }
}


@media screen and (max-width: 991px) {
  .body-container .element .nav .search-box {
    max-width: 100% !important;
    margin-top: 20px;
  }

  .search-box input[type="text"] {
    width: 100%;
  }

  .search-box-container>.nav .form-select {
    margin-top: 10px;
    width: 100%;
  }

  .search-box-container>.nav .search-field {
    margin-top: 10px;
  }

  .search-box-container .nav {
    display: block !important;
  }

  .talent-page {
    padding-top: 165px;
  }

  .project-list {
    padding-top: 100px;
  }

}

@media screen and (max-width: 850px) {

  .admin-buttons-v,
  .admin-buttons-h {
    width: 100%;
  }

  .talent_profile .btn {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .proceed .btn-group div {
    width: 100%;
  }

  .top-nav-content {
    right: 16px !important;
  }

  .body-content {
    margin-top: 50px;
  }

  .body-container {
    padding: 0 20px;
  }

  .notification .item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
  }

  .talent-page.freelancer_profile {
    height: 100%;
  }

  .client-page {
    height: 100%;
    overflow-y: hidden;
    overflow-x: auto;
  }

  .day {
    margin-top: 10px;
  }

  .search-box-container {
    width: calc(100% - 40px);
  }
}

@media screen and (max-width: 516px) {
  .talent-page {
    padding-top: 190px;
  }
}

@media screen and (max-width: 400px) {
  .proposals-list .proposal {
    align-items: self-start;
  }

  .proposals-list .proposal .user .proposal-info {
    margin-left: 0;
  }

}

@media screen and (max-width: 316px) {
  .talent-page {
    padding-top: 215px;
  }
}

.project_area .talent_profile {
  border: none;
  padding: 5px 10px;
}



.loading_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

a.link {
  text-decoration: underline;
  cursor: pointer;
  color: var(--primary-color);
}

a.link:hover {
  text-decoration: underline;
  cursor: pointer;
  color: var(--bs-primary-text-emphasis);
}

input:read-only,
textarea.disabled,
input[type="text"].disabled {
  color: #545454;
  background: #eee;

}

.clamp-text {
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.wrap-box {
  color: var(--description-color);
}

.wrap-box p {
  display: -webkit-box;
  font-size: var(--normal-font-size);
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  -webkit-box-pack: end;

}

.wrap-box p {
  display: -webkit-box;
  font-size: var(--normal-font-size);
  -webkit-line-clamp: 12;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
  -webkit-box-pack: end;

}

.wrap-box.unclamp p {
  -webkit-line-clamp: unset;
}

.wrap-box label:after {
  content: "Ver mais"
}

.wrap-box.unclamp label:after {
  content: "Ver menos"
}

.wrap-box label {
  margin-top: 1rem;
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  display: none;
  padding-bottom: 12px;
}

.alert {
  padding: 20px 10px;
  line-height: 1.6;

}

.btn.contact-released {
  cursor: not-allowed;
  background-color: var(--secondary-color);
}

.text-small {
  font-size: 9pt;
  font-style: italic;
}

.admin-buttons-v {
  display: flex;
  gap: 10px;
  flex-direction: column
}

.admin-buttons-h {
  display: flex;
  gap: 10px;
  flex-direction: row-reverse;
  justify-content: center;
  flex-wrap: wrap;
}

.admin-buttons-h>a {
  margin: 0;
}


.btn-small {
  padding: 4px 8px;
}

.btn-small:hover {
  padding: 4px 8px;
}

.sm_sclient_img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.sm_sclient_img img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
}

.sm_sclient_img p {
  font-size: 16px;
  font-weight: 600;
}

.center-block {
  height: calc(100vh - 140px);
}

.center-block>div {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;

}

@media screen and (min-width: 991px) {
  /* .video_class .video {
      padding: 0 10px;
  }

  .video_class .video:first-child {
      padding-left: 0;
  }

  .video_class .video:last-child {
      padding-right: 0;
  } */
}

.video_class {
  overflow: hidden;
}

.video_class .row {
  /* margin-left: 0;
  margin-right: 0; */

}

.video_class .card .card-body {
  padding: 0;
  margin-top: 5px;
}

.video_img_container {
  position: relative;
  padding-bottom: 56.25%;
  background-color: var(--border-color);
}

.video_img {
  position: absolute;
  width: 100%;
  height: auto;
  border-image: fill;
}


.video_class .card {
  border: none;
}

.video_class .card .card-body h4 {
  font-size: 16px;
  margin-bottom: 0px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.video_class .card .card-body p {
  font-size: 13px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}


.video-container {
  display: block;
  max-width: 960px;
  max-height: 540px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.iframe-embed {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
}

.iframe-embed-wrapper {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.iframe-embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

@media (min-width: 960px) {

  .video-title {
    width: 960px;
    margin: 0 auto;
    text-align: center;
  }

}

.video-title {
  margin-bottom: 1rem;
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 10px;
}

.author-name {
  font-size: 18px;
}

.video-details {
  margin-top: 20px;
}

.video-details ul {
  line-height: 1;
  list-style-type: disc;
  padding-left: 2rem;
}


.video-description {
  font-size: 16px;
}

.comments-section {
  margin-top: 10px;
}

.comments-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.comments-list {
  list-style-type: none;
  padding: 0;
}

.comment {
  margin-bottom: 10px;
}

.comment .comment-text {
  margin-bottom: 5px;
}

.comment .comment-reply {
  margin-left: 20px;
}

.comment-form {
  margin-top: 20px;
}

.comment-input {
  width: 100%;
  height: 60px;
  padding: 12px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.comments .box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-bottom: 1px solid var(--border-color);
  padding: 20px 0;
}



@media (max-width: 767px) {
  .video-container {
    height: auto;
  }

  .comments .box {
    display: block;
    text-align: center;
  }

  .comments .box img {
    margin-bottom: 10px;
  }

  .comments .box .name {
    margin-bottom: 3px;
  }

  .comments .box .dsc {
    text-align: left;
  }

  .comments .wrap-box {
    text-align: left;
  }

  .comments .box .name span {
    display: block;
    padding: 0;
    margin: 0 !important;
  }
}

.comments .box img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  min-width: 50px;
}

.comments .box .name {
  font-weight: 600;
  font-size: 14px;
}


.comments .box .dsc {
  font-size: 13px;
}

.comments .box .name span {
  font-weight: 400;
  font-size: 12px;
  margin-left: 10px;
  font-style: italic;
  color: #999;
}

.comments .under-review {
  font-size: 14px;
  font-style: italic;
  color: #ffac07;
  font-weight: 500;
  text-align: left;
}

.comments .inactive {
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  text-align: left;
  color: RGBA(220, 53, 69, var(--bs-bg-opacity, 1));
}

.section ul,
.section li {
  line-height: 1.5rem;
  padding-left: 0.5rem;
}

li svg {
  margin-right: 0.5rem;
}

li svg {
  margin-right: 0.5rem;
}

.section.plan {
  color: var(--description-color);
  font-size: 15px;
}

.text-orange {
  color: #ff9933 !important;
}

.alert-orange {
  --bs-alert-color: #853500;
  --bs-alert-bg: #ffaf5f;
  --bs-alert-border-color: #ff9933;
  --bs-alert-link-color: #853500;
}

.text-orange {
  color: #ff9933 !important;
}

.bg-orange {
  background: #ff9933 !important;
}
 
.stati {
  background: #fff;
  padding: 1em;
  margin: 1em 0;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  text-align: center;
  line-height: 1.6rem;
  font-size: 14px;
  font-weight: 600;
  color: var(--description-color);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stati h2 {
  padding-top: 0.5rem;
  color: var(--primary-color);
}



.accordion {
  --bs-accordion-btn-bg: #e4daf3 !important;
  --bs-accordion-active-bg: #d3c4ec !important;
  --bs-accordion-btn-focus-border-color: #d3c4ec !important;
  --bs-accordion-active-color: var(--text-color);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(211, 196, 236, 0.25)
}

.accordion-item {
  font-size: 8px;
  margin-bottom: 0.5rem;
  border-bottom: 0;
}

.accordion-button {
  z-index: 0 !important;
}

.accordion-button:hover {
  background-color: #d3c4ec
}

.accordion-button {
  font-size: 14px;
  font-weight: bold;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.accordion-button>.d-flex {
  gap: 10px;
}

.accordion-button .svg-inline--fa {
  font-size: 18px;

}

.accordion-body {
  padding: 0;
  padding-top: 0.5rem;
}

.accordion-body p:hover {
  cursor: pointer;
  background: #7fcfd333;
  color: var(--primary-color);
}

.accordion-body p.active {
  background: #7fcfd333;
  color: var(--primary-color);
}


.accordion-body p .svg-inline--fa {
  top: 2px;
  position: relative;
  color: #333;
  font-size: 18px;
}

.accordion .svg-inline--fa {
  background: #fff;
  border-radius: 100%;
}

.accordion .svg-inline--fa.complete {
  color: #6ab04c
}

.accordion-body p {
  padding: 0.5rem;
  align-items: baseline;
  font-size: 14px;
  /* margin-top: 1rem; */
  gap: 10px;
  margin-bottom: 2px;
}
