@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
body {
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  background-color: #f8f8f8;
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  opacity: 1;
  transition: opacity 2s ease-in-out;
}
/* body.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
} */
body.fade-out {
  transform: translateY(50px);
  opacity: 0;
  transition: opacity 2s ease, transform 0.5s ease;
}

::-webkit-scrollbar {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 15px;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 99;
}
@media screen and (min-width: 960px) {
  header .navbar {
    padding: 15px 50px;
  }
  
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: black;
  max-width: 90px;
  width: 100%;
}
.logo img {
  width: 100%;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffcc99; /* Light orange */
}

/* .cart {
    width: 35px;
    height: 35px;
    border: 2px solid #ffcc99;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #ffcc99;
    font-size: 18px;
} */
.footer {
  background-color: #24262b;
  padding: 70px 0;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
}
.footer-col h4 {
  font-size: 18px;
  color: #ffffff;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 500;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
  text-decoration: none;
  font-weight: 300;
  color: #bbbbbb;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  /* background-color: rgba(255, 255, 255, 0.2); */
  background: #24262b;
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: #ffffff;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
  }
}
@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

footer .container {
  max-width: 1170px;
  margin: auto;
}
footer .row {
  display: flex;
  flex-wrap: wrap;
}
footer ul {
  list-style: none;
}

/* Side Bar CSS */

.sidebar-hamburger:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../Images/sidebar.svg) no-repeat center;
  display: block;
  background-size: cover;
}
/* Sidebar styling */
.sidebar {
  position: absolute;
  top: 0;
  left: -270px; /* Initially off-screen to the left */
  /* height: 100%; */
  max-width: 270px;
  width: 100%;
  background: #fff;
  transition: left 0.3s ease, visibility 0s linear 0.3s, opacity 0.3s ease; /* Transition left and opacity */
  visibility: hidden; /* Initially hidden */
  opacity: 0; /* Fully transparent */
  z-index: 9999; /* Ensure it appears above other content */
}

/* Sidebar when visible */
.sidebar.show {
  left: 0; /* Move the sidebar to the left edge */
  visibility: visible; /* Make it visible */
  opacity: 1; /* Make it fully opaque */
  transition: left 0.3s ease, opacity 0.3s ease; /* Transition for left and opacity */
}

@media screen and (min-width: 960px) {
  .sidebar {
    display: block; /* Always show on larger screens */
    visibility: visible; /* Ensure visibility on larger screens */
    opacity: 1; /* Always fully visible */
    left: 0; /* No sliding, just position it normally */
    position: unset;
  }
  .sidebar-hamburger {
    display: none;
  }
}

.sidebar .sidebar-nav {
  padding: 40px 20px;
}

.sidebar-nav ul {
  list-style: none;
}
.sidebar-nav li {
  padding: 10px;
  border-radius: 8px;
  /* border: 1px solid; */
}

.sidebar-nav li:hover {
  background: #24262b;
  color: #fff;
}
.sidebar-nav li.active {
  background: #24262b;
  color: #fff;
}
.sidebar-nav li.active a {
  color: #fff;
}

