@charset "UTF-8";
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #224A5B;
}

header {
  height: 80px;
  background-color: #FFF;
  background: #FFFFFF;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.banner-home {
  background-image: url("../img/banner-home.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-home p {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
  bottom: 25px;
}

@media (max-width: 767.98px) {
  .banner-home p {
    font-size: 16px;
  }
}

.banner-home .banner-content {
  justify-content: center;
}

.banner-home .banner-content .input-group {
  width: 830px;
  height: 45px;
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group .form-search {
    border-top-left-radius: 25px !important;
    border-bottom-left-radius: 25px !important;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

.banner-home .banner-content .input-group .input-group-text.search {
  border-top-right-radius: 25px;
  border-bottom-right-radius: 25px;
  background-color: #61BC09;
  color: #FFFFFF;
  font-weight: 600;
  width: 130px;
  align-items: center;
  justify-content: center;
  border: 0;
}

.banner-home .banner-content .input-group .input-group-text.search:hover {
  background-color: #4D9706;
}

.banner-home .banner-content .input-group .input-group-text.search a {
  color: #FFFFFF;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group .input-group-text.search {
    max-width: 50px;
  }
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group .input-group-text.search span {
    display: none;
  }
}

.banner-home .banner-content .input-group .input-group-text.search .hidden {
  display: none;
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group .input-group-text.search .hidden {
    display: inline-block;
  }
}

.banner-home .banner-content .input-group span.input-group-text.search-image {
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
  background-color: #fff;
}

@media (max-width: 767.98px) {
  .banner-home .banner-content .input-group span.input-group-text.search-image {
    display: none;
  }
}

.main-content {
  margin-top: 50px;
  padding-bottom: 3rem;
}

@media (min-width: 992px) {
  .main-content {
    margin-top: 80px;
  }
}

header {
  background-color: #FFF;
  height: 50px;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  box-shadow: 0px 2px 7px rgba(50, 50, 50, 0.25);
  font-size: 14px;
}

@media (min-width: 992px) {
  header {
    height: 80px;
    font-size: 16px;
  }
}

header .mobile-menu {
  background-color: #224A5B;
  display: block;
  height: 50px;
  width: 50px;
  padding: 5px;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
}

header .mobile-menu i {
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-mobile-menu.svg);
  background-repeat: no-repeat;
  background-size: 32px;
  background-position: center;
  display: block;
}

@media (min-width: 992px) {
  header .mobile-menu {
    display: none;
  }
}

header .navbar {
  display: flex;
  padding: 0;
}

header .navbar .top-left {
  padding: 5px 10px;
  margin-left: 50px;
}

@media (min-width: 992px) {
  header .navbar .top-left {
    margin-left: 0;
    padding: 10px 20px;
  }
}

header .navbar .top-left .navbar-brand {
  height: 40px;
  display: flex;
  margin-right: 0;
}

@media (min-width: 992px) {
  header .navbar .top-left .navbar-brand {
    height: 60px;
  }
}

header .navbar .top-left .navbar-brand img {
  width: 120px;
}

@media (min-width: 360px) {
  header .navbar .top-left .navbar-brand img {
    width: 160px;
  }
}

@media (min-width: 992px) {
  header .navbar .top-left .navbar-brand img {
    width: 270px;
  }
}

header .navbar ul.main-nav {
  margin: 0 10px;
  padding: 0;
  list-style: none;
  display: none;
  flex-direction: row;
}

@media (max-width: 991px) {
  header .navbar ul.main-nav {
    margin: 0;
    padding: 10px 0;
    background-color: #FFF;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  header .navbar ul.main-nav {
    display: flex !important;
    margin: 0 10px;
    align-items: center;
  }
}

header .navbar ul.main-nav li {
  padding: 0;
}

@media (max-width: 992px) {
  header .navbar ul.main-nav li {
    border-bottom: rgba(255, 255, 255, 0.15) solid 1px;
    padding: 0;
  }
}

header .navbar ul.main-nav li:last-child {
  border-bottom: 0;
}

header .navbar ul.main-nav li a {
  padding: 10px 12px;
  text-decoration: none;
  color: #404040;
  font-size: 16px;
}

header .navbar ul.main-nav li a:hover {
  color: #61BC09;
}

@media (max-width: 992px) {
  header .navbar ul.main-nav li a {
    padding: 10px;
    display: block;
  }
}

@media (min-width: 1200px) {
  header .navbar ul.main-nav li a {
    padding: 10px 12px;
  }
}
@media (min-width: 1400px) {
  header .navbar ul.main-nav li a {
    padding: 10px 20px;
  }
}
header .navbar ul.main-nav li a:hover, header .navbar ul.main-nav li a.active {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}

header .navbar .top-right {
  margin-left: auto;
  padding-right: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

header .navbar .top-right a.link {
  color: #fff;
  background-color: #224A5B;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 5px 10px;
  text-decoration: none;
}

@media (min-width: 768px) {
  header .navbar .top-right a.link {
    padding: 8px 20px;
  }
}

header .navbar .top-right a.link:hover {
  background-color: #153644;
}

header .navbar .top-right a.register-link {
  display: none;
  background-color: #61BC09;
}

header .navbar .top-right a.register-link:hover {
  background-color: #4D9706;
}

@media (min-width: 768px) {
  header .navbar .top-right a.register-link {
    display: block;
  }
}

header .navbar .user-nav {
  display: flex;
  padding-right: 15px;
  margin: auto 0 auto auto;
  list-style: none;
  align-items: center;
}

header .navbar .user-nav li {
  padding: 0;
  margin: 0 10px;
  display: flex;
  position: relative;
}

header .navbar .user-nav li:last-child {
  margin-right: 0;
}

header .navbar .user-nav li a {
  font-size: 14px;
  color: #404040;
  text-decoration: none;
}

@media (min-width: 992px) {
  header .navbar .user-nav li a {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  header .navbar .user-nav li.notifications {
    display: block;
  }
}

header .navbar .user-nav li.notifications a {
  position: relative;
  display: block;
}

header .navbar .user-nav li.notifications a i {
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-bell.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

header .navbar .user-nav li.notifications a .badge {
  position: absolute;
  top: -5px;
  right: -5px;
  color: #fff;
  font-size: 10px;
}

header .navbar .user-nav li.profile i.user {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-user.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  vertical-align: middle;
}

header .navbar .user-nav li.profile a.dropdown-toggle {
  padding-right: 18px;
  display: flex;
}

header .navbar .user-nav li.profile a.dropdown-toggle span::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1px solid #404040;
  border-bottom: 1px solid #404040;
  border-top: 0;
  border-left: none;
  top: 50%;
  right: auto;
  margin-left: 10px;
  margin-top: -7px;
  z-index: 1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: 0.2s;
}

header .navbar .user-nav li.profile span {
  display: none;
}

@media (min-width: 768px) {
  header .navbar .user-nav li.profile span {
    display: inline-block;
    margin-left: 5px;
  }
}

@media (max-width: 992px) {
  header .navbar .user-nav li.profile.wrap a.dropdown-toggle.home::after {
    position: absolute;
    display: inline-block;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 1px solid #404040;
    border-bottom: 1px solid #404040;
    border-top: 0;
    border-left: none;
    top: 50%;
    right: 0;
    margin-left: 10px;
    margin-top: -7px;
    z-index: 1;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: 0.2s;
  }
}

header .navbar .user-nav li.logout {
  border-left: #fff solid 1px;
  padding-left: 10px;
  display: none;
}

@media (min-width: 768px) {
  header .navbar .user-nav li.logout {
    display: inline-block;
  }
}

header .navbar .user-nav li.logout i {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url(../img/icon-logout.svg);
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
  vertical-align: middle;
}

header .navbar .user-nav li ul.profile-ddl {
  right: -20px;
  left: auto;
  padding: 0;
}

header .navbar .user-nav li ul.profile-ddl.profile_action {
  right: 0;
  left: auto;
  margin-top: 15px;
}

@media (max-width: 768px) {
  header .navbar .user-nav li ul.profile-ddl.profile_action {
    right: auto;
    left: 0;
  }
}

header .navbar .user-nav li ul.profile-ddl.profile_action.home {
  right: 0;
  left: auto;
}

header .navbar .user-nav li ul.profile-ddl.profile_action::after {
  display: none;
}

@media (min-width: 992px) {
  header .navbar .user-nav li ul.profile-ddl {
    right: auto;
    left: 0;
  }
}

header .navbar .user-nav li ul.profile-ddl li {
  margin: 0;
  padding: 0;
}

header .navbar .user-nav li ul.profile-ddl li.line {
  border-top: #e4e4e4 solid 1px;
}

header .navbar .user-nav li ul.profile-ddl li a {
  color: #666;
  font-size: 14px;
  padding: 6px 16px;
}

header .navbar .user-nav li ul.profile-ddl li a img {
  width: 16px;
  margin-right: 10px;
}

header .navbar .user-nav li ul.profile-ddl li a:hover, header .navbar .user-nav li ul.profile-ddl li a:focus {
  background-color: #f5f5f5;
}

header .navbar .user-nav li ul.profile-ddl::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  left: calc(100% - 60px);
  filter: drop-shadow(0 0 3rem #333);
  top: -10px;
  border-bottom-color: #fff;
}

@media (min-width: 992px) {
  header .navbar .user-nav li ul.profile-ddl::after {
    left: calc(50% - 10px);
  }
}

header .navbar .user-nav li ul.profile-ddl::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 30px;
  background: transparent;
  top: -30px;
  left: 0;
}

.about-us {
  background-color: #F1F3F8;
  padding: 50px 0px;
}

.about-us figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-us h4.about-title {
  color: #878787;
  font-size: 22px;
}

.about-us h2.about-chemtrade {
  color: #224A5B;
  font-weight: 600;
  font-size: 22px;
}

.about-us h2.about-chemtrade span.trade-tag {
  color: #61BC09;
}

.about-us p {
  color: #404040;
}

.products .chemical_items {
  padding-top: 50px;
}

.products .chemical_items .nav-tabs .active-chemicals {
  cursor: pointer;
}

.products .chemical_items .nav-tabs .active-chemicals a {
  font-size: 16px;
  font-weight: 600;
  background-color: #F3F3F3;
  border-color: #DEE2E6;
}

@media (max-width: 767.98px) {
  .products .chemical_items .nav-tabs .active-chemicals a {
    font-size: 12px;
  }
}

.products .chemical_items .nav-tabs .active-chemicals.active a {
  color: #61BC09;
  background-color: transparent;
  border-bottom-color: #FFF;
}

.products .chemical_items .nav-tabs .chemical-requests {
  cursor: pointer;
}

.products .chemical_items .nav-tabs .chemical-requests.active.active a {
  color: #61BC09;
  background-color: transparent;
  border-bottom-color: #FFF;
}

.products .chemical_items .nav-tabs .chemical-requests a {
  font-size: 16px;
  font-weight: 600;
  color: #224A5B;
  border-radius: 10px 10px 0 0;
  border-color: #DEE2E6;
  background-color: #F3F3F3;
  margin-left: 5px;
}

@media (max-width: 767.98px) {
  .products .chemical_items .nav-tabs .chemical-requests a {
    font-size: 12px;
  }
}

.products .chemical_items .nav-tabs .nav-item a {
  border-radius: 10px 10px 0 0;
}

.products .chemical_items .maincard {
  padding: 0;
}

.products .chemical_items .maincard .content-container {
  display: none;
  position: relative;
  border-radius: 10px;
  margin: 20px 10px;
  width: auto;
  transition: background-color 0.3s ease;
}

.products .chemical_items .maincard .content-container.active {
  display: grid;
}

.products .chemical_items .maincard .content-container .chemical-card {
  position: relative;
}

.products .chemical_items .maincard .content-container .chemical-card .details {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) repeat(6, 1fr);
  box-shadow: 0 0 4px rgba(128, 128, 128, 0.5);
  border-radius: 10px;
  margin: 10px 0px;
  padding: 10px;
}

.products .chemical_items .maincard .content-container .chemical-card .details:hover {
  background-color: #F1F3F8;
}

@media (max-width: 768px) {
  .products .chemical_items .maincard .content-container .chemical-card .details {
    grid-template-columns: repeat(2, 1fr);
    padding: 5px;
  }
}

.products .chemical_items .maincard .content-container .chemical-card .details .detail {
  padding: 10px;
}

.products .chemical_items .maincard .content-container .chemical-card .details .detail h3 {
  margin-bottom: 5px;
  font-size: 14px;
  color: #878787;
  white-space: nowrap;
}

.products .chemical_items .maincard .content-container .chemical-card .details .detail p {
  margin: 0;
  color: #000000;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.products .chemical_items .maincard .content-container .chemical-card .details .login-btn.btn {
  display: none;
}

.products .chemical_items .maincard .content-container .chemical-card .details:hover .login-btn.btn {
  display: block;
  position: absolute;
  right: 5px;
  bottom: 0;
  background: #224A5B;
  border-radius: 20px;
  color: #fff;
  margin: 0px 10px 15px 10px;
  transition: opacity 0.3s ease;
}

.products .chemical_items .maincard .content-container .chemical-card .details:hover .login-btn.btn:hover {
  background-color: #153644;
}

.products .chemical_items .maincard .content-container .chemical-card .details:hover .login-btn.btn img {
  margin-left: 10px;
}

.products .chemical_items .maincard .content-container .chemical-card .details .my-request {
  background: red;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
  padding: 8px;
  right: 10px;
  position: absolute;
  display: block;
  margin: 0;
}

.products .chemical_items .products-viewall {
  display: flex;
  justify-content: center;
}

.products .chemical_items .products-viewall .login-btn.btn {
  background: #224A5B;
  border-radius: 10px;
  color: #fff;
  margin: 0px 10px 10px 10px;
  transition: opacity 0.3s ease;
}

.products .chemical_items .products-viewall .login-btn.btn:hover {
  background-color: #153644;
}

.products .chemical_items .products-viewall .login-btn.btn img {
  margin-left: 10px;
}

.key_features {
  background-color: #F1F3F8;
  padding: 80px 0px;
  margin: 30px 0px 0px;
}

@media (max-width: 767.98px) {
  .key_features {
    padding: 40px 0px;
  }
}

.key_features h5 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #224A5B;
  margin: 15px 0px;
}

