@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

html {
  background-color: #f4f4f4;
}
html, body {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
}
main {
  flex: 1; 
}
.simple-section {
  padding: 50px 0;
}

.section-title-with-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.section-title-with-action h3 {
  font-size: 22px;
  margin: 0;
}

.section-title.title-sm p {
  font-size: 16px;
}
.section-title p {
  color: #000;
  font-size: 20px;
}
.section-title h3 {
  font-size: 48px;
}
.section-title h3 span {
  color: #000;
}

.divider {
  height: 1px;
  background-color: #e9e9e9;
}

.cta {
  text-align: center;
  /* background-color: #f4f4f4; */
  border-radius: 10px;
  padding: 100px 20px;
  position: relative;
}
.cta .img-left {
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 298px;
}
.cta .img-right {
  position: absolute;
  right: 30px;
  top: 0;
  width: 350px;
}
.cta h2 {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
}
.cta p {
  max-width: 360px;
  margin: auto;
}

.bg-lite {
  background-color: #f4f4f4;
}

div::-webkit-scrollbar {
  width: 4px;
}

div::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.3);
}

div::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 768px) {
  .simple-section {
    padding: 30px 0;
  }
  .section-title h3 {
    font-size: 40px;
    margin: 10px 0;
  }
  .start-button {
    margin-bottom: 24px;
    margin-top: -18px;
  }
  .cta {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 35px 20px;
  }
  .cta .img-right {
    display: none;
  }
  .cta .img-left {
    position: relative;
    left: unset;
    bottom: 0;
    width: 100%;
  }
  .cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
/*.ripple:hover {
	background: #74b126;
	color: #fff;
}*/
.button {
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.1);
  width: 10%;
  height: 25%;
  border-radius: 50%;
  z-index: 1;
  top: 35%;
  left: 45%;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.button:hover::before {
  -webkit-transform: scale(12);
  transform: scale(12);
  -webkit-transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: border-radius 0.5s 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s;
  transition: transform 0.5s, border-radius 0.5s 0.5s, -webkit-transform 0.5s;
}
.button:hover::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.button {
  display: inline-block;
  padding: 10px 18px;
  text-align: center;
  border: 1px solid transparent;
  font-size: 16px;
  text-decoration: none;
}
.button.button-primary {
  background-color: #db0029;
  color: #fff;
}
.button.button-outline-primary {
  border-color: #db0029;
  color: #db0029;
}
.button.button-round {
  border-radius: 80px;
}
.button.button-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.button.button-icon i {
  font-size: 20px;
}

.underline {
  position: relative;
}
.underline:hover {
  color: #2c2c2c !important;
}

.underline::before {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -3px;
  background-color: #2c2c2c;
  transition: 0.3s;
  opacity: 0;
}

.underline:hover::before {
  width: 100%;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .button {
    padding: 8px 12px;
  }
  .button.button-outline-primary {
    padding: 4px 8px;
    font-size: 14px;
  }
}
.hero-section {
  min-height: 100vh;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hero-section .hero-image-left,
.hero-section .hero-image-right {
  flex: 1;
  max-width: 25%; /* Adjust size as needed */
  text-align: center;
}
.hero-section .hero-image-right {
  right: 44px;
  top: 0;
  position: absolute;
}
.hero-section .hero-image-left img {
  margin-top: 175px;
  max-width: 540px !important;
}

.hero-section .hero-image-left img {
  max-width: 100%;
  height: auto;
}
.hero-section .hero-image-right img {
  max-width: 390px;
  height: auto;
}

.hero-section .hero-content {
  flex: 2;
  text-align: center;
  padding: 20px;
}

.hero-section .hero-content h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-section .hero-content h1 span {
  color: #db0029;
}

.hero-section .hero-content .hero-form {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-section .hero-content .hero-form .input {
  position: relative;
}

.hero-section .hero-content .hero-form .input input {
  border: 1px solid #dddddd;
  height: 50px;
  width: 350px;
  border-radius: 10px 0 0 10px;
  padding: 4px 4px 4px 46px;
}

.hero-section .hero-content .hero-form .input input:focus {
  outline: none;
}

.hero-section .hero-content .hero-form .input i {
  color: #000;
  position: absolute;
  left: 14px;
  top: 7px;
  font-size: 24px;
}

.hero-section .hero-content .hero-form button {
  height: 50px;
  border-radius: 0 10px 10px 0;
  background-color: #db0029;
  color: #fff;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.hero-section .hero-content .hero-form button:hover {
  background-color: #c30024;
}
.hero-mobile-image {
  display: none;
}

@media screen and (max-width: 767px) {
  .hero-mobile-image {
    display: block;
    text-align: center; /* Center the image on mobile */
  }
  .hero-image-right {
    display: none;
  }
  .hero-image-left {
    display: none;
  }
  .hero-mobile-image img {
    width: 100%;
    margin-top: 10px;
    height: auto; /* Ensure the image scales proportionally */
  }
  .hero-section {
    background-image: none;
    background-color: #ebf2ff;
    display: block;
    padding-top: 120px;
    padding-bottom: 20px; /* Add padding to avoid content sticking to the bottom */
  }
  .hero-section .hero-content {
    text-align: center; /* Center-align content for better mobile readability */
    padding: 0 15px; /* Add padding to prevent content from touching screen edges */
  }
  .hero-section .hero-content h1 {
    font-size: 34px;
    line-height: 1.2; /* Improve readability on smaller screens */
  }
  .hero-section .hero-content .hero-form {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center align form fields */
  }
  .hero-section .hero-content .hero-form .input {
    position: relative;
    width: 100%; /* Ensure input fields take full width */
    max-width: 340px; /* Set max-width to prevent overly wide inputs */
  }
  .hero-section .hero-content .hero-form .input i {
    position: absolute;
    left: 14px;
    top: 10px; /* Adjust position for better alignment */
    font-size: 20px;
    color: #999; /* Add subtle color to icons */
  }
  .hero-section .hero-content .hero-form .input input {
    width: 100%;
    height: 40px;
    border-radius: 5px 5px 0 0;
    padding-left: 40px; /* Add padding for icon */
    border: 1px solid #ddd; /* Add border for better visibility */
  }
  .hero-section .hero-content .hero-form button {
    width: 100%;
    max-width: 340px; /* Match max-width of input fields */
    height: 40px;
    border-radius: 0 0 5px 5px;
    background-color: #db0029;
    color: #fff;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
  }
  .hero-section .hero-content .hero-form button:hover {
    background-color: #c30024; /* Slightly darker shade on hover */
  }
}

.explore-categories {
  background-color: #f4f8ff;
}

.categories {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
}
.categories.on-white li a {
  background-color: #f4f4f4;
}
.categories li {
  flex: 1;
}
.categories li a {
  background-color: #fff;
  text-decoration: none;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #2c2c2c;
  text-align: center;
}
.categories li a i {
  font-size: 22px;
  color: #959595;
}
.categories li a:hover {
  background-color: #db0029;
  -webkit-transition: background-color 0.3s linear;
  -ms-transition: background-color 0.3s linear;
  transition: background-color 0.3s linear;
  color: #fff;
}
.categories li a:hover i {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .categories {
    overflow-x: scroll;
  }
  .categories li {
    min-width: 120px;
  }
  .categories li a {
    font-size: 14px;
  }
  .page-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 5;
  }
  .page-overlay.active {
    display: block;
  }
  #category-sidebar {
    position: fixed;
    width: 80%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 6;
    overflow-y: scroll;
    transform: translateX(-100%);
    transition: all 0.5s ease;
  }
  #category-sidebar.active {
    transform: translateX(0);
  }
}
.accordian-theme .accordion-item {
  border: none;
}
.accordian-theme
  .accordion-item
  .accordion-header
  .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}
