:root {
  --black: #111;
  --white: #fff;
  --blue: #281fe0;
  --orange: #ec6607;
  --darkblue: #27394B;
  --primary: #1C1785;
  --lightgray: #f5f5f7;
  --lightblue: #E7EFF5;
  --gray: #6B7278;
  --radius: 4px;
  --border: #e3e9f2;
  --border--input: #A8AEAD;
  --border--input--focus: #4B5452;
}

body {
  font-size: 1rem;
  line-height: 1.5rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--gray);
  background: #f5f5f7;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--blue);
}

a:hover,
a:focus {
  text-decoration: underline;
}

.link {
  color: var(--blue);
  text-decoration: none;
  display: inline-flex;
}

p {
  margin: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin-bottom: 2rem;
  margin-top: 2rem;
}


h1,h2,h3,h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  color: var(--black);
  margin:0 0 0.5rem;
  padding: 0;
}

h4 {
  margin-bottom: 0.25rem;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.mb1 {
  margin-bottom: 0.5rem;
}
.mb2 {
  margin-bottom: 1rem;
}


.login {
  padding: 2rem;
  margin: 0 auto;
}


.btn,
.card__btn {
  display: inline-flex;
  align-items: center;
  color: var(--darkblue);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  border-radius: var(--radius);
  border-radius: 20px;
  padding: 0.5rem 1.15rem;
  font-size: 0.95rem;
  background: #27394B;
  /* background: linear-gradient(270deg, #3B5483 10%, #27394B 90%); */
  cursor: pointer;
}


.btn:hover,
.card__btn:hover {
  color: #fff;
  background: var(--darkblue);
  text-decoration: none;
}

.btn--icn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--icn .icn {
  margin-left: 0.5rem;
}

.icn {
  width: 1rem;
  height: 1rem;
}

.icn--l {
  width: 2rem;
  height: 2rem;
}

.inline-flex {
  display: inline-flex;
}


.btn svg {
  margin-right: 2px;
  vertical-align: middle;
  margin-bottom: 2px;
}

/* .btn--primary {
  background: #1890ff;
  color: #fff;
  background: var(--primary);
} */

.btn--secondary {
  /* border-color: #1890ff; */
  color: #fff;

  background: var(--neutralDarker);
}



.btn--secondary:hover {
  background:#000;
}

.login {
  width: 320px;
  /* background: #eee; */
}

.error {
  color: red;
  background: var(--lightred);
  border-radius: var(--radius);
}

button,
fieldset,
input,
legend,
select,
textarea {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input[type='search'] {
   -moz-appearance: none;
   -webkit-appearance: none;
   appearance: none;
}
/* input[type="search"]::-webkit-search-decoration{display:none;} */

input,
select,
textarea {
  border: 1px solid var(--border--input);
  border-color: var(--border--input);
  border-radius: var(--radius);
  outline: none;
}



input[type='text'],
input[type='email'],
input[type='password'],
input[type='tel'],
input[type='search'],
select,
textarea {
  font: 0.9rem / 1.5 'Source Sans Pro', sans-serif;
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.35rem 0.5rem;
  background: var(--background);
  background: #fff;
  font-weight: normal;
}


textarea {
  overflow: hidden;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  /* box-shadow: 0 0 0 4px hsl(213, 90%, 70%); */
  outline-style: none;
  border-color: var(--border--input--focus);
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* Firefox */
  color: var(--text--light);
}

input:disabled,
select:disabled,
.text_input.disabled,
input:-internal-autofill-selected {
  background: var(--background);
  border: 1px solid var(--border--input);

}

select:disabled option {
  color: var(--text--light);
}

textarea {
  min-height: 10rem;
}




.table__preview {
  display: block;
  width: 40px;
  /* height: 100%; */
  max-height: 40px;
  object-fit: cover;
}

.table__tag {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius);
  background: var(--lightgray);
  color: var(--gray);
  font-size: 0.8rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.table__tag:hover {
  color: #fff;
  background: var(--gray);
}

.table__tag__cancel {
  margin-left: 0.5rem;
  cursor: pointer;
  /* background: rgba(0,0,0,0.2); */
  border-radius: 10px;
  height: 10px;
  width: 16px;
  /* display: block; */
}

.login {
  width: 320px;
  /* background: #eee; */
}

.error {
  color: red;
  background: var(--lightred);
  border-radius: var(--radius);
}

.field {
  margin-bottom: 1rem;
}

.field--search {
  display: flex;
  /* border: 2px solid #1965e0; */
  /* box-shadow: 0 0 0 2px rgba(66,153,225,.5); */
  box-shadow: 0 0 0 2px var(--border);
  border-radius: 4px;
  padding: 4px 10px;
}

input[type='search'] {
  border: 0;
  color: #444950;
}


.field--search label {

  align-items: center;
    /* color: #1965e0; */
    display: flex;
    justify-content: center;
}


.searchbar {


    /* width: 100%; */
}



.field--upload {
  background: lightblue;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  background: #fff;
  padding: 1rem;
  border: 1px solid var(--border--input);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.upload__thumb {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}

.upload__label {
  color: #000;
}

.upload__icon {
  margin-right: 1rem;
}

.upload__input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  font-size: 50px;
  overflow: hidden;
   cursor: pointer;
}

.upload__preview {
  position: relative;
}

.btn--close {
  background: #000;
  color: #fff;
  font-size: 18px;
  border-radius: 30px;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

.upload__preview .btn--close {
  position: absolute;
  top: 5px;
  right: 5px;
}



.password-visibility {
  position: relative;
}

.password-visibility button {
  position: absolute;
  top: 21px;
  right: 0;
  border: none;
  background: none;
  padding: 0.5rem;
  cursor: pointer;
}

.label {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  color: var(--border--input--focus);
}

/* .disable .input {
  border-color: #fff;
} */

.label--large,
.large-label {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.label--special {
  /* font-size: 1.25rem; */
  display: flex;
  margin-bottom: 1rem;
  font-weight: 400;
}


th,
td {
  border-bottom: 1px solid var(--border);
  padding: 2px 4px;
  text-align: left;
  white-space: nowrap;
}

th {
  width: 20%;
}


.tr--user td{
  padding: 2px 0;

}

tr {
  /* cursor: pointer; */
}
table {
  width: 100%;
  border-spacing: 0;
}
table thead th {
  padding-bottom: 1rem;
  font-size: 0.9rem;
}
thead a{
  color: var(--gray);
}
tbody tr:hover {
  background: var(--grayLight);
}

.table__wrapper {
  overflow: hidden;
  overflow-x: scroll;
  min-height: 800px;
  height: 100%;
  background: #fff;
  padding: 1rem;
}


.actions {
  background: #fff;
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 1rem; */
  padding: 1rem 1rem 0.75rem;
}

.actions__search {
  display: flex;
  align-items: center;
  margin-right: 1rem;
}


.modal__overlay_navmobile {
  background: rgba(0, 0, 0, 0.37);
  padding: 0;
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
}
.modal__content_navmobile {
  background: var(--darkblue);
  background: #fff;
  outline: none;
  width: 60%;
  height: 100%;
  margin: 0 auto 0;
  margin-right: 0;
  position: relative;
}

.ReactModal__Overlay.modal__overlay_navmobile {
  opacity: 0;
  /* transform: translateX(100px); */
  transition: all 300ms ease-in-out;
}

.ReactModal__Overlay--after-open.modal__overlay_navmobile {
  opacity: 1;
  /* transform: translateX(51px);
  transform: translateX(0px); */
}




.nav-icon {
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
  cursor: pointer;
  margin-top: -5px;

}

.nav-icon span  {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: var(--darkblue);
  /* border-radius: 2px; */
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}



.nav-icon span:nth-child(1) {
  top: 0px;
}

.nav-icon span:nth-child(2),.nav-icon span:nth-child(3) {
  top: 12px;
}

.nav-icon span:nth-child(4) {
  top: 25px;
}

.nav-icon.open span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.nav-icon.open span:nth-child(2) {
  transform: rotate(45deg);
}

.nav-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
}

.nav-icon.open span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.badge {
  background: var(--darkblue);
  color: #fff;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  font-size: 0.8rem;
  display: inline-flex;
}


/**
 * ==============================================
 * Dot Flashing
 * ==============================================
 */

/* .snippet {
  background: lavender;
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.stage {
  background: yellow;
  display: flex;
} */

.dot-flashing {
  position: relative;
  width: 7px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--secondary);
  color: var(--secondary);
  animation: dotFlashing 1s infinite linear alternate;
  animation-delay: 0.5s;
}

.dot-flashing::before,
.dot-flashing::after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
}

.dot-flashing::before {
  left: -10px;
  width: 7px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--secondary);
  color: var(--secondary);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 0s;
}

