@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600");
:root {
  --arrow-bg: rgba(255, 255, 255, 0.3);
  --arrow-icon: url("../img/arrow-down.png");
  --option-bg: white;
  --select-bg: rgba(255, 255, 255, 0.2);
  --highlight-color: #4eaabf;
  --very-dark-color: hsl(180, 14%, 20%);
  --modal-color-light: hsl(0, 0%, 100%);
  --modal-background: linear-gradient(
    to right bottom,
    hsl(236, 50%, 50%),
    hsl(195, 50%, 50%)
  );
  --sidebar-background: linear-gradient(
    to right bottom,
    hsl(236, 50%, 50%),
    hsl(195, 50%, 70%)
  );
  --company-page-bg-color: white;
  --accent-color: #fff;
  --gradient-color: #fbfbfb;
  --base-margin: 20px;
  --tab-height: 35px;
  --tab-border-radius: 35px;
}

html,
body {
  height: 100%;
  width: 100%;
  justify-content: center;
}

.carousel {
  height: 50%;
}

.item,
.active,
.carousel-inner {
  height: 100%;
}

.fill {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.section {
  margin: 10px 0;
}

nav li {
  margin-right: 20px;
}

nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #ff6600;
}

@mixin white-gradient {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* // Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* // Styling */
.slider-container {
  padding-top: 65px;
}

.slider-title-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slider-title {
  font-weight: bolder;
  font-size: 18px;
  padding: 5px;
  border-radius: 20%;
  display: inline-block;
  width: fit-content;
}

.slider-title-color1 {
  background-color: #2abda2;
  color: whitesmoke;
}

.slider-title-color2 {
  background-color: #f3ab53;
  color: #fdf0ce;
}

.slider-title-color3 {
  background-color: #fef1cf;
  color: #131925;
}

.slider {
  background: white;
  box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.125);
  display: block;
  height: 85px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100vw;
}

.slider::before,
.slider::after {
  @include white-gradient;
  content: "";
  height: 85px;
  position: absolute;
  width: 200px;
  z-index: 2;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.slider::before {
  left: 0;
  top: 0;
}

.slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}

.slide-track:hover,
.slide-track:focus {
  animation-play-state: paused;
}

.slide {
  height: 85px;
  width: 200px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  filter: grayscale(100%);
}

.slide-mobile {
  filter: none;
}

.slide:hover {
  cursor: pointer;
  transform: scale(1.1);
  filter: none;
}

.job-search-input {
  display: flex;
  flex-direction: column;
}

.search-text-input {
  width: 85%;
}

.keywords {
  width: 50%;
  margin-bottom: 10px;
}

.location {
  width: 20%;
  margin-bottom: 10px;
}

.company {
  width: 20%;
  margin-bottom: 10px;
}

.text-search-input-box-mobile {
  width: 70%;
}

.container h2 {
  text-align: center;
  color: #ff0000;
  padding-bottom: 10px;
}