.accordian-theme .accordion-item .accordion-header button {
  padding: 10px;
}
.accordian-theme .accordion-item .accordion-header button:focus,
.accordian-theme .accordion-item .accordion-header button:active {
  outline: none;
  box-shadow: none;
}
.accordian-theme .accordion-item .accordion-header button i {
  width: 40px;
  margin-right: 16px;
  background-color: #db0029;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: white;
}
.accordian-theme .accordion-item .accordion-body {
  padding: 0;
}
.accordian-theme .accordion-item .accordian-content {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 6px;
  margin: 0 10px 0 62px;
}

.reviews {
  background-color: #fff8f8;
}

.review-type {
  display: inline-block;
  color: #fff;
  padding: 0 20px 0 16px;
  font-size: 13px;
  border-radius: 6px 20px 0 0;
  text-transform: uppercase;
}
.review-type.green {
  background-color: #48d53c;
}
.review-type.blue {
  background-color: #2394b7;
}
.review-type.red {
  background-color: #ef5d5d;
}

.review-item {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}
.review-item .stars {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}
.review-item .stars i {
  color: #efc55d;
  font-size: 28px;
}
.review-item h6 {
  color: #404040;
  font-size: 14px;
}
.review-item .review-user {
  border-top: 1px solid #e5e5e5;
  margin-top: 20px;
  padding: 15px 0;
}

.user-detail .name {
  display: flex;
  align-items: center;
}
.user-detail .name h4 {
  font-size: 15px;
  margin: 0;
}
.user-detail .time {
  margin-top: 3px;
  font-size: 13px;
  color: #7f7f7f;
}

.review-card {
  background-color: #fff;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #ededed;
}
.review-card > .rating-wrap {
  margin: -14px 0 0 47px;
}
.review-card .rc-comment {
  padding: 10px 0;
}
.review-card .rc-footer {
  border-top: 1px solid #e5e5e5;
  padding-top: 8px;
}
.review-card .rc-footer ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-card .rc-footer ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-card .rc-footer ul li span {
  color: #7f7f7f;
  font-weight: 300;
}