.dot-flashing::after {
  left: 10px;
  width: 7px;
  height: 10px;
  border-radius: 2px;
  background-color: var(--secondary);
  color: var(--secondary);
  animation: dotFlashing 1s infinite alternate;
  animation-delay: 1s;
}

@keyframes dotFlashing {
  0% {
    background-color: var(--secondary);
  }
  /* 50%, */
  100% {
    background-color: #ebe6ff;
  }
}

.skl-txt-1,
.skl-txt-2 {
  animation: shine-lines 0.3 infinite linear;
  border-radius: 2px;
  background-image: linear-gradient(
    90deg,
    #eaeff6 0px,
    #dce5f4 50px,
    #eaeff6 100px
  );
  background-size: 600px;
  animation: shine-lines 1.6s infinite linear;
}

.skl-txt-1 {
  height: 8px;
  width: 100px;
  margin-bottom: 1rem;
}

.skl-txt-2 {
  height: 24px;
  width: 300px;
  margin-bottom: 2rem;
  background-image: linear-gradient(
    90deg,
    #eaeff6 0px,
    #dce5f4 150px,
    #eaeff6 300px
  );
}

@keyframes shine-lines {
  0% {
    background-position: -100px;
  }
  40%,
  100% {
    background-position: 140px;
  }
}

.wrapper--search {
  border: 1px solid var(--border--input);
  border-radius: 4px;
}


.form-search {
  display: flex;
  position: relative;
}

.form-search input {
  border: 0;
  padding: 0.5rem 0.75rem;
}

.form-search button {
  cursor: pointer;
  margin-right: 9px;
  margin-top: 1px;
  padding-left: 4px;
}

.form-search .cancel {
  position: absolute;
  /* background: #f1f1f1; */

  height: 20px;
  width: 20px;
  border-radius: 20px;
  right: 24px;
  top: 8px;
  font-size: 16px;
  display: none;
  text-align: center;
  justify-content: center;
  align-items: center;
}

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

.pagination__prev,
.pagination__next{
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  color: var(--gray);
}

.pagination__prev .icon,
.pagination__next .icon{
  width: 20px;
  height: 20px;
}