@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
:root {
  --main: rgb(99, 102, 241);
  --second: rgb(129, 132, 256);
  --width: clamp(400px, calc(100% - 40px), 1000px);
  --round: 10px;
  --half: clamp(360px, calc(50% - 20px), 500px);
  --gray: rgb(209 213 219);
}

.o-profile__image {
  aspect-ratio: 1/1;
  width: 50%;
  max-width: 400px;
  min-width: 150px;
  border-radius: 50%;
  background-size: cover;
  position: relative;
}
.o-profile__image__edit {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  padding: 5px;
  background-color: #ccc;
  position: absolute;
  bottom: 5%;
  right: 5%;
  cursor: pointer;
  transition: all 0.5s;
}
.o-profile__image__edit:hover {
  background-color: var(--main);
}
.cursor {
  cursor: pointer;
}
.o-button {
  background-color: var(--main);
  transition: background-color 0.5s;
  padding: 7px 15px;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.o-button:disabled {
  background-color: #999;
}
.o-button:hover {
  background-color: var(--second);
}
.o-button:hover:disabled {
  background-color: #999;
}
.u-power-buttons {
  text-align: right;
  padding: 10px 0px;
}
.u-power-buttons .o-button {
  margin-left: 10px;
}
.o-post {
  background-color: #fff;
  padding: 20px;
  /* width: var(--width); */
  width: calc(90%);
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: var(--round);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.o-post input {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 black;
  border: 1px solid gray;
  padding: 5px 10px;
  border-radius: 5px;
  border-color: rgb(209 213 219);
  width: 100%;
  display: block;
  margin-top: 0.25rem;
}
.o-post input:focus {
  outline: none !important;
  border: 2px solid var(--main);
}
.o-post h1 {
  font-size: 1.3rem;
  text-align: center;
}
.o-post input[type="radio"] {
  display: inline;
  width: auto;
}
.u-right {
  float: right;
}
.u-grid-2 {
  display: grid;
  grid-template-columns: auto auto;
  gap: 30px;
}
.o-select-drop {
  width: 100%;
  background-color: #fff;
  padding: 7px 10px;
  border: 1px solid var(--gray);
  border-radius: 5px;
}
.u-label {
  font-size: 0.875rem;
  line-height: 1.7rem;
}
.u-check {
  padding-top: 20px;
  font-size: 0.875rem;
  line-height: 2rem;
}
.o-text_area {
  border: 1px solid var(--gray);
  border-radius: 5px;
  width: 100%;
}
.o-text_area:focus {
  outline: none !important;
  border: 2px solid var(--main);
}
@media only screen and (max-width: 600px) {
  .u-grid-2 {
    display: grid;
    grid-template-columns: auto;
    gap: 30px;
  }
}
/* listings */
.section-listings {
  width: 100%;
  display: grid;
  grid-template-columns: 20% calc(80% - 20px);
  gap: 20px;
}
@media only screen and (max-width: 600px) {
  .section-listings {
    width: 95%;
    display: block;
    margin: auto;
  }
  .o-pagination {
    display: block !important;
    width: 95%;
    padding: 20px 0 75px 0;
    margin: auto;
  }
  .listings-table-row {
    grid-template-columns: auto auto auto auto auto !important;
    gap: 5px !important;
  }
}
.listings-table-row {
  display: grid;
  /* grid-template-columns: 20px calc(80% - 155px) 20% 90px 100px; */
  grid-template-columns: 20px calc(50% - 20px) 200px 200px 200px;
  gap: 15px;
  padding: 4px 8px;
}
.listings-table-row:nth-child(even) {
  background-color: rgb(230, 230, 230);
}
.table-header {
  background-color: transparent !important;
  border-bottom: 1px solid rgb(211, 211, 211);
}
.listings-result-meta {
  font-size: 0.9rem;
  padding: 4px 0px;
}
.listings-job-posting-date {
  text-align: center;
}
.u-icon {
  font-size: 1rem;
}
.listings-filters-header {
  border-bottom: 1px solid rgb(211, 211, 211);
  font-size: 0.9rem;
}
.listings-filters {
  padding: 0px 4px;
}
.listings-filters label {
  padding-top: 7px;
  display: inline-block;
}
.listings-filters .o-button {
  width: 100%;
  margin: 3px 0;
}
.o-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-pagination .u-icon {
  cursor: pointer;
}
/* ENDlistings */

/* Search */
.o-search-droplist {
  background-color: #fff;
  padding: 15px;
  display: grid;
  gap: 20px;
  grid-template-columns: calc(33% - 20px) 33% calc(34% - 20px);
  border-radius: 5px;
  border: 1px solid var(--gray);
}
.o-search-droplist ul {
  position: absolute;
}

.o-search-droplist li {
  background-color: #fff;
  padding: 10px;
  width: 100%;
  cursor: pointer;
}
.o-search-droplist li:hover {
  background-color: #7800ff;
  color: white;
}
.o-search-droplist input {
  border: none;
}
#location {
  padding: 15px 25px 15px 10px;
}
/* @media only screen and (max-width: 600px) {
  #location {
    width: 90%;
  }
} */

@media only screen and (max-width: 900px) {
  .o-search-droplist {
    grid-template-columns: auto;
  }
}
.o-search-droplist select {
  width: 100%;
  border: none;
  border-radius: 0%;
  border-bottom: 1px solid var(--gray);
}
.o-search-droplist input {
  opacity: 1;
  /* border-bottom: 1px solid var(--gray); */
}
.o-search-droplist ::placeholder {
  color: #000 !important;
  opacity: 1;
}
.o-search {
  position: relative;
}
.u-icon-search {
  /* position:absolute;
    right: 20px;
    line-height: 2rem;
    opacity: .8;
    top: 65px; */
  /* position: absolute;
    right: 25px;
    margin-top: -40px;
    opacity: .7; */
  cursor: pointer;
  padding-top: 15px;
}
.o-search-c2a {
  font-size: 4rem;
  line-height: 3.6rem;
  font-weight: 900;
  text-transform: capitalize;
  /* background: #7800ff;
  background: linear-gradient(to right, #7800ff 0%, #ff6800 40%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: white;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0, 0.5);
}
.o-search-top {
  display: grid;
  grid-template-columns: 50% 50%;
}
.o-search-top-right {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: end;
}
.o-seach-bottom {
  text-align: center;
  padding: 4px 0;
}
.o-search-location {
  border: none;
  padding: 15px 40px 15px 15px;
  width: 100%;
}

a {
  color: var(--main);
  transition: color 0.5s;
}
a:hover {
  color: #ff6800;
}
/* END Search */

.u-field_non {
  border-bottom: 1px dashed rgba(209, 213, 219, 0.5);
  padding: 5px 0px;
  font-size: 1.2rem;
  text-transform: capitalize;
}

/* dashboard */
.o-dashboard-tabs {
  flex-wrap: wrap;
  padding-bottom: 10px;
}
.o-dashboard-tabs__tab {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px 15px 8px 15px;
  border-bottom: 2px solid white;
}
.o-dashboard-tabs__tab:hover {
  background-color: rgb(245, 245, 245);
  cursor: pointer;
}
.u-current-tab {
  border-bottom: 2px solid #818cf8;
  color: #818cf8;
}
.o-dashboard-table-row {
  display: grid;
  grid-template-columns: 8fr 30fr 30fr 30fr 30fr 200px 100px 100px 100px;
}
.o-dashboard-table-row a {
  cursor: pointer;
}

.o-dashboard-table-row-8 {
  display: grid;
  gap: 10px;
  padding: 10px;
  /* name email phone preflocation title joblocation resume coverletter */
  grid-template-columns: 200px 200px 130px 130px 120px 130px 70px 95px;
}
.o-dashboard-table-row-8:nth-child(even) {
  background-color: #f3f3f3;
}
.o-dashboard-table-row-12 {
  display: grid;
  gap: 10px;
  padding: 10px;
  /* name email phone preflocation title joblocation resume coverletter */
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
}
.o-dashboard-table-row-12:nth-child(even) {
  background-color: #f3f3f3;
}
.o-dashboard-table-row-14 {
  display: grid;
  gap: 10px;
  padding: 10px;
  /* name email phone preflocation title joblocation resume coverletter */
  grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto auto auto;
}
.center {
  text-align: center;
}
/* @media only screen and (max-width: 600px) {
  .o-dashboard-table-row {
    grid-template-columns: auto auto auto auto auto auto;
    background-color: red;
  }
} */

.o-dashboard-table-row div {
  padding: 5px 3px;
}
.o-dashboard-table-row:nth-child(even) {
  background-color: #f3f3f3;
}
.o-button-delete {
  color: #818cf8;
}
.u-wrapper-welcome {
  width: 95%;
  max-width: 1000px;
}
.u-wrapper-inner {
  width: 95%;
  max-width: 1000px;
  margin: auto;
}
.u-wrapper-listings {
  width: 95%;
  max-width: 1000px;
  display: block;
  margin: auto;
}
.search_location_field {
  display: flex;
  justify-content: left;
  align-items: left;
  border-bottom: 1px solid var(--gray);
}
.u-state {
  border-radius: 4px;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),
    var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.showResults {
  top: 100px;
  width: 250px;
  margin-left: -50px;
}
@media only screen and (max-width: 600px) {
  .showResults {
    margin-left: 0;
  }
}
.u-welcome-h1 {
  font-size: 1.7rem;
  text-align: center;
  color: #818cf8;
  display: flex;
  justify-content: center;
  align-items: center;
}
.u-welcome-h1 img {
  height: 30px;
}
.x-show-city {
  position: absolute;
  width: 300px;
}
.x-show-city li {
  padding: 10px;
  background-color: white;
}
.x-show-city li:hover {
  background-color: #818cf8;
  color: white;
  cursor: pointer;
}
.u-search-off {
  padding: 15px 0px;
}
/* end dashboard*/
/* register */
.o-choose-account-type {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  gap: 20px;
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
@media only screen and (max-width: 600px) {
  .o-choose-account-type {
    grid-template-columns: 100%;
  }
}
.o-choose-account-type__selection {
  /* border: 1px solid #d1d1d1; */
  padding: 15px;
  border-radius: 4px;
  background-color: white;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.7s;
  cursor: pointer;
  text-align: center;
}
.o-choose-account-type__selection h1 {
  font-size: 1.3rem;
  font-weight: 500;
}
.o-choose-account-type__selection:hover {
  background-color: #f7f7f7;
}

.brand {
  /* filter: brightness(0.9) invert(.6) sepia(.3) hue-rotate(200deg) saturate(500%); */

  filter: invert(1);
  padding: 0px;
  margin: 0px;
}
.brandcase {
  background-color: #818cf8;
  padding: 5px;
  border-radius: 50%;
}
.global_brand {
  background-color: #7c7325;
  padding: 5px;
  border-radius: 50%;
  filter: invert(1);
  width: 30px;
  margin-right: 10px;
}
/* apply modal */
.o-modal-apply {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.o-modal-apply-inner {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  width: 90%;
  max-width: 500px;
}
.o-modal-apply-inner h2 {
  font-size: 1.4rem;
  border-bottom: 1px dotted #333;
  color: #333;
}
.u-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
.o-modal-apply-inner__section {
  padding-bottom: 20px;
  line-height: 2rem;
}
.o-modal-apply-inner__section .o-button {
  display: inline-block;
  margin-top: 5px;
}
.button-apply {
  text-align: center;
}

/* added for modal for listing and apply */
.modal_apply {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.inner_apply {
  background-color: #fff;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  height: 80%;
  width: 80%;
  max-width: 800px;
  overflow: hidden;
  position: relative;
}
.inner_apply_carousel {
  /* background-color: lightgreen; */
  height: 100%;
  width: 300%;
  transition: all 0.5s;
  position: absolute;
  font-size: 0;
  display: flex;
}
.inner_apply_slide {
  display: inline-block;
  height: 100%;
  /* max-height: 90%;
  overflow-y: auto; */
  width: calc(100% / 3);
  font-size: 1rem;
  margin-top: 0px;
}
.u-offset-slide {
  padding: 20px;
  height: calc(100% - 40px);
  width: calc(100% - 40px);
}
.listing-close {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1100;
  font-size: 1.4rem;
  cursor: pointer;
  background-color: white;
}
.o-listing_title {
  font-size: 1.6rem;
  font-weight: 400;
}
.o-listing_meta {
  padding: 10px 0;
}
.o-listing_about {
  font-weight: 500;
  font-size: 1.2rem;
  padding-bottom: 3px;
}
.o-listing_details {
  padding: 5px 0 15px 0;
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 30px;
}
.o-listing_details .material-symbols-outlined {
  padding-right: 6px;
}

.detail_item {
  display: flex;
  align-items: center;
  font-weight: 500;
  line-height: 1.2rem;
  padding: 0 0 5px 0;
}
.detail_item .material-symbols-outlined {
  font-size: 1rem;
  padding-right: 3px;
}
.listingID {
  font-size: 0.8rem;
  padding: 5px 0;
}
.listing_action {
  position: absolute;
  bottom: 0;
  text-align: right;
  margin-bottom: 20px;
}
.button {
  display: inline-block;
  padding: 8px 10px;
  background-color: #6366f1;
  color: #fff;
  border-radius: 4px;
}
.button-sm {
  display: inline-block;
  padding: 2px 10px;
  background-color: #6366f1;
  color: #fff;
  border-radius: 4px;
  margin-top: 5px;
  font-size: 0.8rem;
}
.last-frame {
  height: 90%;
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
.last-frame .material-symbols-outlined {
  font-size: 3rem;
  color: green;
}
.listing_resume {
  padding: 20px 0;
  line-height: 1.8rem;
}
.u-title {
  font-size: 1.2rem;
  font-weight: 500;
}
button {
  padding: 5px 10px;
}
button:disabled {
  background-color: #ccc !important;
  color: #fff !important;
  border-radius: 5px !important;
}
input {
  padding: 5px 10px;
}

.controls {
  position: absolute;
  z-index: 1000;
}
.o-listing-desc {
  line-height: 1.4rem;
  max-height: calc(100% - 270px);
  overflow-y: auto;
}
.disabled {
  background-color: #999 !important;
  color: #eee;
}
.bookmarked {
  font-size: 1.2rem;
  padding-right: 5px;
  line-height: 0rem;
}
.u-input-error {
  position: absolute;
  margin-top: 24px !important;
  background: transparent;
}
.u-input-error li {
  background: transparent;
  color: red;
}
.u-input-error li:hover {
  background: transparent;
  color: red;
}
.hot-edit {
  line-height: 0;
  font-size: 1.1rem !important;
}
.scroll {
  max-height: 400px;
  overflow-y: scroll;
  border-bottom: 1px dotted lightgray;
}
.a-logo {
  position: absolute;
  color: white;
  top: 0;
  left: 0;
  padding: 15px;
  font-size: 1.9rem;
  font-weight: 800;
  margin-left: 100px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 600px) {
  .a-logo {
    text-align: center;
    width: 100%;
    margin-left: 0;
  }
}
.a-logo img {
  width: 45px;
  padding-right: 10px;
}
/* START Footer section */
footer {
  border-top: 2px solid #141548;
  background-color: #6366f1;
}
header {
  background-color: #6366f1;
}
.footer__wrapper {
  padding: 20px;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: auto;
  color: white;
  gap: 20px;
  line-height: 2rem;
}
.footer__wrapper div {
  flex-grow: 1;
}
.footer__wrapper ul {
  padding-top: 10px;
}
.footer__wrapper h2 {
  font-size: 1.6rem;
}
.footer__wrapper a {
  color: white;
}
.footer__wrapper a:hover {
  text-decoration: underline;
}
.post__footer {
  text-align: center;
  color: white;
  padding: 10px 20px 20px 20px;
}
@media only screen and (max-width: 600px) {
  .footer__wrapper {
    flex-direction: column;
  }
}
/* END Footer section */
/* START Header Section */
.header__wrapper {
  color: white;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: row;
}
header a {
  color: white;
}
header a:hover {
  color: white;
  text-decoration: underline;
}
.header__wrapper .logo,
.foot__logo .logo {
  color: white;
  top: 0;
  left: 0;
  /* padding: 15px; */
  font-size: 1.8rem;
  font-weight: 800;
  /* margin-left: 100px; */
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  flex-direction: row;
}
.header__wrapper a:hover {
  text-decoration: none;
}
.header__wrapper img,
.foot__logo img {
  width: 45px;
  padding-right: 10px;
}
.login__right {
  text-align: right;
  flex-grow: 1;
  padding-top: 10px;
}
.login__right a {
  padding-left: 15px;
  color: white;
}
.login__right a:hover {
  text-decoration: underline;
}
/* END Header Section */
h1 {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: 700;
  padding: 40px 20px 20px 20px;
}
p {
  font-size: 1.1rem;
  line-height: 1.8rem;
  padding: 0px 20px 20px 20px;
}
.u-form {
  padding: 20px;
}
.pre-search {
  display: inline-block;
  padding: 10px 0;
  border-bottom: 1px dotted #999;
}
.pre-search span {
  width: calc(100% - 135px);
  display: inline-block;
}
.pre-search span:last-child {
  text-align: right;
  width: 130px;
}
.pre-search a {
  color: black;
}
.pre-search a:hover {
  color: orangered;
}
.u-quick-links {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 60px;
  padding: 40px 20px;
}
@media only screen and (max-width: 600px) {
  .u-quick-links {
    grid-template-columns: auto;
  }
}
.u-wrapper-inner-contact {
  width: 50%;
  min-width: 390px;
  margin: auto;
}
.u-wrapper-inner-contact input,
.u-wrapper-inner-contact textarea {
  width: 100%;
  margin: auto;
}
.u-wrapper-inner-contact input[type="submit"] {
  width: auto;
  padding: 8px 30px;
  transition: all 0.5s;
}
.u-wrapper-inner-contact input[type="submit"]:hover {
  background-color: black;
  cursor: pointer;
}
.right {
  text-align: right;
}
.foot__logo {
  padding: 20px 0 10px 0;
}

/* clean up main search */
.mainSearch {
  background-color: white;
  padding: 15px;
  border-radius: 5px;
  display: grid;
  gap: 15px;
  grid-template-columns: calc(33% - 10px) calc(33% - 10px) calc(33% - 10px);
}
.mainSearch div {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.u-sForm {
  border: none;
  border-radius: 0px;
  outline: 1px solid white;
  width: 100%;
  padding: 0px !important;
  outline-offset: -0px !important;
}
.u-sForm:focus {
  border: none !important;
  border-radius: 0px;
  outline: 1px solid white !important;
}
.u-icon-search-location {
  display: flex;
  margin-bottom: -1px;
  border-bottom: 1px solid white;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .mainSearch {
    gap: 20px;
    grid-template-columns: auto;
  }
  .mainSearch div {
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  }
  .mainSearch div:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}
/* search END*/
.hero-intro {
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  padding: 15px 0 0 0;
}

@media only screen and (max-width: 600px) {
  .home-nav {
    font-size: 0.8rem;
    margin: 0px !important;
    float: none !important;
    padding: 10px !important;
  }
}
.tooltip {
  color: #6366f1;
  font-size: 1rem;
  cursor: help;
}
.tooltip-box {
  display: none;
  position: absolute;
  padding: 15px;
  border: 1px solid #6366f1;
  box-shadow: 2px 2px 5px 0px rgba(0, 0, 0, 0.5);
  background-color: #fff;
  z-index: 1000;
  border-radius: 4px;
  margin-top: -100px;
}
.loading {
  animation-name: spin;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.loading img {
  height: 100px;
}
@keyframes spin {
  0% {
    rotate: 0deg;
  }
  50% {
    rotate: 180deg;
  }
  100% {
    rotate: 364deg;
  }
}
.post_contact_email_form {
  width: clamp(350px, 100%, 500px);
}
/* temp company page */
.company-profile-image img {
  max-height: 200px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.b-fm {
  padding: 10px 0;
  font-size: 16px;
}
.font-large {
  font-size: 24px;
  font-weight: 700;
}
.company_h1 {
  margin: 0;
  padding: 0;
  text-transform: capitalize;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.01rem;
  padding: 0;
  display: inline-block;
}
a .company_h1 {
  color: rgb(55, 55, 55);
  transition: all 0.5s;
}
a .company_h1:hover {
  color: rgb(99, 102, 241);
}
.company_edit {
  float: right;
  border-radius: 6px;
  background-color: rgb(55 55 55);
  color: white;
  padding: 5px 15px;
  transition: all 0.5s;
}
.company_edit:hover {
  background-color: rgb(99, 102, 241);
}
.company_location {
  padding: 0 0 10px 0;
  font-size: 14px;
}
.company-page {
  font-size: 16px;
}
.company-page input {
  border-radius: 4px;
}
.company-page h2 {
  font-size: 20px;
  text-transform: capitalize;
}

.company-page ul {
  padding: 15px;
  background-color: #f7f7f7;
}
.company-page li {
  padding: 10px 0;
  background-color: #f7f7f7;
}
.company_admin_use {
  margin-left: 10px;
  padding: 2px 10px;
  background-color: rgb(250, 250, 250);
  border: 1px solid rgb(200, 200, 200);
  border-radius: 4px;
  color: rgb(50, 50, 50);
  font-size: 14px;
}
.comapany_invite {
  background-color: #f7f7f7;
  padding: 0 15px 15px 15px;
}
.company_invite_button {
  background-color: rgb(55, 55, 55);
  color: white;
  padding: 9px 18px;
  border-radius: 4px;
  margin-left: 5px;
  font-size: 16px;
  transition: all 0.5s;
}
.company_invite_button:hover {
  background-color: rgb(99, 102, 241);
}
.company_each {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed rgb(200, 200, 200);
}
.company_removal {
  padding: 10px 30px;
  background-color: rgb(210, 0, 0);
  color: white;
  border-radius: 5px;
  transition: background-color 0.5s;
  margin-top: 20px;
}
.company_removal:hover {
  background-color: black;
  color: white;
}
.company_save {
  background-color: rgb(0, 200, 0);
  padding: 8px 30px;
  color: white;
  border-radius: 4px !important;
  transition: all 0.5s;
}
.company_save:hover {
  background-color: black;
}
.showuser {
  display: grid;
  grid-template-columns: 57% 22% 22%;
}
.max-w-xll {
  max-width: 42rem;
}
.company_hero_name {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