.rc-head {
  display: flex;
  gap: 8px;
}
.rc-head .avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.rc-head .rc-body .rc-time {
  margin-top: 2px;
  color: #858585;
  font-size: 13px;
}
.rc-head .name-detail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rc-head .name-detail h4 {
  font-size: 15px;
  margin: 0;
}
.navbar-collapse.show {
  background: rgb(255, 255, 255);
  position: relative;
  z-index: 1;
}
.rc-head .name-detail > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 0px 10px;
  font-size: 13px;
}
.rc-head .name-detail > span.expert {
  background-color: #f6edff;
  color: #5315a2;
}

.c-badge {
  position: relative;
}
.c-badge > span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  margin-top: -1px;
  font-weight: bold;
}
.c-badge img {
  width: 28px;
}
.c-badge.green svg path {
  fill: #48d53c;
}
.c-badge.blue svg path {
  fill: #3dbae0;
}

.badge-popover {
  display: flex;
}
.badge-popover .badge-icon {
  position: relative;
}
.badge-popover .badge-icon > span {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  margin-top: -24px;
  font-weight: bold;
}
.badge-popover.green .badge-info h4 {
  color: #48d53c;
}
.badge-popover .badge-info {
  padding-left: 12px;
}
.badge-popover .badge-info h4 {
  font-size: 14px;
}
.badge-popover .badge-info h4 span {
  color: #858585;
}
.badge-popover .badge-info p {
  font-size: 11px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .review-scroll {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .review-card {
    margin-bottom: 20px;
  }
}
.page-header {
  padding: 100px 0;
  background-color: #000;
  min-height: 350px;
  margin-top: 84px;
}
.page-header .page-title h1 {
  text-align: center;
  color: #fff;
  font-size: 50px;
}
.page-header .search-box {
  max-width: 360px;
  margin: 30px auto 0 auto;
  position: relative;
}
.page-header .search-box input {
  width: 100%;
  height: 46px;
  border-radius: 6px;
  border: none;
  padding-left: 40px;
}
.page-header .search-box i {
  position: absolute;
  top: 9px;
  left: 14px;
  font-size: 18px;
  color: #000;
}

.breadcrumb .breadcrumb-item::before {
  color: #85858a;
}
.breadcrumb .breadcrumb-item a {
  color: #85858a;
}
.breadcrumb .breadcrumb-item.active {
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .page-header .page-title h1 {
    font-size: 32px;
  }
  .breadcrumb {
    margin-bottom: 60px;
  }
  .breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
  .breadcrumb .breadcrumb-item a {
    font-size: 13px;
  }
}
.theme-card {
  background-color: #fff;
  padding: 20px 16px;
  border-radius: 12px;
}
.theme-card .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.theme-card .card-title h6 {
  font-size: 16px;
  font-weight: 600;
}
.theme-card .card-head {
  display: flex;
  align-items: center;
}
.theme-card .card-head h5 {
  font-size: 18px;
  margin: 0;
}
.theme-card .card-head i {
  color: #787878;
  margin-left: 5px;
}
.theme-card .card-head p {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
.theme-card .card-head .card-action a {
  text-decoration: none;
  color: #787878;
  font-size: 15px;
}
.theme-card .rating ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.theme-card .rating ul li {
  margin-right: 5px;
}
.theme-card .rating ul li i {
  font-size: 24px;
  color: #efc65d;
}

.last-review a {
  text-decoration: none;
  color: #787878;
}
.last-review i {
  color: #787878;
}

@media screen and (max-width: 767px) {
  .theme-card {
    width: 80%;
    position: relative;
    top: 0;
    left: 0;
  }
  .theme-card-close {
    display: block !important;
    margin-bottom: 15px;
  }
  .theme-card-close p {
    font-size: 26px;
    margin: 0;
  }
  .theme-card-close .close-button {
    position: absolute;
    background: #fcfafa;
    padding: 2px 6px;
    border-radius: 4px;
    top: 18px;
    right: 14px;
    cursor: pointer;
    margin-top: 5px;
  }
}
.filter-box {
  margin-top: 20px;
}
.filter-box h4 {
  font-size: 16px;
  margin: 0 0 15px 0;
  font-weight: 600;
}

.company-status-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.company-status-list li label {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
}
.company-status-list li span {
  color: #878787;
}
.company-status-list li i {
  color: #878787;
  font-size: 18px;
}

.filter-inline {
  display: flex;
  align-items: center;
  gap: 30px;
}
.filter-inline.end {
  justify-content: flex-end;
}
.filter-inline .filter-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-inline .filter-item a {
  color: #858585;
}
.filter-inline .filter-item label {
  white-space: nowrap;
}
.filter-inline .filter-item .star-filter {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 4px;
}
.filter-inline .filter-item .star-filter li i {
  font-size: 30px;
  color: #efc55d;
}
.filter-inline .filter-item .separator span {
  display: inline-block;
  height: 30px;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.filter-button {
  display: none;
}

@media screen and (max-width: 767px) {
  .company-title .filter-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin: 25px 0 15px 0;
  }
  .company-title .filter-category .filter-button {
    display: block;
  }
  .company-title .filter-category .filter-button button {
    padding: 6px 47px;
  }
}
.form-group label {
  margin-bottom: 6px;
}
.form-group.input-icon {
  position: relative;
}
.form-group.input-icon .form-control {
  padding-left: 34px;
}
.form-group.input-icon i {
  position: absolute;
  top: 7px;
  left: 10px;
}

.rate {
  display: flex;
  justify-content: flex-end; /* Align the stars to the left */
  flex-direction: row-reverse;
}

.rate > label.star {
  position: relative;
  width: 1em;
  font-size: 30px;
  color: #ccc;
  cursor: pointer;
}

.rate > label.star::before {
  content: "★ ";
}

.rate > label.star:hover,
.rate > label.star:hover ~ label.star,
.rate > input:checked ~ label.star {
  color: #ffc700;
}

.rate > input:checked ~ label.star:hover,
.rate > input:checked ~ label.star:hover ~ label.star,
.rate > label.star:hover ~ input:checked ~ label.star {
  color: #ffc700;
}

/* Oculta los inputs de radio */
.rate > label.star > input {
  display: none;
}

/* Oculta los labels internos */
.rate > label.star > label {
  display: none;
}

.replyoptions,
.replyoptionsred,
.replyoptionsgreen,
.replyoptionsblue {
  padding: 8px 12px;
  border-radius: 50px;
  transition: all 0.2s ease;
  background-color: transparent;
  color: black;
  cursor: pointer;
  border: 1px solid transparent;
}

.replyoptions:hover {
  background-color: #e0e0e0; /* Color gris claro */
  color: #0d0f11; /* Color del texto */
  border: 1px solid #0d0f11;
}
.replyoptionsred:hover {
  background-color: #e0e0e0; /* Color gris claro */
  color: #db0029; /* Color del texto */
  border: 1px solid #db0029;
}
.replyoptionsgreen:hover {
  background-color: #e0e0e0; /* Color gris claro */
  color: #0bcf0b; /* Color del texto */
  border: 1px solid #0bcf0b;
}
.replyoptionsblue:hover {
  background-color: #e0e0e0; /* Color gris claro */
  color: #0079d3; /* Color del texto */
  border: 1px solid #0079d3;
}

.replyoptions:hover,
.replyoptions.active {
  background-color: white; /* Color gris claro */
  color: #0d0f11; /* Color del texto */
  border: 1px solid white;
}

.replyoptionsred:hover,
.replyoptionsred.active {
  background-color: white; /* Color gris claro */
  color: #db0029; /* Color del texto */
  border: 1px solid white;
}

.replyoptionsgreen:hover,
.replyoptionsgreen.active {
  background-color: white; /* Color gris claro */
  color: #0bcf0b; /* Color del texto */
  border: 1px solid white;
}

.replyoptionsblue:hover,
.replyoptionsblue.active {
  background-color: white; /* Color gris claro */
  color: #0079d3; /* Color del texto */
  border: 1px solid white;
}

.replyoptions:hover span,
.replyoptionsred:hover span,
.replyoptionsgreen:hover span,
.replyoptionsblue:hover span {
  color: black !important;
  font-weight: 400 !important;
}

.form-check-input:checked {
  background-color: #db0029;
  border-color: #db0029;
}

.reg-form {
  background-color: #db0029;
}

.form-pre-reg {
  background-color: white;
  padding: 50px;
  border-radius: 12px;
}

.company-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-item {
  position: relative;
  background-color: #fff;
  padding: 20px 16px 10px 16px;
  border-radius: 16px;
  margin-bottom: 20px;
}
.company-item .company-tag {
  position: absolute;
  right: 20px;
  top: 20px;
}
.company-item .company-tag span {
  display: inline-block;
  background-color: #effdef;
  padding: 4px 6px;
  color: #34be27;
  border-radius: 50px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
}
.company-item .company-name {
  display: flex;
}
.company-item .company-name .company-logo {
  margin-right: 16px;
}
.company-item .company-name .company-detail h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}
.company-item .company-name .company-detail .location {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 300;
  margin-top: 3px;
}
.company-item .toggle-review {
  text-align: center;
  margin-top: 12px;
}
.company-item .toggle-review a {
  color: #898989;
}

.pagination .page-item .page-link {
  border-color: #db0029;
  font-size: 14px;
  color: #2c2c2c;
}
.pagination .page-item .page-link:hover,
.pagination .page-item .page-link:focus {
  color: #fff;
  background-color: #db0029;
}
.pagination .page-item.active .page-link {
  color: #fff;
  background-color: #db0029;
}

.company-reviews-wrap {
  background-color: #f4f4f4;
  padding: 12px;
  border-radius: 10px;
  margin-top: 16px;
}

.company-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
}
.company-card.with-border {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.company-card.style-horizontal {
  padding: 10px 18px;
}
.company-card.style-horizontal .rating-wrap {
  margin-top: -18px;
}
.company-card.style-horizontal .name-detail {
  display: flex;
  gap: 10px;
}
.company-card.style-horizontal .name-detail .name {
  margin-top: 0;
}
.company-card .name-detail .logo img {
  width: 40px;
}
.company-card .name-detail .name {
  margin-top: 16px;
}
.company-card .name-detail .name h4 {
  font-size: 16px;
  margin: 0;
}

@media screen and (max-width: 767px) {
  .company-card {
    margin-bottom: 20px;
  }
  .company-title {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.contacts p {
  margin: 0;
  font-size: 14px;
  color: #878787;
  margin-bottom: 3px;
}
.contacts ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.contacts ul li {
  margin-right: 5px;
}
.contacts ul li a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.6);
}
.contacts h6 {
  font-size: 14px;
  margin-top: 3px;
}

.ralevant span {
  color: #33be26;
  background-color: #f0fdef;
  padding: 3px 12px;
  border-radius: 22px;
  font-size: 12px;
  margin-left: 63px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  right: 15px;
}

.rating-wrap ul {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.rating-wrap ul li i {
  color: #efc55d;
}
.rating-wrap ul li.time {
  padding-left: 4px;
}
.rating-wrap ul li.time span {
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.rating-wrap ul li.rating {
  padding-left: 4px;
}
.rating-wrap ul li.rating span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
.rating-wrap ul li.separator {
  padding: 0 4px;
}
.rating-wrap ul li.separator span {
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.3);
}
.rating-wrap ul li.count span {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}

.rating-location {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rating-location span {
  font-size: 14px;
}

.notification {
  width: 400px;
  padding: 20px 0px 20px 20px;
  border-radius: 15px;
}
.notification .notification-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.notification .notification-head h3 {
  font-size: 20px;
}
.notification .notification-head a {
  font-size: 14px;
  color: #878787;
}
.notification .notification-card {
  padding: 0;
  border-radius: 0;
}
.notification .notification-card .notification-activity {
  height: 48vh;
  overflow-y: scroll;
}

#notification-close {
  display: none;
}

@media screen and (max-width: 767px) {
  .notification-card {
    width: 100% !important;
  }
  .notification-card .notification-activity {
    height: 76vh !important;
    overflow-y: scroll;
  }
  div#notificationDropdown.active {
    position: fixed;
    top: 83px;
    display: block;
    height: 100vh;
    z-index: 1;
    left: -7px;
  }
  #notification-close {
    position: fixed;
    bottom: 15%;
    left: 50%;
    background: white;
    display: block;
    box-shadow: 0px 0px 4px #929292;
    border: 1px solid rgba(0, 0, 0, 0.4);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: -20px;
  }
  #notification-close i {
    font-size: 20px;
    display: block;
  }
}
.theme-tab .nav-tabs {
  display: flex;
}
.theme-tab .nav-tabs .nav-item {
  flex: 1;
}
.theme-tab .nav-tabs .nav-item a {
  color: #2c2c2c !important;
  text-align: center;
  border: none;
}
.theme-tab .nav-tabs .nav-item a span {
  font-size: 12px;
  background: #0f53e3;
  padding: 1px 5px;
  border-radius: 15px;
  color: white;
}
.theme-tab .nav-tabs .nav-item:hover {
  background-color: #f4f4f4;
}
.theme-tab .nav-tabs .active {
  border-bottom: 2px solid #0f53e3 !important;
}