.key_features h5 span {
  color: #61BC09;
}

.key_features .feature_item {
  padding: 15px;
}

.key_features .feature_item .card {
  padding: 25px 20px;
  height: 350px;
  border-radius: 10px;
}

.key_features .feature_item .card i {
  margin-bottom: 30px;
}

.key_features .feature_item .card i img {
  width: 75px;
}

.key_features .feature_item .card h6 {
  font-size: 18px;
  font-weight: 700;
  line-height: 35px;
}

.key_features .feature_item .card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.key_features .feature_item .card.img {
  border: none;
  background-size: cover;
  padding: 0;
}

.benefits {
  background-color: #224A5B;
  padding: 80px 0px;
}

@media (max-width: 767.98px) {
  .benefits {
    padding: 40px 0px;
  }
}

@media (max-width: 992px) {
  .benefits {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .benefits .benefits_container {
    max-width: 90%;
  }
}

@media (max-width: 1024.98px) {
  .benefits .benefits_img {
    position: relative;
  }
}

@media (max-width: 767.98px) {
  .benefits .benefits_img {
    display: none;
  }
}

.benefits .benefits_img img {
  width: auto;
  height: 600px;
}

@media (max-width: 1024.98px) {
  .benefits .benefits_img img {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 500px;
  }
}

@media (max-width: 767.98px) {
  .benefits .benefits_content {
    width: 100%;
    padding: 0;
  }
}

.benefits .benefits_content .benefits_subcontent h5 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  text-align: left;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .benefits .benefits_content .benefits_subcontent h5 {
    font-size: 26px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .benefits .benefits_content .benefits_subcontent h5 {
    font-size: 20px;
  }
}

.benefits .benefits_content .benefits_subcontent h5 span {
  color: #61BC09;
}

.benefits .benefits_content .benefits_subcontent .benefits_lists {
  background: #FFFFFF;
  box-shadow: 0px 0px 10px 0px #0000000D;
  padding: 20px;
  width: 800px;
  height: auto;
  border-radius: 10px;
}

@media (max-width: 1200px) {
  .benefits .benefits_content .benefits_subcontent .benefits_lists {
    width: 100%;
  }
}

.benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item {
  display: flex;
  align-items: start;
}

.benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul {
  padding-left: 1.5rem;
}

.benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul li {
  list-style: none;
}

.benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #224A5B;
  margin: 0 0 10px 0;
  text-align: left;
}