.h2-container {
  text-align: center;
  padding: 5px;
  background-image: linear-gradient(to top, #fcecc8 0%, #e77630 150%);
  border-radius: 20px;
}

.loader {
  z-index: 11px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.lds-dual-ring {
  display: inline-block;
  width: 80px;
  height: 80px;
}
.lds-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  margin: 8px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.square-holder {
  padding: 30px;
  border: 1px solid #cecece;
  align-items: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background-color: #f1f1f1;
  min-height: 75px;
}

.square-holder img {
  width: 75px;
  height: 75px;
  filter: grayscale(100%);
  transition: all 0.3s;
}

.square-holder:hover img {
  filter: none;
  transform: scale(1.1);
  cursor: pointer;
}

.search {
  text-align: center;
  padding: 5px 15px 15px 15px;
  background-image: var(--modal-background);
  border-radius: 20px;
}

.mobile-company-nav-div {
  visibility: hidden;
  height: 0;
  width: 0;
}

.mobile-company-nav-div-show {
  background-image: var(--modal-background);
  border-radius: 20px;
  visibility: visible;
  height: 45px;
  width: auto;
  padding: 5px;
  margin-left: 10vw;
  margin-right: 10vw;
  color: #fd8332;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}

.search-skill {
  width: 100%;
  height: auto;
  min-height: 70px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 10px 15px -7px rgba(93, 164, 164, 0.5);
  padding: 20px 40px;
  box-sizing: border-box;
  /* margin-top: -36px; */
  opacity: 1;
  display: flex;
  justify-content: space-between;
  transition: opacity 1s;
}

.search--hidden {
  opacity: 0;
  margin-top: -80px;
}

.search__clear {
  margin-left: 50px;
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: var(--highlight-color);
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.search__clear:hover {
  text-decoration: underline;
}

.search h2 {
  font-size: 24px;
  margin-bottom: 2vh;
  color: #fff;
}

.search form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.search input[type="text"] {
  padding: 10px;
  margin-right: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search button {
  background-color: #ff6600;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.search button:hover {
  background-color: #ff3300;
}

.job-listings {
  margin: 2rem 0;
}

footer {
  bottom: 10px;
  margin-top: 50px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* <select> styles */
select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  width: fit-content;
  font: inherit;
  /* Personalize */
  font-size: 15px;
  width: 20rem;
  padding: 1rem 4rem 1rem 1rem;
  background: var(--arrow-icon) no-repeat right 0.8em center / 1.4em,
    linear-gradient(to left, var(--arrow-bg) 3em, var(--select-bg) 3em);
  color: white;
  margin: 5px 2px 5px 2px;
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

/* Remove IE arrow */
select::-ms-expand {
  display: none;
}
/* Remove focus outline */
select:focus {
  outline: none;
}

/* <option> colors */
option {
  text-align: center;
  font-size: 15px;
  color: inherit;
  background-color: #6689cd;
}

.jobs {
  font-family: "Spartan", sans-serif;
  margin-top: 36px;
  width: 100%;
  height: auto;
  display: grid;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
}

.jobs_mobile {
  grid-template-columns: none;
}

.jobs a:hover {
  text-decoration: underline;
}

.jobs__item {
  width: auto;
  height: auto;
  padding: 35px 40px;
  background-color: rgba(117, 230, 255, 0.1);
  border-radius: 10px;
  box-shadow: 0px 10px 15px -7px rgba(93, 164, 164, 0.7);
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.jobs__item:hover {
  transform: scale(1.02);
  background-color: rgba(117, 230, 255, 0.2);
}

.jobs__column {
  display: flex;
  align-items: center;
}

.jobs__img {
  width: 90px;
  height: auto;
}

.jobs__info {
  margin-left: 25px;
  width: auto;
}

.view_upvote_div {
  padding: 30px;
  display: flex;
  flex-direction: row;
}

.view__upvote {
  margin-left: 15px;
  width: 40%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.jobs__company {
  color: #40a5a4;
  font-size: 14px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
}

.jobs__title {
  color: var(--very-dark-color);
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 15px;
}

.jobs__details {
  margin: 0;
  padding: 0;
}

.jobs__details-item {
  display: inline-block;
  color: hsl(180, 8%, 52%);
  font-size: 15px;
}

.jobs__details-item::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 3px;
  background-color: hsl(180, 8%, 52%);
  display: inline-block;
  margin: 5px 15px;
}

.jobs__details-item:last-child::after {
  display: none;
}

.tag,
.close-tag {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 10px 15px;
  border-radius: 5px;
  background-color: hsl(180, 31%, 95%);
  font-weight: 700;
  font-size: 14px;
  color: var(--highlight-color);
  margin: 7.5px 5px;
  cursor: pointer;
  transition: background-color 0.2s;
  position: relative;
}

.close-tag {
  padding-right: 45px;
}

.close-tag::after {
  content: "";
  display: block;
  width: 35px;
  height: 100%;
  background-color: var(--highlight-color);
  position: absolute;
  right: 0;
  top: 0;
  background-image: url("./../img/svgs/icon-remove.svg");
  background-position: center;
  background-size: 15px;
  background-repeat: no-repeat;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.tag:hover,
.tag--active {
  background-color: var(--highlight-color);
  color: #fff;
}

.close-tag:hover::after {
  background-color: var(--very-dark-color);
}

@media (max-width: 1120px) {
  .search__clear {
    margin-left: 20px;
  }
  .jobs {
    grid-row-gap: 50px;
  }

  .jobs__item {
    flex-wrap: wrap;
  }

  .jobs__info {
    margin-left: 0;
    width: 100%;
  }

  .jobs__column {
    justify-content: flex-start;
    flex: 0 1 100%;
    flex-wrap: wrap;
  }

  .jobs__column--left {
    border-bottom: #ababab solid 1px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .jobs__column--right {
    width: 100%;
    justify-content: flex-start;
    flex: 0 1 100%;
    flex-wrap: wrap;
    margin-left: -5px;
  }

  .jobs__img {
    width: 50px;
    margin-top: calc(-35px - 25px);
    margin-bottom: 20px;
  }
}

/* modal */
/* =============================================== */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;

  display: none;
  justify-content: center;
  align-items: center;

  width: 100%;
  height: 100%;

  background: hsla(0, 0%, 40%, 0.6);
}

/* using :target */
.modal-container:target {
  display: flex;
}

.modal_c {
  width: 60rem;
  max-width: 90vw;
  padding: 4rem 2rem;
  border-radius: 0.8rem;

  color: var(--modal-color-light);
  background: var(--modal-background);
  box-shadow: 0.4rem 0.4rem 2.4rem 0.2rem hsla(236, 50%, 50%, 0.3);
  position: relative;

  max-height: 70vh;

  overflow-y: scroll;
}

.modal_c::-webkit-scrollbar-track {
  border: 5px solid white;
  background-color: #b2bec3;
}

.modal_c::-webkit-scrollbar {
  width: 15px;
  background-color: #dfe6e9;
}

.modal_c::-webkit-scrollbar-thumb {
  background-color: #74b9ff;
  border-radius: 10px;
}

.modal__details {
  text-align: center;

  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.4);
}

.modal__title {
  font-size: 3.2rem;
}

.modal__description {
  margin-top: 2rem;

  font-size: 1.6rem;
  font-style: italic;
}

.modal__text {
  padding: 0 4rem;
  margin-bottom: 4rem;

  font-size: 1.6rem;
  line-height: 2;
}

.modal__text::before {
  content: "";

  position: absolute;
  top: 0%;
  left: 100%;
  transform: translate(-50%, -50%);

  width: 18rem;
  height: 18rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 100rem;

  pointer-events: none;
}

.modal__btn {
  padding: 1rem 1.6rem;
  border: 2px solid hsla(0, 0%, 100%, 0.6);
  border-radius: 100rem;

  color: inherit;
  background: transparent;
  font-size: 1.4rem;
  font-family: inherit;
  letter-spacing: 0.2rem;

  transition: 0.2s;
  cursor: pointer;
}

.job-description {
  padding: 20px;
}

.modal_c a {
  text-decoration: none;
  color: hsla(0, 0%, 100%, 0.6);
}
.modal_c a:hover,
.modal_c a:focus {
  color: hsla(0, 0%, 100%, 1);
}

.modal__btn:hover,
.modal__btn:focus {
  border-color: hsla(0, 0%, 100%, 1);
  transform: translateY(-0.2rem);
}

/* links */
/* =============================================== */
.link-1 {
  font-size: 1.8rem;

  color: var(--light);
  background: var(--background);
  box-shadow: 0.4rem 0.4rem 2.4rem 0.2rem hsla(236, 50%, 50%, 0.3);
  border-radius: 100rem;
  padding: 1.4rem 3.2rem;

  transition: 0.2s;
}

.link-1:hover,
.link-1:focus {
  transform: translateY(-0.2rem);
  box-shadow: 0 0 4.4rem 0.2rem hsla(236, 50%, 50%, 0.4);
}

.link-2 {
  width: 4rem;
  height: 4rem;
  border: 1px solid hsla(0, 0%, 100%, 0.4);
  border-radius: 100rem;

  color: inherit;
  font-size: 2.2rem;

  position: absolute;
  top: 2rem;
  right: 2rem;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: 0.2s;
}

.link-2::before {
  content: "×";

  transform: translateY(-0.1rem);
}

.link-2:hover,
.link-2:focus {
  border-color: hsla(0, 0%, 100%, 0.6);
  transform: translateY(-0.2rem);
}

/* Second Version Link */
/* =============================================== */
.second-version-link,
.second-version-link:link {
  color: hsl(236, 50%, 50%);
  padding: 0.8rem 1.6rem 0.8rem 0.2rem;
  border-bottom: 2px solid hsl(236, 50%, 50%);

  font-size: 1.4rem;
  font-weight: bold;

  position: absolute;
  top: 4rem;
  right: 4rem;
}

.second-version-link::after {
  content: "\2197";

  position: absolute;
  top: 0;
  right: 0;

  font-size: 0.9em;
}

.abs-site-link {
  position: fixed;
  bottom: 20px;
  left: 20px;
  color: hsla(0, 0%, 0%, 0.6);
  font-size: 1.6rem;
}

.svgLoader {
  height: 40vh;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.collapse {
  float: right;
  font-size: 22px;
}

.nav {
  margin-top: 5px;
}

.alignCenter {
  text-align: center;
}

.alignRight {
  text-align: right;
}

.alignLeft {
  text-align: left;
}

.table-container {
  display: flex;
  justify-content: center;
}

table,
th,
td {
  border: 1px dotted black;
}

td {
  width: 30px;
  height: 30px;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
}

caption {
  padding: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #fd8332;
  margin-bottom: 10px;
}

.companyNameContainer {
  margin: 0 5vw 0 5vw;
}

.companyNameContainer h2 {
  padding-left: 20px;
}

.companyNameContainer ol {
  font-size: 16px;
}

.company-body {
  background-color: var(--company-page-bg-color);
}

.job-listings h5 {
  margin-top: 30px;
}

.editorial {
  display: block;
  width: 100%;
  height: 60px;
  max-height: 60px;
  margin: 0;
  z-index: 5;
  float: left;
}

.parallax1 > use {
  animation: move-forever1 10s linear infinite;
}

.parallax1 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax2 > use {
  animation: move-forever2 8s linear infinite;
}

.parallax2 > use:nth-child(1) {
  animation-delay: -2s;
}
.parallax3 > use {
  animation: move-forever3 6s linear infinite;
}

.parallax3 > use:nth-child(1) {
  animation-delay: -2s;
}

.parallax4 > use {
  animation: move-forever4 4s linear infinite;
}

.parallax4 > use:nth-child(1) {
  animation-delay: -2s;
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever4 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

.navbar-nav a:hover {
  cursor: pointer;
}

/*  */
.backdrop-container {
  display: none;
  position: fixed;
  z-index: 1040;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-animation: fadeIn 1.2s ease-in-out;
  animation: fadeIn 1.2s ease-in-out;
}

.mobile-nav-open-icon {
  font-size: 2rem;
  cursor: pointer;
  margin-right: 2rem;
  color: black;
  margin-left: 3rem;
}

.sidenav-container {
  /* margin-top: 65px; */
  height: 100%;
  width: 0px;
  position: fixed;
  z-index: 1050;
  background-image: var(--sidebar-background);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgb(56, 0, 152);
}

.sidenav-container a {
  color: white;
}

.sidenav-container .closebtn {
  font-size: 3rem;
  font-weight: 700;
  color: #c9002b;
  padding-right: 1rem;
}

.sidenav-container .drawer-close-button {
  height: 3rem;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.sidenav-container::-webkit-scrollbar-track {
  border: 5px solid white;
  background-color: #b2bec3;
}

.sidenav-container::-webkit-scrollbar {
  width: 15px;
  background-color: #dfe6e9;
}

.sidenav-container::-webkit-scrollbar-thumb {
  background-color: #74b9ff;
  border-radius: 10px;
}

.company-links-container-hide {
  display: none;
}

.company-links-container {
  margin: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.company-links-container .chip {
  display: inline-flex;
  flex-direction: row;
  background-color: #e5e5e5;
  border: none;
  /* cursor: default; */
  height: 36px;
  outline: none;
  padding: 0;
  font-size: 14px;
  font-color: #333333;
  font-family: "Open Sans", sans-serif;
  white-space: nowrap;
  align-items: center;
  border-radius: 16px;
  vertical-align: middle;
  text-decoration: none;
  justify-content: center;
  margin-left: 12px;
  margin-top: 10px;
}

.company-links-container .chip:hover {
  cursor: pointer;
  transform: scale(1.1);
  text-decoration: underline;
}

.company-links-container .chip-head {
  display: flex;
  /* display: none; */
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  font-size: 1.25rem;
  flex-shrink: 0;
  align-items: center;
  user-select: none;
  border-radius: 10%;
  justify-content: center;
  width: 36px;
  color: #fff;
  height: 36px;
  font-size: 20px;
  margin-right: -4px;
}

.company-links-container .chip-content {
  cursor: inherit;
  display: flex;
  align-items: center;
  user-select: none;
  white-space: nowrap;
  padding-left: 12px;
  padding-right: 12px;
}

.company-links-container .active {
  text-decoration: underline;
}

.company-links-container .chip-svg {
  color: #999999;
  cursor: pointer;
  height: auto;
  margin: 4px 4px 0 -8px;
  fill: currentColor;
  width: 1em;
  height: 1em;
  display: inline-block;
  font-size: 24px;
  transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  user-select: none;
  flex-shrink: 0;
}

.company-links-container .chip-svg:hover {
  color: #666666;
}

.custom-social-proof {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999999999999 !important;
  font-family: "Open Sans", sans-serif;
}

.custom-notification {
  width: auto;
  border: 0;
  text-align: left;
  z-index: 99999;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 6px;
  box-shadow: 2px 2px 10px 2px hsla(0, 4%, 4%, 0.2);
  background-color: #fff;
  position: relative;
  /* cursor: pointer; */
}

.custom-notification-container {
  display: flex !important;
  align-items: center;
  height: 80px;
}

.custom-notification-image-wrapper img {
  max-height: 75px;
  width: 90px;
  overflow: hidden;
  border-radius: 6px 0 0 6px;
  object-fit: cover;
}

.custom-notification-content-wrapper {
  margin: 0;
  height: 100%;
  color: gray;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 0 6px 6px 0;
  flex: 1;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
}

.custom-notification-content {
  font-family: inherit !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 16px;
}

.custom-notification-content small {
  margin-top: 3px !important;
  display: block !important;
  font-size: 12px !important;
  opacity: 0.8;
}

.custom-close {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 12px;
  width: 12px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
  transform: rotate(45deg);
  opacity: 0;
}

.custom-close::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: gray;
  position: absolute;
  left: 0;
  top: 5px;
}

.custom-close::after {
  content: "";
  display: block;
  height: 100%;
  width: 2px;
  background-color: gray;
  position: absolute;
  left: 5px;
  top: 0;
}

.custom-notification:hover .custom-close {
  opacity: 1;
}

.poweredby {
  font-weight: 600;
  text-decoration: none;
  margin-left: 3px;
  color: #3498db;
}

.hide {
  visibility: hidden;
}

.show {
  visibility: visible;
}

.tab-slider--nav {
  width: 100%;
  /* float: left; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: var(--base-margin);
}
.tab-slider--tabs {
  /* display: block;
  float: left; */
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 40%;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border-radius: var(--tab-border-radius);
  overflow: hidden;
  background: #bbd3ee;
  height: var(--tab-height);
  user-select: none;
  &:after {
    content: "";
    width: 50%;
    background: var(--modal-background);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 250ms ease-in-out;
    border-radius: var(--tab-border-radius);
  }
  &.slide-iq:after {
    left: 50%;
  }
}

.tab-slider--trigger {
  font-size: 12px;
  line-height: 1;
  font-weight: bold;
  color: var(--modal-background);
  text-transform: uppercase;
  text-align: center;
  padding: 11px var(--base-margin);
  position: relative;
  z-index: 2;
  cursor: pointer;
  display: inline-block;
  transition: color 250ms ease-in-out;
  user-select: none;
  &.active {
    color: #fff;
  }
}
.tab-slider--body {
  margin-bottom: var(--base-margin);
}

.interviewQuestionsTabContainer {
  display: flex;
  flex-direction: column;
}