body {
  font-family: "Poppins", sans-serif;
}

a {
  text-decoration: none;
  color: #858585;
}

header {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
header .navbar-brand img {
  width: 200px;
}
header.active {
  background-color: #fff;
}
header.sticky {
  background-color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 5;
}
header .navbar .nav-wrap {
  /* padding-bottom: 10px; */
  border-bottom: 1px solid #d7dde9;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
header .navbar-nav .nav-item .dropdown-menu.mega-menu {
  width: 100%;
  left: 0;
  top: 64px;
  border-radius: 0;
  border: none;
}
header.header-dark .navbar-nav .nav-item .nav-link {
  color: #fff;
}
header.header-light .notifications a {
  color: #fff;
}
header.header-light .notifications a i {
  color: #fff;
}
header .notifications a i {
  font-size: 20px;
}
header .user-logged-in a {
  display: flex;
  align-items: center;
  gap: 8px;
}
header .user-logged-in a img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
header .navbar-right {
  gap: 12px;
}

.mega-menu-categories {
  margin: 0;
  padding: 30px 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
}
.mega-menu-categories li {
  flex-basis: 16.66%;
  margin-bottom: 10px;
}
.mega-menu-categories li a {
  color: #898989;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: none;
  padding: 0;
}

.line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

#notification {
  font-size: 26px;
  margin-left: 50px;
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    background-color: white;
  }
  .menu {
    display: flex;
    width: 40px;
  }
  .navbar {
    padding: 0;
    
  }
  .navbar-nav {
    position: relative;
    z-index: 1;
  }
  .navbar-nav.navbar-right .nav-item a {
    display: block;
    text-align: center;
    width: 100%;
  }
  .navbar-nav.navbar-right .notifications i {
    display: none;
  }
  .navbar-nav .nav-item .dropdown-menu.mega-menu {
    display: block;
  }
  .navbar-nav .mega-menu-categories {
    gap: 12px;
    padding: 0;
  }
  .navbar-nav .mega-menu-categories li {
    margin: 0;
    flex-basis: 48%;
  }
  #notification {
    display: block;
  }
}
footer {
  padding: 50px 0;
}
footer .logo {
  margin-bottom: 30px;
}
footer .logo img {
  width: 150px;
}
footer .footer-widget h4 {
  font-size: 15px;
  margin-bottom: 12px;
}
footer .footer-widget ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
footer .footer-widget ul li {
  margin-bottom: 6px;
}
footer .footer-widget ul li a {
  color: #898989;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}
footer .footer-widget ul.footer-categories {
  display: flex;
  flex-wrap: wrap;
}
footer .footer-widget ul.footer-categories li {
  flex-basis: 50%;
}
footer .footer-widget ul.footer-social li a i {
  color: #000;
  margin-right: 6px;
}
footer .footer-bottom {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-top: 30px;
}
footer .footer-bottom p {
  color: #898989;
  font-size: 14px;
  font-weight: 400;
}
footer .footer-bottom .footer-links {
  margin: 20px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
footer .footer-bottom .footer-links li a {
  color: #898989;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0 50px 0;
  }
  footer .footer-bottom {
    margin-bottom: 15px;
  }
  footer .footer-bottom .footer-links {
    margin-top: 10px;
    gap: 10px;
  }
  footer .logo {
    margin-bottom: 12px;
  }
  .footer-wrap ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-wrap ul li {
    margin: 0;
  }
  .footer-wrap ul li a {
    font-size: 14px;
  }
}
.stat-box {
  padding: 20px;
  border-radius: 15px;
  background-color: white;
}
.stat-box h1 {
  font-size: 50px;
  font-weight: 700;
  color: #000000;
  margin: 20px 0 10px 0;
}
.stat-box .progress-control {
  height: 10px;
}
.stat-box .progress-control .progress-bar {
  background-color: #3db9e0;
}
.stat-box p {
  margin: 0;
  font-size: 14px;
  margin-bottom: -10px;
}
.stat-box p span {
  color: #616161;
  font-size: 15px;
  font-weight: 500;
}

.profile-header {
  padding-top: 70px;
}
.profile-header .profile-control {
  display: flex;
  align-items: center;
  padding: 20px 0px 30px 0;
}
.profile-header .info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2c2c2c;
}
.profile-header .info p {
  margin: 0;
  font-size: 14px;
}
.profile-header .nav-tabs .nav-item .nav-link {
  border: none;
  color: #616161;
}
.profile-header .nav-tabs .nav-item .nav-link:hover {
  background-color: #f2f2f2;
}
.profile-header .nav-tabs .nav-item .active {
  border-bottom: 2px solid #db0027;
}
.profile-header .nav-tabs .nav-item .line {
  width: 2px;
  background: #f2f2f2;
  height: 20px;
  margin-top: 9px;
}
.profile-header .follow-counting {
  padding: 2px 5px;
  border-radius: 4px;
  background: #f2f2f2;
  margin-right: 5px;
}