@media (max-width: 767.98px) {
  .benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul li h5 {
    font-size: 15px;
    line-height: 1.5;
  }
}

.benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul li p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767.98px) {
  .benefits .benefits_content .benefits_subcontent .benefits_lists .benefits_item ul li p {
    font-size: 13px;
    line-height: 1.8;
  }
}

footer {
  padding: 40px 0px;
}

footer figure img {
  width: 100%;
  height: auto;
}

@media (max-width: 991.98px) {
  footer figure img {
    width: 85%;
  }
}

footer .footer_list {
  display: flex;
  justify-content: center;
}

@media (max-width: 991.98px) {
  footer .footer_list {
    justify-content: left;
  }
}

footer .footer_list p {
  color: #808080;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

footer .footer_list h4 {
  color: #4B4B4B;
  margin-bottom: 1rem;
}

footer .footer_list ul {
  list-style: none;
  padding: 0;
}

footer .footer_list ul li {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

footer .footer_list ul li a {
  color: #808080;
  text-decoration: none;
}

footer .footer_list ul li a:hover {
  color: #61BC09;
}

footer .footer_list ul li span {
  color: #4B4B4B;
  display: block;
  font-weight: 500;
}

footer .footer_list .input-group .input-group-text {
  background-color: #61BC09;
  color: #fff;
}

footer hr:not([size]) {
  color: #E5E5E5;
  height: 2px;
  margin: 0;
}

footer p.copyright {
  margin: 0;
  padding-top: 40px;
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  flex-wrap: wrap;
}

footer p.copyright a {
  color: unset;
  text-decoration: none;
}

footer p.copyright a:hover {
  color: #61BC09;
}
@media (max-width: 560px) {
  footer p.copyright {
display: flex;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  footer p.copyright {
    font-size: 12px;
  }
}

footer p.copyright i {
  margin: 0px 20px;
}

.about_us .banner-home {
  height: 130px;
}

.about_us .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .about_us .banner-home p {
    font-size: 18px;
  }
}

.about_us .about-us {
  background-color: #fff;
}

.about_us .about-us .card {
  width: 100%;
  margin: auto;
  background-color: #FFFFFF;
  border: none;
  border-radius: 24px;
  padding: 50px;
  overflow: hidden;
}

.about_us .about-us .card figure {
  display: flex;
  align-items: center;
  justify-content: end;
  height: 100%;
  margin: 0;
}

@media (max-width: 1024px) {
  .about_us .about-us .card figure {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .about_us .about-us .card figure {
    padding: 0px;
  }
}

.about_us .about-us .card figure img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.about_us .about-us .card figure img.lab-mobile {
  display: none;
}

@media (max-width: 991.98px) {
  .about_us .about-us .card figure img.lab-mobile {
    display: block;
  }
}

@media (max-width: 991.98px) {
  .about_us .about-us .card figure img.lab-web {
    display: none;
  }
}

.about_us .key_features {
  padding: 50px 0px;
  margin: 0;
}

@media (max-width: 1280px) {
  .about_us .key_features .feature_container {
    max-width: 900px;
  }
}

@media (max-width: 1024px) {
  .about_us .key_features .feature_container {
    max-width: 800px;
  }
}

@media (max-width: 992px) {
  .about_us .key_features .feature_container {
    max-width: 600px;
  }
}

@media (max-width: 767.98px) {
  .about_us .key_features .feature_container {
    max-width: 90%;
  }
}

.about_us .key_features h5 {
  margin-bottom: 50px;
}

@media (max-width: 1024.98px) {
  .about_us .key_features h5 {
    margin-bottom: 25px;
    font-size: 25px;
  }
}

.about_us .key_features .feature_content {
  display: flex;
  position: relative;
  height: auto;
  background-color: #224A5B;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 10px;
}

@media (max-width: 1024.98px) {
  .about_us .key_features .feature_content {
    margin-bottom: 20px;
  }
}

.about_us .key_features .feature_content :not(:last-child) {
  margin-bottom: 0px;
}

.about_us .key_features .feature_content i {
  position: absolute;
  left: -40px;
  width: 80px;
}

@media (max-width: 767.98px) {
  .about_us .key_features .feature_content i {
    display: none;
  }
}

.about_us .key_features .feature_content i img {
  width: 100%;
  height: auto;
}

.about_us .key_features .feature_content ul {
  list-style: none;
  margin: 0;
}

@media (max-width: 767.98px) {
  .about_us .key_features .feature_content ul {
    padding: 0;
  }
}

.about_us .key_features .feature_content ul li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  text-align: left;
  margin: 0 0 10px 0px;
}

.about_us .key_features .feature_content ul li p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  margin: 0;
}

.about_us .benefits {
  background-color: #fff;
}

.about_us .benefits h5 {
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #224A5B;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .about_us .benefits h5 {
    font-size: 26px;
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .about_us .benefits h5 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

.about_us .benefits h5 span {
  color: #61BC09;
}

.about_us .benefits .benefits_item {
  padding: 15px;
  position: relative;
}

.about_us .benefits .benefits_item ul {
  list-style-type: none;
  padding-left: 1rem;
}

@media (max-width: 767.98px) {
  .about_us .benefits .benefits_item ul {
    padding: 0;
  }
}

.about_us .benefits .benefits_item ul li h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .about_us .benefits .benefits_item ul li h5 {
    font-size: 15px;
  }
}

.about_us .benefits .benefits_item ul li h5 i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.about_us .benefits .benefits_item ul li h5 i img {
  width: 100%;
  height: auto;
}

.about_us .benefits .benefits_item ul li p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.about_us .benefits .benefits_item:nth-child(even):not(:last-child):after {
  content: '';
  height: 80%;
  width: 1px;
  position: absolute;
  right: 0;
  background-image: url("../img/line.svg");
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  .about_us .benefits .benefits_item:nth-child(even):not(:last-child):after {
    display: none;
  }
}

.about_us .benefits .benefits_item hr:not([size]) {
  content: '';
  height: 1px;
  background-image: url("../img/line.svg");
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 90%;
  transform: translateX(-50%);
  margin: 0;
}

@media (max-width: 767.98px) {
  .about_us .benefits .benefits_item hr:not([size]) {
    display: none;
  }
}

.about_us footer {
  background-color: #F1F3F8;
}

.search-products .banner-home {
  height: 130px;
}

.search-products .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .search-products .banner-home p {
    font-size: 18px;
  }
}

.search-products .product_container {
  margin-top: 40px;
}

.search-products .modal-footer .btn {
  width: 100px;
}

.search-products .products_list .product-item {
  display: flex;
  flex-wrap: wrap;
}

.search-products .products_list .product-item .btn {
  width: 130px;
  font-size: 13px;
  height: 40px;
  border-radius: 5px;
  padding: 0;
}

@media (max-width: 768.98px) {
  .search-products .products_list .product-item .btn {
    font-size: 12px;
  }
}