.sidebar-nav li a {
  color: #24262b;
  text-decoration: none;
  display: block;
  height: 100%;
}
.sidebar-nav li:hover a {
  color: #fff;
}
.user-profile {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.user-profile-image {
  margin-right: 10px;
}
.user-profile-details {
  margin-left: 10px;
}
.user-profile-details p {
  color: #696867;
}
.user-profile-image img:hover{
  opacity:0.8;
}
.user-profile-image img {
  max-width: 60px;
  width: 100%;
  border: 1px solid #24262b;
  border-radius: 50%;
}
.main-container {
  display: flex;
  
}
.main-container::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

/* BUYER ENROLLMENT(EXISTING BUYERS) CSS STARTS HERE */

.table-container {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  /* max-height: 550px; */
  /* height: 100%; */
  /* background-color: black; */
  /* overflow: scroll; */
  /* background-color: black; */
}
.responsive-table a,.table-header {
  border-radius: 3px;
  padding: 25px 30px;
  /* display: flex; */
  /* justify-content: space-between; */
  margin-bottom: 15px;
}
.responsive-table> a{
  text-decoration:none;
  color:black;
  display:flex;
  flex-direction:row;
  justify-content:center;
  align-items:center;
}

.responsive-table .table-header {

  position: sticky;
  top: 0px;
  background-color: #95a5a6;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  z-index: 10; /* Ensures the header stays above other elements */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.responsive-table .table-row {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
}

.responsive-table .col-1,.col-2,.col-3,.col-4,.col-5 {
  flex-basis: 20%;
  text-align:center;
  border-right:1px solid black;
  margin-right:5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
  padding:0 10px;
}
.responsive-table .col-5{
  /* border-left:1px solid black; */
  border-right:none
}
.responsive-table .col-4{
  flex-basis:15%;
}
.responsive-table .col-3{
  flex-basis:25%;
}
.responsive-table .col-5{
  margin-right:0;
  box-sizing:border-box;
}
.buttonWrapper{
  max-width:100%;
  width:100%;
  max-height:100%;
  height:100%;
  /* margin:0 5px; */
  /* background-color:red; */
  display:flex;
  justify-content:space-evenly;
  align-items:center
  /* flex-direction */
}
.buttonWrapper button .bx{
  /* width:100px */
  padding:0;
  font-size:16px;
}
@media all and (max-width: 767px) {
  /* .responsive-table .table-header {
    display: none;
  } */

  .responsive-table a {
    display: block;
  }

  .responsive-table .col {
    flex-basis: 100%;
  }

  .responsive-table .col {
    display: flex;
    padding: 10px 0;
  }

  .responsive-table .col-1, .col-2,.col-3,.col-4,.col-5{
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligns content to the top */
    align-items: flex-start; /* Aligns text to the left */
    text-align: left; /* Ensures text is left-aligned */
    padding-left: 10px; /* Adds some spacing for better readability */
    border:none
}
/* .responsive-table .col-5{
  border:none;
  display: flex;
  flex-direction: row;
  justify-content:none;
  align-items:none
} */

  .responsive-table .col:before {
    color: #6c7a89;
    padding-right: 10px;
    content: attr(data-label);
    flex-basis: 50%;
    text-align: right;
  }
}

.add-buyer-container {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
  margin-right: 15px;
}

/* Add Buyer Button */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0; /* Proper spacing above and below */
  padding: 0 10px;
}

/* Title styling */
.header-container h2 {
  margin: 0;
  font-size: 26px;
  font-weight: bold;
}

/* Add Buyer Button */
.add-buyer-btn {
  background-color: #ff9800;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s ease;
  text-decoration: none;
}

.add-buyer-btn:hover {
  background-color: #e68900;
}

/* Responsive Design */
@media all and (max-width: 767px) {
  .header-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .add-buyer-btn {
      margin-top: 10px;
      width: 100%; /* Full width button for mobile */
      max-width: 300px;
  }
}

/* BUYER ENROLLMENT(EXISTING BUYERS) CSS ENDS HERE */

/* BUYER ENROLLMENT(NEW BUYERS) CSS STARTS HERE */

/* .buyerEnrollContainer {

  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 550px;
  height: 100%;
  background-color: black;
  overflow: scroll;
  background-color:red;
} */

.buyerEnrollContainer {
  max-width: 1000px;
  width: 100%;
  background-color: #ffff;
  padding: 20px;
  /* overflow: scroll; */
  border-radius: 10px;
  margin:15px auto;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  /* max-height:550px; */
  /* overflow:scroll; */
}


.buyerEnrollContainer .buyerEnrollTitle {
  font-size: 25px;
  font-weight: 500;
  position: relative;
  /* background-color:#ffff !important; */
  /* position:sticky;
  top:0;
  z-index:999; */
}

.buyerEnrollContainer .buyerEnrollTitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 230px;
  border-radius: 5px;
  background-color:#24262b;
}

.content form .user-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
  /* max-height: 400px; */
  /* height: 100%; */
  /* background-color: red; */
  overflow:scroll;
}

 .input-box {
  margin-bottom: 15px;
  /* background-color: red; */
  overflow: scroll;
  width: calc(100% / 2 - 20px);
}