.badge-earn .badge-earn-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.badge-earn .badge-earn-list li {
  text-align: center;
}
.badge-earn .badge-earn-list li p {
  color: #757575;
  font-size: 12px;
  margin: 4px 0;
}
.badge-earn .view-badge {
  border-top: 1px solid #d6cece;
  margin-top: 8px;
  text-align: center;
  margin-bottom: -14px;
}
.badge-earn .view-badge a {
  font-size: 13px;
  color: #878787;
}

.categories-information .dash-category-item {
  margin-bottom: 20px;
}
.categories-information .product-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0 10px 0;
}
.categories-information .product-info p {
  font-size: 13px;
  color: #000000;
  margin: 0;
}
.categories-information .product-info h6 {
  margin: 0;
  color: #878787;
  font-size: 13px;
}
.categories-information .progress {
  height: 25px;
}
.categories-information .progress .bar-green {
  background-color: #49d53d;
}
.categories-information .progress .bar-aqua {
  background-color: #3db9e0;
}
.categories-information .progress .bar-red {
  background-color: #ef5d5d;
}
.categories-information .progress .bar-orange {
  background-color: #e7bb4a;
}
.categories-information .progress .bar-purple {
  background-color: #e74cb2;
}
.categories-information .votes-image {
  margin-top: 10px;
}