.search-products .products_list .product-item .sold-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.search-products .products_list .product-item .sold-items .btn {
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-products .products_list .product-item .sold-items .btn.product {
  width: 100px;
  color: #fff;
  background-color: #61BC09;
  border: 1px solid #61BC09;
}

.search-products .products_list .product-item .sold-items .btn.product:hover {
  color: #fff;
  background-color: #224A5B;
  border: 1px solid #224A5B;
}

.search-products .products_list .product-item .sold-items .btn .icon {
  font-size: 14px;
  color: #fff;
}

.search-products .products_list .product-item .search-items {
  display: flex;
  align-items: center;
  justify-content: end;
}

@media (max-width: 767.98px) {
  .search-products .products_list .product-item .search-items {
    justify-content: start;
  }
}

.search-products .products_list .product-item .search-items .input-group button {
  background-color: #61BC09;
}

.search-products .products_list .product-item .search-items .input-group button img {
  width: 20px;
  height: auto;
}

.search-products .products_list .product-item .search-items .input-group {
  width: 100%;
}

.search-products .products_list .product-filter {
  display: flex;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .search-products .products_list .product-filter {
    padding: 0;
  }
}

.search-products .products_list .product-filter .dropdown {
  margin: 0.5rem 0;
  height: 40px;
  width: 100% !important;
}

.search-products .products_list .product-filter .dropdown:last-child {
  margin-right: 0;
}

.search-products .products_list .product-filter .dropdown .btn.dropdown-toggle {
  height: 40px;
}

.search-products .products_list .product-filter .dropdown .btn.dropdown-toggle .filter-option {
  margin: auto;
  display: flex;
  align-items: center;
}

.search-products .products_list .product-filter .dropdown .btn.dropdown-toggle .filter-option .filter-option-inner-inner {
  font-size: 13px;
}

.search-products .products_list .product-filter .weight_modal {
  height: 40px;
  margin: 0.5rem 0;
}

.search-products .products_list .product-filter .weight_modal button {
  width: 100%;
  height: 40px;
  color: #999;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
  font-size: 13px;
}

.search-products .products_list .product-filter .result_btns {
  display: flex;
  align-items: center;
}

.search-products .products_list .product-filter .result_btns .btn {
  width: 50%;
  color: #fff;
}

.search-products .products_list .product_table .nav-tabs {
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.search-products .products_list .product_table .nav-tabs::-webkit-scrollbar {
  display: none;
}

.search-products .products_list .product_table .nav-tabs .nav-item a {
  font-size: 12px;
  align-items: center;
  display: flex;
  margin-right: 5px;
  width: 100%;
  height: 50px;
  padding: 5px 10px;
  color: #224A5B;
  border-color: #DEE2E6;
  background-color: #F3F3F3;
  cursor: pointer;
}

.search-products .products_list .product_table .nav-tabs .nav-item.active a {
  background-color: #fff;
  color: #61BC09;
}

.search-products .products_list .product_table .nav-tabs .slick-dots li button:before {
  font-size: 12px;
}

.search-products .products_list .product_table .nav-tabs .slick-prev:before,
.search-products .products_list .product_table .nav-tabs .slick-next:before {
  color: #224A5B;
  font-size: 15px;
  line-height: 1;
}

.search-products .products_list .product_table .maincard {
  padding: 0;
}

.search-products .products_list .product_table .maincard .content-container {
  display: none;
  position: relative;
  border-radius: 10px;
  margin: 20px 10px;
  width: auto;
  transition: background-color 0.3s ease;
}

.search-products .products_list .product_table .maincard .content-container.active {
  display: grid;
}

.search-products .products_list .product_table .maincard .content-container .chemical-table {
  font-size: 13px;
}

.search-products .products_list .product_table .maincard .content-container .chemical-table tr th {
  color: #404040;
  font-weight: 500;
  text-wrap: nowrap;
}

.search-products .products_list .product_table .maincard .content-container .chemical-table td img {
  width: 100px;
  height: auto;
  object-fit: cover;
}

.search-products .products_list .product_table .maincard .content-container .chemical-table td .add-quote {
  color: #FFF;
  white-space: nowrap;
  border-radius: 20px;
  background: #61BC09;
  font-weight: 500;
  text-align: center;
  padding: 5px 10px;
  text-decoration: none;
  
}

.search-products .products_list .product_table .maincard .content-container .chemical-table td .add-quote:hover {
  background-color: #224A5B;
}

.search-products .products_list .product_table .chemical-card {
  overflow: auto;
}

.search-products .products_list .product_table .chemical-card .chemical-table {
  width: 100%;
  border-collapse: collapse;
}

.search-products .products_list .product_table .chemical-card .chemical-table th,
.search-products .products_list .product_table .chemical-card .chemical-table td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left;
  word-break: break-all;
}

.search-products .products_list .product_table .chemical-card .chemical-table th {
  background-color: #F2F2F2;
}

.search-products footer {
  background-color: #F1F3F8;
}

.form_ui {
  background-color: #224A5B;
}

.form_ui .main-content {
  padding: 5rem;
}

@media (max-width: 767.98px) {
  .form_ui .main-content {
    padding: 3rem 1rem;
  }
}

.form_ui .main-content .form-container {
  padding: 0;
}

.form_ui .main-content .form-container form {
  max-width: 550px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border-radius: 5px;
}

@media (max-width: 767.98px) {
  .form_ui .main-content .form-container form {
    padding: 1rem;
  }
}

.form_ui .main-content .form-container form h4 {
  color: #224A5B;
  text-align: center;
}

.form_ui .main-content .form-container form h4 span {
  color: #61BC09;
}

@media (max-width: 767.98px) {
  .form_ui .main-content .form-container form h4 {
    font-size: 18px;
  }
}

.form_ui .main-content .form-container form .form-floating label {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown {
  width: 100%;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown input {
  height: 45px;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown .iti__flag-container {
  width: 100%;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown .iti__flag-container .iti__country-list {
  width: 100%;
  overflow-x: hidden;
  background-color: #fff;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown .iti__flag-container .iti__country-list::-webkit-scrollbar-thumb {
  background-color: #e1e1e1;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown .iti__flag-container .iti__country-list::-webkit-scrollbar-track {
  background-color: #f5f5f5;
}

.form_ui .main-content .form-container form .phone-group .iti--allow-dropdown .iti__flag-container .iti__dial-code {
  display: none;
}

.form_ui .main-content .form-container form .submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 4px;
  height: 45px;
}

.form_ui .main-content .form-container form .submit-btn.register_user {
  width: 90px;
}

.form_ui .reset-btn {
  border: 1px solid #224A5B;
  color: #224A5B;
  background: #fff;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  text-decoration: none;
  border-radius: 4px;
  height: 45px;
  min-width: 90px;
}

.form_ui footer {
  background-color: #F1F3F8;
}

.form_ui .register_form .form-container form {
  max-width: 800px;
}

.form_ui .register_form .form-container form .other_business_type {
  display: none;
}

@media (max-width: 767.98px) {
  .form_ui .register_form .form-container form h5.info {
    font-size: 14px;
  }
}

.form_ui .global-alert {
  display: none !important;
}

.contact-us .banner-home {
  height: 130px;
}

.contact-us .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .contact-us .banner-home p {
    font-size: 18px;
  }
}

.contact-us .contactus-form {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-us .contactus-form .contact-list {
  margin: 20px 0 0 0;
  padding: 20px;
  border: #ddd solid 1px;
  border-radius: 10px;
  background-color: #f5f5f5;
  list-style-type: none;
}

@media (max-width: 767.98px) {
  .contact-us .contactus-form .contact-list {
    padding-left: 10px;
  }
}

.contact-us .contactus-form .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.contact-us .contactus-form .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-us .contactus-form .contact-list li .icon {
  color: #808080;
  background-color: white;
  border: 1px solid #808080;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.contact-us .contactus-form .contact-list li .icon:hover {
  color: #fff;
  background-color: #61BC09;
  border: 1px solid #61BC09;
}

.contact-us .contactus-form .contact-list a {
  color: #224A5B;
}

.contact-us .contactus-form .contact-list a:hover {
  text-decoration: none;
  color: #61BC09;
}

.contact-us .contactus-form .lead {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 25px;
}

.contact-us .contactus-form .contact-form .form-floating input {
  border-radius: 4px;
}

.contact-us .contactus-form .contact-form textarea {
  height: 100px;
  border-radius: 4px;
}

.contact-us .contactus-form .contact-form .submit-button {
  padding: 10px 5px;
}

.contact-us .contactus-form .contact-form .submit-button button {
  height: 40px;
  border-radius: 4px;
  color: #fff;
  border: 0;
}

.contact-us .contactus-form .contact-form .submit-button .reset-btn {
  border: 1px solid #224A5B;
  color: #224A5B;
  background: #fff;
}

.contact-us .contactus-form .map {
  padding: 40px 0px;
}

.contact-us footer {
  background-color: #F1F3F8;
}

.enquiry .banner-home {
  height: 130px;
}

.enquiry .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .enquiry .banner-home p {
    font-size: 18px;
  }
}

.enquiry .enquiry-form {
  padding-top: 40px;
  padding-bottom: 80px;
}

.enquiry .enquiry-form h4 {
  font-size: 22px;
  color: #61BC09;
  font-weight: 600;
  justify-content: center;
  display: flex;
  margin-bottom: 10px;
}

.enquiry .enquiry-form p {
  justify-content: center;
  display: flex;
}

.enquiry .enquiry-form .contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.enquiry .enquiry-form .contact-form .form-floating input {
  border-radius: 4px;
}

.enquiry .enquiry-form .contact-form textarea {
  height: 100px;
  border-radius: 4px;
}

.enquiry .enquiry-form .submit-button {
  text-align: center;
}

.enquiry .enquiry-form .radio-btns .form-check {
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.enquiry .enquiry-form .radio-btns .form-check input {
  margin-right: 10px;
}

.enquiry footer {
  background-color: #F1F3F8;
}

.products-details .banner-home {
  height: 130px;
}

.products-details .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .products-details .banner-home p {
    font-size: 18px;
  }
}

.products-details .product-photos.slick-slider .slick-prev,
.products-details .product-photos.slick-slider .slick-next {
  background: #224A5B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.products-details .product-photos.slick-slider .slick-prev:hover,
.products-details .product-photos.slick-slider .slick-next:hover {
  background: #61BC09;
}

.products-details .product-photos.slick-slider .slick-prev {
  left: 5px;
}

.products-details .product-photos.slick-slider .slick-next {
  right: 5px;
}

.products-details .product-photos.slick-slider .slick-next:before,
.products-details .product-photos.slick-slider .slick-prev:before {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -1px;
  position: absolute;
  width: 30px;
  height: 30px;
}

.products-details .product-photos.slick-slider .slick-dots {
  bottom: 0;
  left: 0;
  margin: 10px 0;
}

.products-details .product-photos.slick-slider .slick-dots li button:before {
  font-size: 20px;
  color: #224A5B;
}

.products-details .product-photos .slick-prev:before {
  content: '«';
}

.products-details .product-photos .slick-next:before {
  content: '»';
}

.products-details .product_container {
  padding-top: 30px;
  padding-bottom: 30px;
}

.products-details .product_container .products_list .right h6 {
  color: #61BC09;
}

.products-details .product_container .products_list .right .product-details .product {
  display: flex;
  font-size: 15px;
  margin-bottom: 10px;
}

.products-details .product_container .products_list .right .product-details .product .label {
  font-weight: 300;
  color: #808080;
}

.products-details .product_container .products_list .right .product-details .product .value {
  margin-left: 10px;
  color: #000000;
}

.products-details .product_container .products_list .right .product-photos {
  margin: 20px 0px;
  background-color: transparent;
  padding: 25px;
  max-width: 500px;
  border: 1px solid #224A5B;
}

.products-details .product_container .products_list .right .product-photos img {
  width: 100%;
  padding: 30px;
  height: 500px;
}

.products-details .product_container .products_list .right .submit-button {
  padding-top: 15px;
}

.products-details .product_container .products_list .right .submit-button button {
  background-color: #224A5B;
  border: #224A5B;
}

.products-details .product_container .products_list .left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-details .product_container .products_list .left img {
  height: auto;
  width: 460px;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .products-details .product_container .products_list .left img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .products-details .product_container .products_list .left {
    margin-top: 25px;
  }
}

.products-details .product_container .product-description {
  padding: 20px 0px;
}

.products-details .product_container .product-description .description p {
  color: #000000;
}

.products-details .product_container .product-description .description .tab-titles {
  display: flex;
  margin: 20px 0;
}

.products-details .product_container .product-description .description .tab-titles .tab-links {
  margin-right: 50px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}

.products-details .product_container .product-description .description .tab-titles .tab-links::after {
  content: "";
  width: 0;
  height: 3px;
  background-color: #61BC09;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: 0.5s;
}

.products-details .product_container .product-description .description .tab-titles .tab-links.active-link::after {
  width: 100%;
}

.products-details .product_container .product-description .description .tab-contents {
  display: none;
}

.products-details .product_container .product-description .description .tab-contents.active-tab {
  display: block;
}

.products-details .product_container .product-description .description .tab-contents.active-tab table tr {
  font-size: 15px;
}

.products-details .product_container .product-description .description .tab-contents.active-tab table tr td {
  padding: 5px;
  width: 60%;
  color: #000000;
}

.products-details .product_container .product-description .description .tab-contents.active-tab table tr td strong {
  font-weight: 500;
  color: #808080;
}

.products-details .product_container .notify {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.products-details .product_container .notify .notify_icon {
  position: relative;
  right: 0px;
  font-size: 12px;
  width: 28px;
  height: 28px;
  top: -8px;
}

.products-details .product_container .notify .notify_icon .icon_animate {
  color: #ff0000;
  animation: bounce_shake 1.5s ease-out infinite;
  margin: 0;
}

.products-details .product_container .notify .notify_icon .icon_animate i {
  font-size: 30px;
  font-weight: bold;
}

.products-details .product_container .notify p {
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  margin: 0;
  margin-left: 10px;
}

@keyframes bounce_shake {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-5px);
  }
  32% {
    transform: scale(1.2) translateY(-5px);
  }
  35%,
  40% {
    transform: scale(1.2) translateY(-5px) rotate(-20deg);
  }
  45%,
  50% {
    transform: scale(1.2) translateY(-5px) rotate(20deg);
  }
  60% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  70% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  80% {
    transform: scale(1, 1) translateY(-3px);
  }
  95% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

.products-details footer {
  background-color: #F1F3F8;
}

.user-dashboard .navbar-dropdown .dropdown-item {
  color: #224A5B;
}

.user-dashboard .navbar-dropdown .dropdown-item:hover {
  color: #fff;
}

.user-dashboard .dashboard-cards a {
  color: unset;
}

.user-dashboard .stretch-card.grid-margin .card a {
  text-decoration: none;
}

.user-dashboard.sidebar-icon-only td.msg-wrap {
  max-width: 250px;
}

@media (max-width: 767.98px) {
  .user-dashboard header .navbar .user-nav {
    padding-right: 0;
  }
}

.view_product .page-title .action_wrap {
  display: flex;
  align-items: center;
}

.view_product .page-title .action_wrap .btn {
  font-size: 14px;
  height: 30px;
}

.view_product .page-title .action_wrap i {
  background-color: #61BC09;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.view_product .page-title-link {
  margin-left: auto;
}

.view_product .view-file {
  background-color: unset;
  text-decoration: none;
  color: #224A5B;
}

.view_product .view-file:hover {
  color: #61BC09;
}

.view_product .file_view {
  color: #212529;
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
  height: auto;
}

.view_product .file_view:hover {
  color: #61BC09;
}

.edit_product .page-title .action_wrap {
  display: flex;
  align-items: center;
}

.edit_product .page-title .action_wrap .btn {
  height: 30px;
}

.edit_product .page-title .action_wrap i {
  background-color: #61BC09;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.edit_product .file_view {
  color: #212529;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: 10px;
}

.edit_product .file_view:hover {
  color: #61BC09;
}

.breadcrumb {
  margin-bottom: 30px;
}

.breadcrumb a {
  color: #224A5B;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: #61BC09;
}

.services-page {
  padding: 50px 0 0 0;
  text-align: center;
}

.placeholder-page {
  padding: 50px 0 0 0;
  text-align: center;
  min-height: 300px;
}

.modal-backdrop.show {
  opacity: 0;
  top: 90px;
}

.privacy_policy .banner-home,
.term-conditions .banner-home,
.copyrights .banner-home {
  height: 130px;
}

.privacy_policy .banner-home p,
.term-conditions .banner-home p,
.copyrights .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .privacy_policy .banner-home p,
  .term-conditions .banner-home p,
  .copyrights .banner-home p {
    font-size: 18px;
  }
}

.bid-card {
  background-color: #FFF;
  padding: 20px;
  border: #ddd solid 1px;
  box-shadow: 0 2px 5px 0 rgba(215, 215, 215, 0.5);
  margin: 10px 0;
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .bid-card {
    padding: 10px;
  }
}

.bid-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  margin-bottom: 10px;
  align-items: center;
}

@media (max-width: 767.98px) {
  .bid-row {
    display: block;
  }
}

.bid-label {
  font-weight: 500;
  margin-bottom: 10px;
}

.bid-amount {
  margin-bottom: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: Roboto;
  font-weight: 500;
}

.bid-amount input {
  width: 200px;
}

/** Common Styles **/
header .navbar .user-nav li a.website_btn {
  padding: 5px 15px !important;
  text-decoration: none;
  color: #ffffff;
  background-color: #224A5B;
  border-radius: 5px;
}

header .navbar .user-nav li a.website_btn:hover {
  color: #ffffff;
  background-color: #61BC09;
  border-radius: 5px;
}

.disabled_edit, .disabled_delete {
  pointer-events: none;
  opacity: .5;
}

.not_allowed {
  pointer-events: none;
}

.form-control {
  font-size: 14px;
}

a {
  text-decoration: none;
}

.btn-primary {
  color: #fff;
  background-color: #61BC09;
  border-color: #61BC09;
}

.btn-primary:hover {
  background-color: #4D9706;
  border-color: #4D9706;
}

.btn-primary:focus {
  background-color: #4D9706;
  border-color: #4D9706;
  box-shadow: none;
}

.btn-secondary {
  color: #fff;
  background-color: #224A5B;
  border-color: #224A5B;
}

.btn-secondary:hover {
  background-color: #153644;
  border-color: #153644;
}

.btn-secondary:focus {
  background-color: #153644;
  border-color: #153644;
  box-shadow: none;
}

.text-primary {
  color: #4D9706 !important;
}

.text-secondary {
  color: #153644 !important;
}

.custom-bg-info {
  background-color: #0dcaf05c;
}

/* Action icon */
.action-links {
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-links i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 25px;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  font-style: unset;
}

.action-links i.mdi-eye {
  background-color: #b66dff;
}

.action-links i.mdi-lead-pencil {
  background-color: #61BC09;
}

.action-links i.mdi-delete {
  background-color: #dc3545;
}

/* reset form btn ui */
.form-header {
  position: relative;
}

@media (max-width: 767.98px) {
  .form-header {
    display: flex;
    align-items: center;
  }
}

.form-header button {
  position: absolute;
  right: 0;
  font-weight: bold;
  background-color: #ffc107;
  border-color: #ffc107;
  color: #fff;
}

@media (max-width: 767.98px) {
  .form-header button {
    font-size: 12px;
    padding: 5px;
  }
}

.form-header .mdi-reload:before {
  font-weight: bold;
}

/* remove doc ui */
.error-msg {
  color: #dc3545;
}

.remove-doc {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  color: #dc3545;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.offcanvas {
  top: 80px !important;
  background-color: #224A5B;
}

.offcanvas h4 {
  margin: 0;
  color: #fff;
  font-weight: bold;
}

.offcanvas .mdi-close-circle-outline {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.offcanvas .offcanvas-body {
  overflow-y: scroll;
  scrollbar-width: thin;
  -webkit-scrollbar-width: thin;
}

.offcanvas .offcanvas-body p {
  display: flex;
}

.offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 0;
}

.offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: transparent;
}

.offcanvas .offcanvas-body .notify-content {
  list-style: none;
  width: 100%;
  padding: 0;
}

.offcanvas .offcanvas-body .notify-content .notify_form {
  position: relative;
}

.offcanvas .offcanvas-body .notify-content .notify_form button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.offcanvas .offcanvas-body .notify-content li {
  background: #fff;
  border-radius: 10px;
  padding: 5px 10px;
  margin: 0;
  cursor: pointer;
  margin-bottom: 20px;
  display: flex;
  align-items: start;
  justify-content: start;
}

.offcanvas .offcanvas-body .notify-content li i {
  font-size: 25px;
}

.offcanvas .offcanvas-body .notify-content li p {
  margin: 0;
  margin-top: 5px;
  font-size: 15px;
}

.offcanvas .offcanvas-body .notify-content li span {
  font-style: italic;
  display: block;
  margin-top: 5px;
}

.offcanvas .offcanvas-body a {
  color: unset;
  text-decoration: none;
}

.offcanvas .offcanvas-body a .read-notification {
  opacity: 0.5;
}

.offcanvas .offcanvas-body a .unread-notification {
  font-weight: bold;
}

.view-profile .action_wrap i,
.edit-profile .action_wrap i {
  background-color: #61BC09;
  color: #fff;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.product-bids .card .card-body {
  padding: 15px;
  border-radius: 10px;
}

@media (min-width: 1200px) {
  .product-bids .card .card-body .bid-content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 991.98px) {
  .product-bids .card .card-body .bid-content {
    justify-content: start;
  }
}

.product-bids .card .card-body .bid-content p {
  margin: 0;
}

@media (max-width: 991.98px) {
  .product-bids .card .card-body .bid-content p {
    margin-bottom: 5px;
  }
}

.product-bids .card .card-body .bid-list {
  list-style: none;
  display: flex;
  padding-left: 1.5rem;
}

@media (max-width: 767.98px) {
  .product-bids .card .card-body .bid-list {
    display: block;
  }
}

.product-bids .card .card-body .bid-list li {
  min-width: 300px;
  display: flex;
  gap: 20px;
}

.product-bids .card .card-body .bid-list li p {
  margin-bottom: 0;
}

.product-bids .card .card-body .bid-list li p.bid-amount {
  font-weight: 500;
}

@media (min-width: 768px) {
  .product-bids .card .card-body .bid-list li:not(:last-child) {
    margin-right: 3rem;
  }
}

.product-bids .card .card-body .accept-bid {
  padding: 0 1.5rem;
}

.product-bids .card .card-body .accept-bid .btn {
  background-color: #61BC09;
  color: #fff;
}

.product-bids .card .card-body .accept-bid .btn.disabled {
  background-color: #e9ecef;
  color: #224A5B;
}

.product-bids .card .payment-choice h5 {
  font-weight: 500;
}

.product-bids .card .payment-choice p {
  font-size: 18px;
  font-weight: 500;
}

.product-bids .card .payment-choice ul {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
}

@media (max-width: 767.98px) {
  .product-bids .card .payment-choice ul {
    display: block;
  }
}

.product-bids .card .payment-choice ul li p {
  font-size: 14px;
  margin: 10px 0px;
}

.product-bids .card .payment-choice ul li p span {
  width: 120px;
  display: inline-block;
}

.product-bids .card .payment-choice ul li.account-details {
  padding-right: 30px;
  margin-right: 30px;
}

@media (max-width: 767.98px) {
  .product-bids .card .payment-choice ul li.account-details {
    padding-right: 0px;
    margin-right: 0px;
    border-right: none;
  }
}

.product-bids .card .payment-choice ul li .btn.pay-online {
  background-color: #224A5B;
  color: #fff;
  width: 100px;
  padding: 5px 0px;
}

.product-bids .card.success-msg {
  height: 500px;
  padding: 5rem;
}

@media (max-width: 7688px) {
  .product-bids .card.success-msg {
    padding: 1rem;
  }
}

.product-bids .card.success-msg h5 {
  color: #153644;
  text-align: center;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg h5 {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .product-bids .card.success-msg a {
    font-size: 14px;
  }
}

.product-bids .card.success-msg .sent h5 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg .sent h5 {
    font-size: 18px;
  }
}

.product-bids .card.success-msg .sent p {
  max-width: 650px;
  margin: 30px auto;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg .sent p {
    font-size: 16px;
  }
}

.product-bids .card.success-msg .not_received h5, .product-bids .card.success-msg .error h5 {
  font-size: 30px;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg .not_received h5, .product-bids .card.success-msg .error h5 {
    font-size: 18px;
  }
}

.product-bids .card.success-msg .not_received a, .product-bids .card.success-msg .error a {
  display: block;
  width: 100%;
  text-align: center;
  margin: 30px auto;
  font-size: 20px;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg .not_received a, .product-bids .card.success-msg .error a {
    font-size: 16px;
  }
}

.product-bids .card.success-msg .received a {
  display: block;
  width: 100%;
  text-align: center;
  margin: 15px auto;
  font-size: 20px;
}

@media (max-width: 768px) {
  .product-bids .card.success-msg .received a {
    font-size: 16px;
  }
}

.product-bids.buyer-info .buyer-info {
  min-height: 600px;
  padding: 20px;
}

.product-bids.buyer-info .buyer-info span {
  display: inline-block;
  width: 200px;
  font-weight: 500;
}

.product-bids.buyer-info .buyer-info .shipment-status {
  display: flex;
  align-items: center;
}

@media (max-width: 767.98px) {
  .product-bids.buyer-info .buyer-info .shipment-status {
    display: block;
  }
}

.product-bids.buyer-info .buyer-info .shipment-status h5 {
  margin: 0;
}

@media (max-width: 767.98px) {
  .product-bids.buyer-info .buyer-info .shipment-status h5 {
    margin-bottom: 15px;
  }
}

.product-bids.buyer-info .buyer-info .shipment-status .custom-select {
  height: 30px;
  width: 200px;
}

@media (max-width: 767.98px) {
  .product-bids.buyer-info .buyer-info .shipment-status .custom-select {
    margin-bottom: 15px;
    width: 100%;
  }
}

.add-product .bid-setting .nav-tabs .nav-link {
  color: #224A5B;
  font-weight: bold;
  font-size: 16px;
}

.add-product .bid-setting .nav-tabs .nav-link.active {
  color: #61BC09;
}

.services .banner-home {
  height: 130px;
}

.services .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .services .banner-home p {
    font-size: 18px;
  }
}