form .input-box span.details, form .td-fields span.details {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

 .input-box input, .input-box textarea, .td-fields input, .input-box select {
  height: 45px;
  width: 100%;
  outline: none;
  font-size: 16px;
  border-radius: 5px;
  padding-left: 15px;
  border: 1px solid #ccc;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

 .input-box input:focus, .input-box input:valid,
 .input-box textarea:focus, .td-fields input:focus,
 .input-box textarea:valid, .td-fields input:valid{
  border-color: #9b59b6;
}

.formActionBtn {
  /* height: 45px; */
  margin-bottom: 10px;
  /* background-color:red; */
  display:flex;
  justify-content:space-between;
  align-items:inline-block;
  /* background-color:red; */


}

.formActionBtn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}

.formActionBtn .button-left a, .viewBuyerButton .button-left a,
.formActionBtn .button-right input {
  /* font-size: 18px; */
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 45px; /* Force both buttons to have the same height */
  /* display: flex; */
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 5px;
}

/* Cancel Button */
.formActionBtn .button-left a, .viewBuyerButton .button-left a {
  border: 2px solid red;
  color: red;
  background-color: white;
}

.formActionBtn .button-left a:hover, .viewBuyerButton .button-left a:hover {
  background-color: red;
  color: white;
  transform: scale(1.01);
}

/* Register Button */
.formActionBtn .button-right input {
  border: 2px solid #24262b;
  background-color: #24262b;
  color: white;
}

.formActionBtn .button-right input:hover {
  background-color: white;
  color: #24262b;
  transform: scale(1.01);
}

.table-details{
  width: 100%;
    display: flex;
    padding:12px;
    gap:5px;
    align-items: flex-end; 
}
.tdf-add, .tdf-remove{
  margin-bottom: 15px;
}
.tdf-input {
  margin: 5px 0;
}
.desc-good{
  width: 600px;
}
/* Responsive media query code for mobile devices */
@media (max-width: 670px) {
  .table-details{
    flex-wrap: wrap;
    padding: 0;
    gap:0;
  }
  
.td-fields{
padding: 12px;
  }
  .td-quan-field, .td-hsn-field, .td-price-field{
    width: calc(100% / 2 - 20px);
  }
  .td-amount-field{
    width: calc(100% / 2 - 90px);
  }
  .tdf-input {
    margin: 0;
  }
  .tdf-add, .tdf-remove{
    margin: 0 3px 15px;
  }
  .desc-good {
    width: calc(100% - 40px);
}
}

/* Responsive media query code for mobile devices */
@media (max-width: 584px) {
  .container {
    max-width: 100%;
    height:100%;
  }

 .input-box, .td-fields {
    margin-bottom: 15px;
    width: 100%;
  }

  form .category {
    width: 100%;
  }

  .content form .user-details {
    /* max-height: 300px; */
    /* overflow-y: scroll; */
  }

  .user-details::-webkit-scrollbar {
    width: 5px;
  }
  .td-amount-field{
  width: 85%;
  }
  .td-quan-field, .td-hsn-field{
    width: 100%;
    }
    .tdf-add, .tdf-remove{
      margin-bottom: 0;
    }
    .table-details{
      align-items: center;
    }
}

/* Responsive media query code for mobile devices */
@media (max-width: 459px) {
  .container .content .category {
    flex-direction: column;
  }
}
.page-content {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.page-content form {
  display: flex;
      flex-wrap: wrap;
      max-width: 960px;
      width: 100%;
      margin: 0 auto;
}

.page-content form .input-box {
  padding: 12px;
}
.btn{
  border: 2px solid #24262b;
    background-color: #24262b;
    color: white;
        font-weight: 500;
        letter-spacing: 1px;
        transition: all 0.3sease;
        text-decoration: none;
        height: 45px;
        color: white;
       
        padding: 12px 20px;
        font-size: 16px;
        cursor: pointer;
        border-radius: 5px;
        margin: 5px;
}

.btn:hover {
  background-color: white;
  color: #24262b;
  transform: scale(1.01);
}

.bbd-title{
  display: block;
    width: 100%;
    margin: 20px 0;
}





.sr-no{
  width: 120px;
}





.tdf-add:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../Images/plus.png) no-repeat center;
  display: block;
  background-size: cover;
}
.tdf-remove:before {
  content: "";
  width: 25px;
  height: 25px;
  background: url(../Images/minus.png) no-repeat center;
  display: block;
  background-size: cover;
}

.submit-btn{
  width: 100%;
}

input[type="file"] {
  border: none;
  padding: 0;
  width: 210px;
  /* width: 50%; */
  vertical-align: sub;
}