.recent-activity {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.recent-activity li {
  display: flex;
  gap: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: relative;
}
.recent-activity li.new::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #0f53e3;
  border-radius: 50%;
  position: absolute;
  right: 17px;
  top: 50%;
  margin-top: -6px;
}
.recent-activity li.new .activity-info p {
  color: #000;
}
.recent-activity li .avatar {
  position: relative;
}
.recent-activity li .avatar .user-photo {
  width: 4pm;
  height: 40px;
  border-radius: 50%;
}
.recent-activity li .avatar .type {
  width: 16px;
  position: absolute;
  top: 23px;
  right: -3px;
}
.recent-activity li .activity-info {
  line-height: 1.2;
}
.recent-activity li .activity-info p {
  font-size: 14px;
  max-width: 83%;
  line-height: 1.3;
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
}
.recent-activity li .activity-info span {
  font-weight: 300;
  font-size: 13px;
}
.recent-activity .view-activity {
  border-top: 1px solid #d6cece;
  margin-bottom: -12px;
  text-align: center;
  padding: 3px 0;
}
.recent-activity .view-activity a {
  font-size: 13px;
  color: #878787;
}

.chart-wrap {
  position: relative;
  padding-top: 30px;
}
.chart-wrap .chart-content {
  position: absolute;
  left: 44%;
  top: 40%;
}
.chart-wrap .chart-content h5 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
}
.chart-wrap .chart-content p {
  margin: 0;
  color: #858585;
  font-size: 12px;
}
.chart-wrap canvas {
  max-width: 500px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .badge-earn .badge-earn-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .profile-header {
    padding-top: 20px;
  }
  .profile-header .profile-control {
    justify-content: space-between;
    margin-top: 60px;
  }
  .profile-header .nav-tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  .stat-box {
    margin-bottom: 30px;
  }
}
.bg-light-grey {
  background-color: #f4f4f4;
}