.services .steps-progress {
  padding: 60px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #404040;
}

@media (max-width: 767.98px) {
  .services .steps-progress {
    padding: 30px 0px;
  }
}

.services .steps-progress h1 {
  margin: 0;
}

@media (max-width: 767.98px) {
  .services .steps-progress h1 {
    font-size: 20px;
    font-weight: bold;
  }
}

.services .steps-progress .steps-list {
  width: 100%;
  position: relative;
  list-style: none;
  padding: 0;
}

.services .steps-progress .steps-list::before {
  display: inline-block;
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 90%;
  border-left: 2px dashed #a8aba7;
  margin-left: -1px;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list::before {
    position: unset;
    width: unset;
    height: unset;
    border-left: unset;
  }
}

.services .steps-progress .steps-list .steps-item {
  position: relative;
  width: 50%;
  counter-increment: my-counter;
  min-height: 80px;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item {
    width: 100%;
    min-height: unset;
  }
}

.services .steps-progress .steps-list .steps-item p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  background: #f5f5f5;
  padding: 10px;
  border-radius: 10px;
  border: #ddd solid 1px;
  position: relative;
}

.services .steps-progress .steps-list .steps-item p::after, .services .steps-progress .steps-list .steps-item p::before {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.services .steps-progress .steps-list .steps-item p::before {
  left: 0;
  border-width: 1px 1px 1px 0;
  border-right-color: #ddd;
}

.services .steps-progress .steps-list .steps-item p::after {
  left: 1px;
  border-width: 1px 1px 1px 0;
  border-right-color: #fff;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item p {
    margin: 0;
    background: unset;
    padding: 0;
    color: #224A5B;
    line-height: 1.8;
    padding-left: 30px;
    font-size: 13px;
    padding: 20px;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(even) {
  padding-right: 45px;
  text-align: right;
  float: left;
  clear: both;
  position: relative;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(even) {
    padding-right: 0;
    text-align: unset;
    float: unset;
    margin-bottom: 15px;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(even)::before {
  content: '';
  position: absolute;
  background-image: url(../img/right-arrow.svg);
  background-repeat: no-repeat;
  top: 9px;
  right: 36px;
  background-size: cover;
  width: 10px;
  height: 16px;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(even)::before {
    content: unset;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(even)::after {
  content: counter(my-counter);
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #52c234;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: #FFF solid 2px;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(even)::after {
    left: 0;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(odd) {
  float: right;
  padding-left: 45px;
  clear: both;
  position: relative;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(odd) {
    float: unset;
    padding-left: 0;
    margin-bottom: 15px;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(odd)::before {
  content: '';
  position: absolute;
  background-image: url(../img/left-arrow.svg);
  background-repeat: no-repeat;
  top: 9px;
  left: 36px;
  background-size: cover;
  width: 10px;
  height: 16px;
  z-index: 1;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(odd)::before {
    content: unset;
  }
}

.services .steps-progress .steps-list .steps-item:nth-child(odd)::after {
  content: counter(my-counter);
  position: absolute;
  top: 0;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #52c234;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: #FFF solid 2px;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list .steps-item:nth-child(odd)::after {
    left: 0;
    width: 24px;
    height: 24px;
    font-size: 10px;
  }
}

.services .steps-progress .steps-list.buyer_side :nth-child(odd)::after,
.services .steps-progress .steps-list.buyer_side :nth-child(even)::after {
  background-color: #224A5B;
}

@media (max-width: 767.98px) {
  .services .steps-progress .steps-list.buyer_side p {
    background: unset;
  }
}

.services footer {
  background-color: #F1F3F8;
}

.faqs .banner-home {
  height: 130px;
}

.faqs .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .faqs .banner-home p {
    font-size: 18px;
  }
}

.faqs .accordion {
  max-width: 1000px;
  margin: auto;
}

.faqs .accordion .accordion-item {
  margin-bottom: 30px;
}

.faqs .accordion .accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.faqs .accordion .accordion-item .accordion-button {
  font-weight: 500;
  line-height: 1.5;
  transition: none;
}

@media (max-width: 767.98px) {
  .faqs .accordion .accordion-item .accordion-button {
    font-size: 13px;
  }
}

.faqs .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #61BC09;
  background-color: unset;
}

.faqs .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  filter: brightness(0%) saturate(0%);
}

.faqs .accordion .accordion-item .accordion-button:focus {
  z-index: 3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  outline: 0;
  box-shadow: unset;
}

.faqs .accordion .accordion-item .accordion-button.collapsed:focus {
  border-bottom: unset;
}

.faqs .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.faqs .accordion .accordion-item .accordion-body {
  line-height: 1.8;
}

@media (max-width: 767.98px) {
  .faqs .accordion .accordion-item .accordion-body {
    font-size: 12px;
  }
}

.faqs footer {
  background-color: #F1F3F8;
}

/* file format upload types */
.file_format {
  font-size: 15px;
  margin: 12px 0px;
}

.select2-dropdown--below {
  z-index: 1;
}

.select2-container, .select2-selection, .select2-selection__rendered, .select2-selection__arrow {
  min-height: 42px;
  width: 100% !important;
  display: block;
}

.select2-container.select2-container--default.select2-container--open {
  width: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  display: flex;
  align-items: center;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #61bc09;
}

.select2-results__options::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.select2-results__options::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background-color: #61bc09;
}

.select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: #61bc09;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  left: unset;
  right: 15px;
}

.form-floating .select2-container, .form-floating .select2-selection, .form-floating .select2-selection__rendered, .form-floating .select2-selection__arrow {
  height: calc(3.5rem + 2px) !important;
  line-height: 1.25;
  outline: 0;
}

.form-floating .select2-container--default .select2-selection--single .select2-selection__rendered {
  padding: 20px 11px;
  padding-bottom: 0;
  font-size: 14px;
}

#countdown-timer, .timer_end {
  display: block;
  margin: 10px 0px;
  font-size: 1.5rem;
  color: #ff0000;
}

.bid_ended {
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  margin: 15px 0px;
}

#bid_countdown h5.counter_msg {
  font-size: 18px;
  font-weight: bold;
  color: #ff0000;
  margin: 15px 0px;
}

#bid_countdown .countdown-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}

#bid_countdown .countdown-container .countdown-el {
  position: relative;
  background-clip: padding-box;
  border: solid 1px transparent;
  border-radius: 1rem;
  box-shadow: 0.5rem 1rem 2rem rgba(0, 0, 0, 0.25);
  padding: 10px;
}