.table-container-wrap{
  width: 100%;
}
.organization-details{
  display: flex;
      flex-wrap: wrap;
      width: 100%;
      margin: 20px;
}
.organization-details .details-box {
  width: 50%;
  padding: 10px;
}
.organization-details .header {
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.organization-details .details-box .label {
  font-weight: 600;
  
}
.organization-details .submit-btn{
  margin: 25px 0;
}
.organization-inner{
  max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    flex-wrap: wrap;
}
.organization-inner .header-container,.order-detail h3{
  width: 100%;
}

.form-container {
	width: 100%;
	/* height: 100vh; */
	/* background-color: #000; */
	display: flex;
   	justify-content: center;
	align-items: center;
}
.upload-files-container {
	background-color: #fff;
	width: 420px;
	padding: 30px 60px;
	border-radius: 40px;
	display: flex;
   	align-items: center;
   	justify-content: center;
	flex-direction: column;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 20px, rgba(0, 0, 0, 0.28) 0px 6px 6px;
}
.drag-file-area {
	border: 2px dashed #000;
	border-radius: 40px;
	margin: 10px 0 15px;
	padding: 30px 50px;
	width: 350px;
	text-align: center;
}
.drag-file-area .upload-icon {
	font-size: 50px;
}
.drag-file-area h3 {
	font-size: 26px;
	margin: 15px 0;
}
.drag-file-area label {
	font-size: 19px;
}
.drag-file-area label .browse-files-text {
	color: #000;
	font-weight: bolder;
	cursor: pointer;
}
.browse-files span {
	position: relative;
	top: -25px;
}
.default-file-input {
	opacity: 0;
}
.cannot-upload-message {
	background-color: #ffc6c4;
	font-size: 17px;
	display: flex;
	align-items: center;
	margin: 5px 0;
	padding: 5px 10px 5px 30px;
	border-radius: 5px;
	color: #BB0000;
	display: none;
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
.cannot-upload-message span, .upload-button-icon {
	padding-right: 10px;
}
.cannot-upload-message span:last-child {
	padding-left: 20px;
	cursor: pointer;
}
.file-block {
	color: #f7fff7;
	background-color: #000;
  	transition: all 1s;
	width: 390px;
	position: relative;
	display: none;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin: 10px 0 15px;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
}
.file-info {
	display: flex;
	align-items: center;
	font-size: 15px;
}
.file-icon {
	margin-right: 10px;
}
.file-name, .file-size {
	padding: 0 3px;
}
.remove-file-icon {
	cursor: pointer;
}
.upload-progress-bar {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 4.5%;
	width: 0;
	height: 5px;
	border-radius: 25px;
	background-color: #4BB543;
}
.upload-button {
	font-family: 'Montserrat';
	background-color: #000;
	color: #f7fff7;
	display: flex;
	align-items: center;
	font-size: 18px;
	border: none;
	border-radius: 20px;
	margin: 10px;
	padding: 7.5px 50px;
	cursor: pointer;
}
.file-name{
  max-width: 60%;
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}
.dropdown-content a {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.dropdown-content a:hover {
  background-color: #ddd;
}

/* login form */

.login-form {
width: 480px;
  /* height: 440px; */
  max-width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  padding: 10px;
}
.login-form-wrap{
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: #fff;
  height: 100%;
  width: 100%;
  padding: 30px 20px;
}
.login-form .input-box{
  margin-bottom: 20px;
  width: 100%;
}
.login-form .input-box .details {
  display: block;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.login-form .login-content{
  text-align: center;
  margin-bottom: 25px;
}
.login-content p{
  margin-bottom: 10px;
}
.login-content .logo{
text-align: center;
margin: 0 auto;
}
.login-content h3{
  font-size: 28px;
}
.login-form .btn{
  width: 50%;
  height: 50px;
  margin: 0;
  text-align: center;
    display: block;
    margin: 0 auto;
}
.checkbox-box {
  margin-bottom: 20px;
}

.password-icon{
  position: absolute;
    top: 10px;
    right: 10px;
}
.password-field{
  position: relative;
}

/* registration */
.page-content.registration form{
  display: block;
}

.registration-form-wrap{
  width: 90%;
    padding: 20px;
    margin: 50px auto;
    border-radius: 5px;
    background: #Fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);

}
.registration-form-wrap .input-box{
  width: 100%;
}

.confirmation-msg{
  padding: 20px 0;
    font-size: 18px;
}

.registration .checkbox-box{
  padding: 0 12px;
}
.registration .btn{
  margin: 12px;
 padding: 12px 50px;

}

.password-box{
  margin-bottom: 0;
}

.documentation form{
  display: block;
}
.logout{
  height: 20px;
}

.logout img{
  max-width: 20px;
  height: 100%;
  width: 100%;
}

.capitalize {
  text-transform: capitalize;
}

.upload-files-container-wrap {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.upload-files-container-wrap .upload-files-container{
  max-width: 350px;
    width: 100%;
    padding: 10px 30px;
@media (max-width: 365px) {
  padding: 5px 15px;
}
}

.upload-files-container-wrap .drag-file-area{
  padding: 10px 20px;
    width: 100%;
    max-width: 300px;
@media (max-width: 365px) {
  padding: 5px 10px;
}
}

.upload-files-container-wrap .drag-file-area h3{
@media (max-width: 365px) {

  margin: 0;
  font-size: 20px;
}
}

.upload-files-container-wrap .file-block{
  max-width: 325px;
  width: 100%;
}

.category-documents{
  display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 20px;

}

.category-documents div {
  max-width: 200px;
  width: 100%;
}

.category-documents a {
  width: 100%;
  display: inline-block;
}
.category-documents img {
  display: block;
  width: 100%;
}
.buyer-data-container{
  max-width: 1000px;
  width: 100%;
  background-color: #ffff;
  padding: 20px;
  border-radius: 10px;
  margin: 15px auto;
  border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.buyer-data p {
  font-size: 16px;
  margin: 10px 0;
}
.buyer-data p strong {
  font-size: 18px;
}
.buyer-data{
  padding: 0 10px;
}
.viewBuyerButton{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
    width: 100%;
    margin: 30px 0;
}
.viewbuttonWrapper{
  display: flex;
gap: 40px;
}
.viewbuttonWrapper .bx{
  font-size: 25px;
}
.ldBar:not(#about-rainbow) path.mainline {
  stroke-width: 5;
  stroke: #09f;
  stroke-linecap: square;
}
.ldBar path.baseline {
  stroke-width: 2;
  stroke: #f1f2f3;
  stroke-linecap: round;
  filter:url(#custom-shadow);
}
.ldBar-label{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

}
#operations_form{
  display: flex;
      flex-wrap: wrap;
      flex-direction: row-reverse;
      justify-content: space-between;
}
.opration-action{
  display: block;
    
    margin: 10px 0;
}

body {
  width: 100vw;
  height: 100vh;
  background: #fafbff;
}
.floatingButtonWrap {
    display: block;
    position: fixed;
    /* top: 50%; */
    /* transform: translateY(-50%); */
    right: 45px;
    z-index: 999999999;
    bottom: 50px;
    right: 80px;
}

.floatingButtonInner {
    position: relative;
}

.floatingButton {
    display: block;
    width: 75px;
    height: 75px;
    text-align: center;
     color: #fff;
    line-height: 75px;
    position: absolute;
    border-radius: 50% 50%;
    bottom: 0px;
    right: 0px;
    background: rgb(21, 18, 165);
    /* opacity: 0.3; */
    opacity: 1;
    transition: all 0.4s;
}

.floatingButton .fa {
    font-size: 20px !important;
}

.floatingButton.open,
.floatingButton:hover,
.floatingButton:focus,
.floatingButton:active {
    opacity: 1;
    color: #fff;
}


.floatingButton .fa {
    transform: rotate(0deg);
    transition: all 0.4s;
}

.floatingButton.open .fa {
    transform: rotate(270deg);
}

.floatingMenu {
    position: absolute;
    bottom: 80px;
    right: 0px;
    /* width: 200px; */
    display: none;
}

.floatingMenu li {
    width: 100%;
    float: right;
    list-style: none;
    text-align: right;
    margin-bottom: 5px;
}

.floatingMenu li a {
    padding: 8px 15px;
    display: inline-block;
    background: #000;
    color: #fff;
    border-radius: 5px;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s;
    /* -webkit-box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22);
    box-shadow: 1px 3px 5px rgba(0, 0, 0, 0.22); */
    -webkit-box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
    box-shadow: 1px 3px 5px rgba(211, 224, 255, 0.5);
}

.floatingMenu li a:hover {
    margin-right: 10px;
    text-decoration: none;
}
.fa-remove:before, .fa-close:before, .fa-times:before {
  content: "\f00d";
}

.doc-wrap .upload-files-container{
  text-align: center;
  margin: 0 auto;
}
.amount-description{
  display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
}
.amount-description .amt{
  font-size: 20px;
  font-weight: 500;
}
.amount-debit .amt{
    color: #ff0000;
}
.amount-credit .amt{
    color: #00ff00;
}
.choose-btns{
  display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.form-inputs{
  margin: 0 auto;
    max-width: 300px;
    width: 100%;
}
.form-inputs-containers {
  display: flex;
  flex-direction: column;
  
}
.form-inputs-containers input{
  padding: 7px;
  max-width: 300px;
  margin: 0 0px 10px 0;
}
.order-data{
  display: flex;
    justify-content: space-between;
}
.amt-value{
  font-size: 20px;
  font-weight: 500;
}
.credit-amt .amt-value,.total-amt-credit .amt-value{
  color: #04be1d;
}
.debit-amt .amt-value,.total-amt-debit .amt-value{
  color: #ff0000;
}
.order-main-container{
  margin-bottom: 70px;
}
.dashboard-container{
  display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
}
.dashboard-card {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e5e5;
  margin: 10px auto;
  max-width: 350px;
  width: 100%;
  padding: 10px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.card-header{
  font-weight: 700;
  text-align: center;
}
.card-content-item .ldBar{
  margin: 10px auto;
  display: inline-block;
    vertical-align: sub;
}
table.dataTable td.dt-control:before{
  border: unset !important;
  background: url(../Images/view.png);
  background-size: contain;
  height: 20px;
  width: 20px;
}
/* table.dataTable tr.dt-hasChild td.dt-control:before{
  transform: rotate(90deg);
} */
.operation-group{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/* .status-bar{
  width: 100%  !important;
} */
 .operation-title{
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;

 }
 .operationshow-container{
  /* display: flex; */
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  background: #ffff;
  padding: 0 30px;
 }
 .operation-box {
  width: 50%;
}
@media screen and (max-width: 640px) {
  .operation-box {
    width: 100%;
  }
  
}
.second-header-container{
  font-weight: 600;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}
.doc-tableoperations{
  width: 100%;
}
.capitlized{
  text-transform: capitalize;
}
#product-container{
  display: block;
  width: 100%;

}
.product-entry{
  display: flex;
      flex-wrap: wrap;
      max-width: 960px;
      width: 100%;
      margin: 0 auto;
}
.remove-product{
  padding: 16px 16px;
  text-align: center;
  font-size: 14px;
  background: #c9262c;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  align-self: center;

}
.remove-product:hover{
  background: transparent;
  color: #c9262c;
  border: 2px solid #c9262c !important;
}
#add-product{
  padding: 16px 16px;
  text-align: center;
  font-size: 14px;
  background: #24262b;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
#add-product:hover{
  background: transparent;
  color: #24262b;
  border: 2px solid #24262b !important;
}
.input-item{
  width: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 20px;

}
.input-item textarea{
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;

}
.input-file{
  width: 100%;
}
.input-file span{
 display: block;;
}
select.tdf-input {
  padding: 13px;
}
#about-rainbow path { mask: url(#mask); }
#about-rainbow path.mainline {
  stroke-width: -5 !important;
  stroke: 454551 !important;
}

.can-access input {
  width: unset;
  height: unset;
}
.input-box textarea{
  height: auto;
}
.whatsapp-logo img{
  width: 20px;
  height: 20px;
}
.whatsapp-logo{
 margin-left: 10px;
}
.tab{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* margin: 20px 0; */
}
.tablinks {
  width: 23%;
  margin: 5px;
  border-radius: 3px;
  padding: 20px;
  background: #fff;
  border: 2px solid #312020;
}
.tablinks:hover {
  background: #312020;
  color: #fff;
}
.tablinks.active {
  background: #312020;
  color: #fff;
}
@media screen and (max-width: 640px) {
  .tablinks {
    width: 100%;
  }
  
}
a.country-link {
    width: 100%;
    text-decoration: none;
    padding: 10px;
    margin: 6px 0;
    border: 1px solid black;
    color: black;
    border-radius: 4px;
}
.country-link:hover {
    background-color: #f0f0f0;
    color: #000;
}
.country-filter{
 display: flex;
    flex-direction: column;
    width: 100%;

}
.countries-to-access{
  min-width: 250px !important;
  width: 100% !important;
}
.select2-container--default .select2-search--inline .select2-search__field{
  width: auto !important;
}
.w-100{
  width: 100% !important;
}
hr{
  margin: 15px 0;
}