.company-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-radius: 20px;
  padding: 25px;
  position: relative;
  margin-top: -120px;
}
.company-head .company-name {
  display: flex;
}
.company-head .company-name .company-logo {
  margin-right: 20px;
}
.company-head .company-name .company-info h3 {
  font-size: 25px;
  color: #000000;
}
.company-head .company-name .company-info .company-rating {
  display: flex;
  align-items: center;
}
.company-head .company-name .company-info .company-rating ul {
  display: flex;
  align-items: center;
  gap: 3px;
  list-style: none;
}
.company-head .company-name .company-info .company-rating ul li i {
  color: #efc65d;
}
.company-head .company-name .company-info .company-rating .horizontal-line {
  width: 2px;
  height: 17px;
  background: #f4f4f4;
  margin: 0 8px;
}
.company-head .company-name .company-info .company-rating p {
  margin: 0;
  color: #000000;
  font-size: 14px;
}
.company-head .company-name .company-info .location {
  font-size: 14px;
  color: #000000;
}

.review-box {
  position: relative;
  margin: 25px 0;
}
.review-box .box-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-box .box-head .rating-control {
  margin: 0 0 15px 0;
}
.review-box .box-head .rating-control ul {
  display: flex;
  list-style: none;
}
.review-box .box-head .rating-control ul li {
  margin-right: 5px;
}
.review-box .box-head .rating-control ul li i {
  font-size: 32px;
  color: #efc65d;
}
.review-box .text-space textarea {
  width: 100%;
  border: 1px solid #e2dede;
  border-radius: 4px;
}
.review-box .review-ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-box .review-ft label {
  color: #7f7f7f;
  font-size: 14px;
}
.review-box .avatar img {
  width: 40px;
  height: 40px;
}
.review-box .name-detail h4 {
  font-size: 15px;
  font-weight: 600;
  color: #2c2c2c;
}
.review-box .name-detail h5 {
  font-size: 14px;
  margin: 0;
  color: #878787;
  margin-top: 5px;
}
.review-box h6 {
  margin: -13px 0px 0 46px;
  font-size: 14px;
  color: #878787;
}
.review-box .expert-control {
  margin-top: -24px;
}
.review-box .more-icon svg {
  width: 25px;
  position: absolute;
  top: 28px;
  right: 25px;
}
.review-box .box-rating {
  margin-top: 15px;
}
.review-box .box-rating ul {
  display: flex;
  list-style: none;
}
.review-box .box-rating ul li {
  margin-right: 5px;
}
.review-box .box-rating ul li i {
  font-size: 26px;
  color: #efc65d;
}

.review {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review p {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #000000;
}
.review .sort-by {
  display: flex;
  align-items: center;
  gap: 6px;
}
.review .sort-by label {
  color: #616161;
  font-size: 14px;
}
.review .sort-by select {
  max-width: 200px;
}
.review .all-reviews a {
  color: #878787;
}
.review .rating ul {
  display: flex;
  list-style: none;
}
.review .rating ul li {
  margin-right: 5px;
}
.review .rating ul li i {
  font-size: 26px;
  color: #f3e8ce;
}
.review .rating ul li .active {
  color: #efc65d;
}

.company-detail-sidebar {
  margin-top: 25px;
}

.icon-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}
.icon-list li .icon i {
  font-size: 22px;
}
.icon-list li .info p {
  margin: 0;
}