#bid_countdown .countdown-container .countdown-el :before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -1px;
  border-radius: inherit;
}

@media screen and (max-width: 767.98px) {
  #bid_countdown .countdown-container .countdown-el {
    padding: 0.75rem;
  }
}

#bid_countdown .countdown-container .countdown-el p {
  background-clip: text;
  background-clip: text;
  color: #ff0000;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 767.98px) {
  #bid_countdown .countdown-container .countdown-el p {
    font-size: 2rem;
  }
}

#bid_countdown .countdown-container .countdown-el span {
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #224A5B;
  display: block;
  text-align: center;
}

@media screen and (max-width: 767.98px) {
  #bid_countdown .countdown-container .countdown-el span {
    font-size: 1rem;
  }
}

#bid_countdown .countdown-container.start_days {
  grid-template-columns: repeat(4, 1fr);
}

#bid_countdown .countdown-container.start_days .countdown-el {
  padding: 1rem;
}

#bid_countdown .countdown-container.start_days .countdown-el p {
  font-size: 20px;
  margin: 0;
}

#bid_countdown .countdown-container.start_days .countdown-el span {
  font-size: 12px;
}

.flatpickr-input {
  background-color: transparent !important;
}

.flatpickr-calendar.animate.open {
  z-index: 0;
}

a.thumbnail {
  display: flex;
  flex-direction: column;
  color: #153644;
}

a.thumbnail:hover {
  color: #61bc09;
}

a.thumbnail i {
  font-style: normal;
  max-width: 190px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
}

a.thumbnail i::before {
  margin-right: 0.5rem;
}

a.thumbnail img {
  width: 60px;
  cursor: pointer;
  height: auto;
  margin: 12px 0px;
  height: 60px;
}

.remove-file.thumb {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: -10px;
  color: #fff;
  background: #dc3545;
  border: 1px solid #DC3544;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.termsAndCond .banner-home {
  height: 130px;
}

.termsAndCond .banner-home p {
  bottom: 0;
  margin: 0;
  font-weight: 900;
  font-size: 30px;
}

@media (max-width: 767.98px) {
  .termsAndCond .banner-home p {
    font-size: 18px;
  }
}

.termsAndCond ul li {
  line-height: 2;
}

.btn-ring {
  display: none;
}

.btn-ring:after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  margin: 8px;
  border-radius: 50%;
  border: 3px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: ring 1.2s linear infinite;
}

@keyframes ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* btn_wrap loader button */
.btn_wrap button, .spin_btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 5px !important;
  height: 40px !important;
  width: 120px;
  min-width: max-content;
}