.embed-code > p {
  color: rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  font-size: 14px;
}
.embed-code .code-wrap {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
}
.embed-code .code-wrap .copy a {
  color: rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 767px) {
  .company-head {
    display: block;
  }
  .review {
    flex-wrap: wrap;
  }
  .visit-compnay {
    margin-top: 15px;
    text-align: center;
  }
  .box-rating ul,
  .rating ul {
    padding: 0;
  }
}
.close-icon {
  position: absolute;
  background: white;
  padding: 2px 6px;
  border-radius: 4px;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.verify-img img {
  width: 100%;
}

.verify-card {
  background-color: white;
  padding: 26px;
}
.verify-card h2 {
  font-size: 24px;
  text-align: center;
  font-weight: 600;
  margin: 25px 0 13px 0;
}
.verify-card p {
  font-size: 14px;
  text-align: center;
}
.verify-card form {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.verify-card form input {
  display: block;
  border-radius: 4px;
  max-width: 82px;
  height: 65px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  outline: none;
  text-align: center;
  font-size: 36px;
}

.verify-button {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}
.verify-button button {
  flex: 1;
}
.verify-button .otp-resend {
  color: red;
  background-color: white;
}

.footer-text h6 {
  font-size: 12px;
}

.modal-body {
  padding: 0;
}

.auth-wrap .logo {
  padding: 20px 0 50px 0;
}
.auth-wrap .logo img {
  width: 120px;
}
.auth-wrap h2 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000;
}
.auth-wrap h1 {
  font-size: 41px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c2c2c;
  margin: 70px 0 30px 0;
}
.auth-wrap p {
  font-size: 16px;
  color: #888888;
}
.auth-wrap p a {
  text-decoration: underline;
  color: #4b7eea;
  font-weight: 500;
}
.auth-wrap .auth-form .form-group {
  position: relative;
}
.auth-wrap .auth-form .form-group label {
  color: #616161;
  font-size: 14px;
  margin-bottom: 3px;
}
.auth-wrap .auth-form .form-group input {
  padding: 8px 44px 8px 10px;
  margin-bottom: 5px;
}
.auth-wrap .auth-form .form-group input::placeholder {
  color: #9e9d9d;
}
.auth-wrap .auth-form .form-group i {
  position: absolute;
  top: 31px;
  right: 20px;
  font-size: 22px;
  color: #9e9d9d;
}
.auth-wrap .auth-form .forget-password {
  margin-top: 10px;
}
.auth-wrap .auth-form .forget-password a {
  font-size: 16px;
  color: #888888;
}
.auth-wrap .auth-form .sign-up-button {
  margin: 35px 0 20px 0;
}
.auth-wrap .auth-form .sign-up-button a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.auth-wrap .auth-form h6 {
  font-size: 16px;
  color: #616161;
  text-align: center;
}
.auth-wrap .auth-form h6 a {
  color: #616161;
}
.auth-wrap .auth-form .sign-up-google {
  margin: 20px 0 0 0;
  position: relative;
}
.auth-wrap .auth-form .sign-up-google a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.auth-wrap .auth-form .sign-up-google img {
  width: 40px;
  position: absolute;
  top: 3px;
  left: 6px;
}
.auth-wrap .banner-image {
  background-color: #000;
  position: relative;
  height: 100vh;
}
.auth-wrap .banner-image .close-icon {
  cursor: pointer;
}
.auth-wrap .banner-image .close-icon i {
  font-size: 22px;
}
.auth-wrap .banner-image .banner-content {
  position: absolute;
  left: 65px;
  bottom: 10%;
}
.auth-wrap .banner-image .banner-content h1 {
  color: #ffffff;
  width: 432px;
  font-size: 55px;
  font-weight: 600;
}
.auth-wrap .banner-image .banner-content p {
  font-size: 14px;
  color: #959596;
}

.divider-or {
  position: relative;
}
.divider-or .line {
  background-color: #eaeaea;
  height: 1px;
  width: 100%;
}
.divider-or .text-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.divider-or .text-wrap span {
  background: white;
  color: #878787;
  padding: 3px 14px;
  position: absolute;
  top: -16px;
  display: inline-block;
  font-style: italic;
}

@media screen and (max-width: 767px) {
  .bg-control {
    position: relative;
    top: 33px;
  }
  .bg-control .banner-image {
    height: 70vh;
  }
  .bg-control .banner-image .banner-content {
    left: 15px;
    top: 100px;
  }
  .bg-control .banner-image .banner-content h1 {
    color: #ffffff;
    width: 247px;
    font-size: 36px;
    font-weight: 600;
  }
  .bg-control .banner-image .banner-content p {
    font-size: 13px;
  }
  .auth-wrap .auth-form .sign-up-google img {
    width: 35px;
    position: absolute;
    top: -2px;
    left: 6px;
  }
}
.specialbadge{
  background-color: #db0029;
  padding: 1px 9px;
  color: white;
  border-radius: 10px;
  font-size: 12px;
}

.toast-container{
  z-index: 9999;
}
.crit_color{color:#DB0028}
/*# sourceMappingURL=style.css.map */