.btn_wrap .btn-ring:after,
.spin_btn .btn-ring:after {
  width: 20px;
  height: 20px;
}

.panel-search-style {
  display: none;
  background-color: white;
  border-radius: 10px;
  height: 250px;
  width: 70%;
  padding: 0;
}

.panel-search-style::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

.panel-search-style::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.panel-search-style::-webkit-scrollbar-thumb {
  background-color: #224A5B;
}

.panel-search-style::-webkit-scrollbar-thumb:hover {
  background-color: #224A5B;
}

.panel-search-style ul {
  padding: 0;
  overflow: hidden;
}

.products-header {
  background-color: #224A5B;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-size: 22px;
  height: 50px;
  align-items: center;
  display: flex;
  margin: 0;
}

.navigation-icon {
  display: flex;
  display: flex;
  position: relative;
  justify-content: end;
  bottom: 77px;
  right: 29px;
}

.bottom-line {
  border-bottom: 1px solid #9bb9c6;
  margin-bottom: 10px;
}

.productsearch {
  margin: 0;
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.productsearch .product_login_btn {
  background: #224A5B;
  border-radius: 20px;
  color: #fff;
  margin: 0;
  width: max-content;
  padding: 10px;
  position: absolute;
  right: 5px;
  bottom: 10px;
  font-size: 15px;
  display: none;
}

.productsearch:hover .product_login_btn {
  display: block;
}

/* rating */
.rating-css div {
  color: #ffc107;
  font-family: sans-serif;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  padding: 0;
  display: flex;
  font-size: 25px;
}

.rating-css input {
  display: none;
}

.rating-css input + label {
  font-size: 30px;
  cursor: pointer;
  border-radius: 0;
}

.rating-css input:checked + label ~ label {
  color: #868686;
}

.rating-css label:active {
  transform: scale(0.8);
  transition: 0.3s ease;
}

.detailed-view .rating-css label::after {
  display: none;
}

.card_height {
  min-height: 130px;
  max-height: 130px;
}

.card_height .card-body {
  display: flex;
  align-items: center;
}

.rating-css span {
  font-size: 15px;
  margin: 0 10px;
}

.rating-css span.text-danger {
  margin: 0;
}

.rating_stars {
  --percent: calc(var(--rating) / 5 * 100%);
  display: inline-block;
  font-family: Times;
}

.rating_stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ffc107 var(--percent), #868686 var(--percent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.rating_stars .mdi.mdi-star:before {
  content: "\f005";
  display: none;
}

/* End of Star Rating */
/* Custom Radio/checkbox Buton */
.user_tabs.text-primary {
  border-bottom: 3px solid #61bc09;
}

a.user_tabs.nav-link.text-primary:hover {
  border-radius: unset;
}

.form-check.radio {
  display: flex;
  align-items: center;
}

.form-check-input {
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
}

.form-check-input:checked {
  background-color: #61bc09;
  border-color: #61bc09;
}

.form-check-input:checked[type="radio"] {
  background-image: url("../img/white-tick.svg");
  background-size: 70% 70%;
  background-repeat: no-repeat;
  background-position: center center;
}

.form-check-input:focus {
  border-color: #61bc09;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #61bc0930;
}

.custom_checkbox {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  flex: none;
}

.terms_bg {
  border: 2px solid #ff0000;
  padding: 15px;
  background-color: #f5f5f5;
}

.terms_bg .ml_wrap {
  margin-left: 30px;
}

@media screen and (min-width: 992px) and (max-width: 1400px) {
  header.user_layout .navbar ul.main-nav li a {
    padding: 10px 0px;
    font-size: 14px;
  }
  header.user_layout .navbar .top-left {
    padding: 10px 5px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1300px) {
  header.home_layout .navbar ul.main-nav li a {
    padding: 10px;
    font-size: 12px;
  }
  header.home_layout .navbar .user-nav {
    margin: auto 0 auto 0;
    padding: 0px;
    padding-right: 5px;
  }
  header.home_layout .navbar .top-left {
    padding: 10px 5px;
  }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .products .chemical_items .maincard .content-container .chemical-card .details {
    grid-template-columns: minmax(120px, 1fr) repeat(6, 1fr);
  }
  .contact-us .contactus-form .contact-list {
    padding: 10px 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .linkedin {
    justify-content: start !important;
    display: inline-block !important;
  }
}

.remove-links i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 25px;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
  font-style: unset;
  background-color: #dc3545;
}

.reset-btn {
  border: 1px solid #224A5B;
  color: #224A5B;
  background: #fff;
}

/* ranjith responsive */
.profile.dropdown .dropdown-toggle::after {
  display: none;
}

@media screen and (min-width: 992px) and (max-width: 1390px) {
  .custom-bid-row {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  header .navbar ul.main-nav li.notifications, .website_btn {
    margin-top: 15px;
  }
  .user_layout header .navbar .user-nav li.profile span {
    display: block;
    margin-left: 10px;
  }
  header .navbar .user-nav li.profile span {
    display: block;
    margin-left: 10px;
  }
  header .navbar .user-nav li.profile.wrap span {
    display: none;
  }
}

@media screen and (max-width: 440px) {
  .shipment-btn {
    margin-top: 5px;
  }
}

.toggle-password {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.custom_input .group {
  display: flex;
  align-items: center;
}

.custom_input .group .input-group-text {
  height: 55px;
}

.custom_input .group .form-floating {
  flex-grow: 1;
}
.page-item.active .page-link{
    background-color: #61BC09 !important;
    border-color: #61BC09 !important;
}

.page-link {
    color: #61BC09;
}

.nodata-link{
    font-size: 20px;
    color: #878787;
    text-align: left;
}
.nodata-link a{
    color: #61BC09;
    font-weight: 600;
}

td.nodata-link{
    font-size: 16px;
    text-align: left;
    padding: 50px;
}

header .navbar ul.main-nav li a.sell-product{
   background-color: #61BC09;
   color: #FFF;
   border-radius: 5px;
   padding: 5px 10px;
}

.sell-product-banner {
    margin-bottom: 30px;
    text-align: center;
}
.cta-sell-product {
    padding: 15px 30px;
    display: inline-flex;
    border-radius: 30px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
        background-size: 300% 100%;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
        background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
   /* box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75); */
}
.cta-sell-product:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;

    color: #FFF;
}

.py-10{
    padding: 8rem 0;
}

.blog-posts .card {
    margin-top:20px;
}




@media screen and (max-width: 767px) {

  .py-10{
    padding: 3rem 0;
}  
.blog-post{
    padding: 20px;
}
}





































