@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* -------------------------------- 

Primary style

-------------------------------- */
a {
  color: #0a82ba;
  text-decoration: none;
}

/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.img-replace {
  /* replace text with an image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  color: transparent;
  white-space: nowrap;
}

/* -------------------------------- 

Main components 

-------------------------------- */
header {
  height: 200px;
  line-height: 200px;
  text-align: center;
  background-color: #c1d7d4;
  color: #FFF;
}
header h1 {
  font-size: 20px;
}

.cd-popup-trigger {
  display: block;
  width: 170px;
  height: 50px;
  line-height: 50px;
  margin: 3em auto;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 50em;
  background: #0a82ba;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.07);
  margin: 6em auto;
}

/* -------------------------------- 

xpopup 

-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(193, 215, 212, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
}
.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.cd-popup-container {
  position: relative;
  width: 90%;
  max-width: 400px;
  margin: 4em auto;
  background: #FFF;
  border-radius: 0.25em 0.25em 0.4em 0.4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-40px);
  /* Force Hardware Acceleration in WebKit */
  -webkit-backface-visibility: hidden;
  transition-property: transform;
  transition-duration: 0.3s;
  margin: 8em auto;
}
.cd-popup-container p {
  padding: 3em 1em;
}
.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
}
.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
  background: #0a82ba;
  border-radius: 0 0 0 0.25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #0b93d2;
}
.cd-popup-container .cd-buttons li:last-child a {
  background: white;
  border-radius: 0 0 0.25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: white;
}
.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: "";
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: black;
}
.cd-popup-container .cd-popup-close::before {
  transform: rotate(45deg);
  left: 8px;
}
.cd-popup-container .cd-popup-close::after {
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .cd-popup-container {
  transform: translateY(0);
}

/* Customize website's scrollbar like Mac OS
Not supports in Firefox and IE */
/* total width */
body::-webkit-scrollbar {
  background-color: #fff;
  width: 16px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
  background-color: #fff;
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
  background-color: #babac0;
  border-radius: 16px;
  border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
  display: none;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border);
}

dialog {
  padding: 1rem 3rem;
  background: white;
  max-width: 400px;
  padding-top: 2rem;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 5px 30px 0 rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease both;
}
dialog::backdrop {
  animation: fadeIn 1s ease both;
  background: rgba(255, 255, 255, 0.4);
  z-index: 2;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}
dialog .x {
  filter: grayscale(1);
  border: none;
  background: none;
  position: absolute;
  top: 15px;
  right: 10px;
  transition: ease filter, transform 0.3s;
  cursor: pointer;
  transform-origin: center;
}
dialog .x:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}
dialog h2 {
  font-weight: 600;
  font-size: 2rem;
  padding-bottom: 1rem;
}
dialog p {
  font-size: 1rem;
  line-height: 1.3rem;
  padding: 0.5rem 0;
}
dialog p a:visited {
  color: rgb(var(--vs-primary));
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.select {
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
  min-width: 15ch;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
}
.select select, .select::after {
  grid-area: select;
}
.select input[type=newpassword]:valid {
  background: lightgreen;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: 20px 20px;
}
.select input[type=newpassword]:valid + label {
  opacity: 0;
}
.select:not(.select--multiple)::after {
  content: "";
  justify-self: end;
  width: 0.8em;
  height: 0.5em;
  background-color: var(--select-arrow);
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
}

select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid var(--select-focus);
  border-radius: inherit;
}

select[multiple] {
  padding-right: 0;
  /*
   * Safari will not reveal an option
   * unless the select height has room to 
   * show all of it
   * Firefox and Chrome allow showing 
   * a partial option
   */
  height: 6rem;
  /* 
   * Experimental - styling of selected options
   * in the multiselect
   * Not supported crossbrowser
   */
}
select[multiple] option {
  white-space: normal;
  outline-color: var(--select-focus);
}

.select--disabled {
  cursor: not-allowed;
  background-color: #eee;
  background-image: linear-gradient(to top, #ddd, #eee 33%);
}

label {
  font-size: 1.125rem;
  font-weight: 500;
}

.select + label {
  margin-top: 2rem;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  place-content: center;
  grid-gap: 0.5rem;
  font-family: "Baloo 2", sans-serif;
  background-color: #e9f2fd;
  padding: 1rem;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**

 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

html {
  height: 100%;
}

fieldset {
  margin: 0;
  padding: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-after: 0;
  border: 0;
}

legend {
  margin: 0;
  padding: 0;
  display: block;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
}

/*===============================
=            Choices            =
===============================*/
.choices {
  position: relative;
  margin-bottom: 24px;
  font-size: 16px;
}

.choices:focus {
  outline: none;
}

.choices:last-child {
  margin-bottom: 0;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
  background-color: #EAEAEA;
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.choices.is-disabled .choices__item {
  cursor: not-allowed;
}

.choices[data-type*=select-one] {
  cursor: pointer;
}

.choices[data-type*=select-one] .choices__inner {
  padding-bottom: 7.5px;
}

.choices[data-type*=select-one] .choices__input {
  display: block;
  width: 100%;
  padding: 10px;
  border-bottom: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  margin: 0;
}

.choices[data-type*=select-one] .choices__button {
  background-image: url("../../icons/cross-inverse.svg");
  padding: 0;
  background-size: 8px;
  height: 100%;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -10px;
  margin-right: 25px;
  height: 20px;
  width: 20px;
  border-radius: 10em;
  opacity: 0.5;
}

.choices[data-type*=select-one] .choices__button:hover,
.choices[data-type*=select-one] .choices__button:focus {
  opacity: 1;
}

.choices[data-type*=select-one] .choices__button:focus {
  box-shadow: 0px 0px 0px 2px #00BCD4;
}

.choices[data-type*=select-one]:after {
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 5px;
  position: absolute;
  right: 11.5px;
  top: 50%;
  margin-top: -2.5px;
  pointer-events: none;
}

.choices[data-type*=select-one].is-open:after {
  border-color: transparent transparent #333333 transparent;
  margin-top: -7.5px;
}

.choices[data-type*=select-one][dir=rtl]:after {
  left: 11.5px;
  right: auto;
}

.choices[data-type*=select-one][dir=rtl] .choices__button {
  right: auto;
  left: 0;
  margin-left: 25px;
  margin-right: 0;
}

.choices[data-type*=select-multiple] .choices__inner,
.choices[data-type*=text] .choices__inner {
  cursor: text;
}

.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
  position: relative;
  display: inline-block;
  margin-top: 0;
  margin-right: -4px;
  margin-bottom: 0;
  margin-left: 8px;
  padding-left: 16px;
  border-left: 1px solid #008fa1;
  background-image: url("../../icons/cross.svg");
  background-size: 8px;
  width: 8px;
  line-height: 1;
  opacity: 0.75;
}

.choices[data-type*=select-multiple] .choices__button:hover,
.choices[data-type*=select-multiple] .choices__button:focus,
.choices[data-type*=text] .choices__button:hover,
.choices[data-type*=text] .choices__button:focus {
  opacity: 1;
}

.choices__inner {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  background-color: #f9f9f9;
  padding: 7.5px 7.5px 3.75px;
  border: 1px solid #DDDDDD;
  border-radius: 2.5px;
  font-size: 14px;
  min-height: 44px;
  overflow: hidden;
}

.is-focused .choices__inner,
.is-open .choices__inner {
  border-color: #b7b7b7;
}

.is-open .choices__inner {
  border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
  border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.choices__list--single {
  display: inline-block;
  padding: 4px 16px 4px 4px;
  width: 100%;
}

[dir=rtl] .choices__list--single {
  padding-right: 4px;
  padding-left: 16px;
}

.choices__list--single .choices__item {
  width: 100%;
}

.choices__list--multiple {
  display: inline;
}

.choices__list--multiple .choices__item {
  display: inline-block;
  vertical-align: middle;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 500;
  margin-right: 3.75px;
  margin-bottom: 3.75px;
  background-color: #00BCD4;
  border: 1px solid #00a5bb;
  color: #FFFFFF;
  word-break: break-all;
}

.choices__list--multiple .choices__item[data-deletable] {
  padding-right: 5px;
}

[dir=rtl] .choices__list--multiple .choices__item {
  margin-right: 0;
  margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
  background-color: #00a5bb;
  border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
  background-color: #aaaaaa;
  border: 1px solid #919191;
}

.choices__list--dropdown {
  display: none;
  z-index: 1;
  position: absolute;
  width: 100%;
  background-color: #FFFFFF;
  border: 1px solid #DDDDDD;
  top: 100%;
  margin-top: -1px;
  border-bottom-left-radius: 2.5px;
  border-bottom-right-radius: 2.5px;
  overflow: hidden;
  word-break: break-all;
}

.choices__list--dropdown.is-active {
  display: block;
}

.is-open .choices__list--dropdown {
  border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px;
  border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
  position: relative;
  max-height: 300px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
  position: relative;
  padding: 10px;
  font-size: 14px;
}

[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: right;
}

@media (min-width: 640px) {
  .choices__list--dropdown .choices__item--selectable {
    padding-right: 100px;
  }
  .choices__list--dropdown .choices__item--selectable:after {
    content: attr(data-select-text);
    font-size: 12px;
    opacity: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable {
    text-align: right;
    padding-left: 100px;
    padding-right: 10px;
  }
  [dir=rtl] .choices__list--dropdown .choices__item--selectable:after {
    right: auto;
    left: 10px;
  }
}
.choices__list--dropdown .choices__item--selectable.is-highlighted {
  background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
  opacity: 0.5;
}

.choices__item {
  cursor: default;
}

.choices__item--selectable {
  cursor: pointer;
}

.choices__item--disabled {
  cursor: not-allowed;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.5;
}

.choices__heading {
  font-weight: 600;
  font-size: 12px;
  padding: 10px;
  border-bottom: 1px solid #f7f7f7;
  color: gray;
}

.choices__button {
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

.choices__button:focus {
  outline: none;
}

.choices__input {
  display: inline-block;
  vertical-align: baseline;
  background-color: #f9f9f9;
  font-size: 14px;
  margin-bottom: 5px;
  border: 0;
  border-radius: 0;
  max-width: 100%;
  padding: 4px 0 4px 2px;
}

.choices__input:focus {
  outline: 0;
}

[dir=rtl] .choices__input {
  padding-right: 2px;
  padding-left: 0;
}

.choices__placeholder {
  opacity: 0.5;
}

/*=====  End of Choices  ======*/
* {
  box-sizing: border-box;
}

.s003 {
  display: -ms-flexbox;
  width: 100%;
  -ms-flex-pack: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
  background-color: #a598ee;
  background-size: cover;
  background-position: center center;
  padding: 15px;
}

.s003 form {
  width: 100%;
  max-width: 1790px;
  margin-bottom: 0;
}

.s003 form .inner-form {
  background: #fff;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.s003 form .inner-form .input-field {
  height: 68px;
}

.s003 form .inner-form .input-field input {
  height: 100%;
  background: transparent;
  border: 0;
  display: block;
  width: 100%;
  padding: 10px 32px;
  font-size: 16px;
  color: #555;
}

.s003 form .inner-form .input-field input.placeholder {
  color: #888;
  font-size: 16px;
}

.s003 form .inner-form .input-field input:-moz-placeholder {
  color: #888;
  font-size: 16px;
}

.s003 form .inner-form .input-field input::-webkit-input-placeholder {
  color: #888;
  font-size: 16px;
}

.s003 form .inner-form .input-field input:hover,
.s003 form .inner-form .input-field input:focus {
  box-shadow: none;
  outline: 0;
  border-color: #fff;
}

.s003 form .inner-form .input-field.first-wrap {
  width: 200px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.s003 form .inner-form .input-field.first-wrap .choices__inner {
  background: transparent;
  border-radius: 0;
  border: 0;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 10px 30px;
}

.s003 form .inner-form .input-field.first-wrap .choices__inner .choices__list.choices__list--single {
  display: flex;
  padding: 0;
  align-items: center;
  height: 100%;
}

.s003 form .inner-form .input-field.first-wrap .choices__inner .choices__item.choices__item--selectable.choices__placeholder {
  display: flex;
  align-items: center;
  height: 100%;
  opacity: 1;
  color: #888;
}

.s003 form .inner-form .input-field.first-wrap .choices__inner .choices__list--single .choices__item {
  display: flex;
  align-items: center;
  height: 100%;
  color: #555;
}

.s003 form .inner-form .input-field.first-wrap .choices[data-type*=select-one]:after {
  right: 30px;
  border-color: #e5e5e5 transparent transparent transparent;
}

.s003 form .inner-form .input-field.first-wrap .choices__list.choices__list--dropdown {
  border: 0;
  background: #fff;
  padding: 20px 30px;
  margin-top: 2px;
  border-radius: 4px;
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.s003 form .inner-form .input-field.first-wrap .choices__list.choices__list--dropdown .choices__item--selectable {
  padding-right: 0;
}

.s003 form .inner-form .input-field.first-wrap .choices__list--dropdown .choices__item--selectable.is-highlighted {
  background: #fff;
  color: #63c76a;
}

.s003 form .inner-form .input-field.first-wrap .choices__list--dropdown .choices__item {
  color: #555;
  min-height: 24px;
}

.s003 form .inner-form .input-field.second-wrap {
  flex-grow: 1;
}

.s003 form .inner-form .input-field.third-wrap {
  width: 74px;
}

.s003 form .inner-form .input-field.third-wrap .btn-search {
  height: 100%;
  width: 100%;
  white-space: nowrap;
  color: #fff;
  border: 0;
  cursor: pointer;
  background: #63c76a;
  transition: all 0.2s ease-out, color 0.2s ease-out;
}

.s003 form .inner-form .input-field.third-wrap .btn-search svg {
  width: 16px;
}

.s003 form .inner-form .input-field.third-wrap .btn-search:hover {
  background: #50c058;
}

.s003 form .inner-form .input-field.third-wrap .btn-search:focus {
  outline: 0;
  box-shadow: none;
}

@media screen and (max-width: 992px) {
  .s003 form .inner-form .input-field {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .s003 form .inner-form {
    flex-wrap: wrap;
    padding: 20px;
  }
  .s003 form .inner-form .input-field {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .s003 form .inner-form .input-field input {
    padding: 10px 15px;
  }
  .s003 form .inner-form .input-field.first-wrap {
    width: 100%;
    border-right: 0;
  }
  .s003 form .inner-form .input-field.first-wrap .choices__inner {
    padding: 10px 15px;
  }
  .s003 form .inner-form .input-field.first-wrap .choices[data-type*=select-one]:after {
    right: 11.5px;
    border-color: #e5e5e5 transparent transparent transparent;
  }
  .s003 form .inner-form .input-field.second-wrap {
    width: 100%;
    margin-bottom: 30px;
  }
  .s003 form .inner-form .input-field.second-wrap input {
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .s003 form .inner-form .input-field.third-wrap {
    margin-bottom: 0;
    width: 100%;
  }
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

ul,
li {
  color: black !important;
  margin: 0;
  padding: 0;
}

/* body {
  background: #d83d3d;
} */
.main-nav {
  width: 90%;
  max-width: 240px;
  margin: 0 auto;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.main-nav1 {
  width: 90%;
  max-width: 240px;
  margin: 0 auto;
  height: 100%;
  cursor: pointer;
  z-index: 1;
}

.main-nav ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
}

.main-nav1 ul {
  position: fixed;
  width: -moz-fit-content;
  width: fit-content;
  bottom: 0;
  left: 6%;
  margin: 0;
  padding: 0;
}

.main-nav li {
  list-style: none;
  float: left;
}

.main-nav1 li {
  list-style: none;
  float: left;
}

.main-nav a {
  display: block;
  height: 50px;
  margin: 10px;
  padding: 2px 25px;
  text-decoration: none;
  border-radius: 30px;
  line-height: 45px;
  color: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.main-nav1 a {
  display: block;
  height: 50px;
  margin: 10px;
  padding: 2px 25px;
  text-decoration: none;
  border-radius: 30px;
  line-height: 45px;
  color: #FFF;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.main-nav li:nth-child(1) a {
  background: #4f5f76;
  border: 2px solid #fff;
  font-weight: bold;
  color: white !important;
}

.main-nav1 li:nth-child(1) a {
  background: #4f5f76;
  border: 2px solid #fff;
  font-weight: bold;
  color: white !important;
}

.main-nav li:nth-child(1) a:hover {
  background: #c4f7cd;
  color: rgb(121, 117, 117) !important;
}

.main-nav1 li:nth-child(1) a:hover {
  background: #c4f7cd;
  color: rgb(121, 117, 117) !important;
}

.main-nav li:nth-child(2) a {
  background: #9e2c2c;
  border: 2px solid #9e2c2c;
}

.main-nav li:nth-child(2) a:hover {
  background: #b13131;
  border: 2px solid #b13131;
}

.user-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 3;
  overflow-y: auto;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s 0, visibility 0 0.3s;
}

.user-modal.is-visible {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s 0, visibility 0 0;
}

.user-modal.is-visible .user-modal-container {
  transform: translate(3%, 7%);
}

.user-modal-container {
  position: relative;
  width: 90%;
  background: #091f36;
  margin: 3em auto 4em;
  cursor: auto;
  border-radius: 0.25em;
  transform: translateY(-30px);
  transition-property: transform;
  transition-duration: 0.3s;
  box-shadow: inset #121212 0 0 0 5px, inset #343333 0 0 0 1px, inset #3b3b3b 0 0 0 10px, inset #494949 0 0 0 11px, inset #686767 0 0 0 16px, inset #8a8a8a 0 0 0 17px, inset #c4c3c3 0 0 0 21px, inset #cecdcd 0 0 0 22px;
  border-radius: 20px;
}

.user-modal-container .switcher:after {
  content: "";
  display: table;
  clear: both;
}

.user-modal-container .switcher li {
  width: 50%;
  float: left;
  text-align: center;
  list-style: none;
}

.user-modal-container .switcher li:first-child a {
  border-radius: 0.25em 0 0 0;
}

.user-modal-container .switcher li:last-child a {
  border-radius: 0 0.25em 0 0;
}

.user-modal-container .switcher a {
  display: block;
  width: 100%;
  height: 50px;
  line-height: 50px;
  background: #d2d8d8;
  color: #809191;
  text-decoration: none;
}

.user-modal-container .switcher a.selected {
  background: #FFF;
  color: #505260;
}

@media only screen and (min-width: 600px) {
  .user-modal-container {
    margin: 4em auto;
  }
  .user-modal-container .switcher a {
    height: 70px;
    line-height: 70px;
  }
}
.form {
  padding: 1.4em;
}

.form .fieldset:first-child {
  margin-top: 0;
}

.form .fieldset:last-child {
  margin-bottom: 0;
}

.form label {
  font-size: 14px;
  font-size: 0.875rem;
}

.form label.image-replace {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.form label.username {
  background-image: url("https://codyhouse.co/demo/login-signup-modal-window/img/cd-icon-username.svg");
}

.form label.email {
  background-image: url("https://codyhouse.co/demo/login-signup-modal-window/img/cd-icon-email.svg");
}

.form label.password {
  background-image: url("https://codyhouse.co/demo/login-signup-modal-window/img/cd-icon-password.svg");
}

.form input {
  margin: 0;
  padding: 0;
  border-radius: 0.25em;
}

.form input.full-width {
  width: 100%;
}

.form input.has-padding {
  padding: 12px 20px 12px 50px;
}

.form input.has-border {
  border: 1px solid #d2d8d8;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.form input.has-border:focus {
  border-color: #343642;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}

.form input.has-error {
  border: 1px solid #d76666;
}

.form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}

.form .mockinput {
  height: 50px;
  margin: 10px;
  padding: 2px 0px;
  cursor: pointer;
  background: #4f5f76;
  color: #FFF !important;
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 30px;
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.form .mockinput:hover {
  background: #c4f7cd;
}

.no-touch .form input[type=submit]:hover,
.no-touch .form input[type=submit]:focus {
  background: #d83d3d;
  outline: none;
}

.form .hide-password {
  display: inline-block;
  position: absolute;
  text-decoration: none;
  right: 0;
  top: 0;
  padding: 6px 15px;
  border-left: 1px solid #d2d8d8;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  font-size: 14px;
  font-size: 0.875rem;
  color: #343642;
}

.form .error-message {
  display: inline-block;
  position: absolute;
  left: -5px;
  bottom: -35px;
  background: rgba(215, 102, 102, 0.9);
  padding: 0.8em;
  z-index: 2;
  color: #FFF;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}

.form .error-message::after {
  /* triangle */
  content: "";
  position: absolute;
  left: 22px;
  bottom: 100%;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}

.form .error-message.is-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s 0, visibility 0 0;
}

@media only screen and (min-width: 600px) {
  .form {
    padding: 2em;
  }
  .form .fieldset:first-child {
    margin-top: 0;
  }
  .form .fieldset:last-child {
    margin-bottom: 0;
  }
  .form input.has-padding {
    padding: 16px 20px 16px 50px;
  }
  .form input[type=submit] {
    padding: 16px 0;
  }
}
.form-message {
  padding: 1.4em 1.4em 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  text-align: center;
}

@media only screen and (min-width: 600px) {
  .form-message {
    padding: 2em 2em 0;
  }
}
.form-bottom-message {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -40px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

.form-bottom-message a {
  color: #FFF;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  padding: 0 0 0 2px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.form-bottom-message a:hover {
  animation: borderslide-3px 0.5s;
  border-bottom: 1px solid rgb(255, 255, 255);
  padding-bottom: 3px;
}

@keyframes borderslide-3px {
  0% {
    padding-bottom: 1px;
  }
  50% {
    padding-bottom: 3px;
  }
}
@keyframes borderslide-2px {
  0% {
    padding-bottom: 1px;
  }
  50% {
    padding-bottom: 2px;
  }
}
.close-form {
  /* form X button on top right */
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  right: 0;
  top: -40px;
  background: url("./img/icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

@media only screen and (min-width: 1170px) {
  .close-form {
    display: none;
  }
}
.accept-terms {
  color: #F64747;
  text-decoration: none;
  padding: 0 1px 1px 2px;
  border-bottom: 1px solid rgba(246, 71, 71, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.accept-terms:hover {
  animation: borderslide-2px 0.5s;
  padding-bottom: 2px;
  border-bottom: 1px solid rgb(246, 71, 71);
}

#login,
#signup,
#reset-password {
  display: none;
}

#login.is-selected,
#signup.is-selected,
#reset-password.is-selected {
  display: block;
}

input[type=date] {
  display: block;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  min-height: 1.2em;
}

/* Google Font Link */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #091f36;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}

.sidebar.open {
  width: 250px;
}

.sidebar .logo-details {
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}

.sidebar .logo-details .icon {
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name {
  opacity: 1;
}

.sidebar .logo-details #btn {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}

.sidebar.open .logo-details #btn {
  text-align: right;
}

.sidebar i {
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}

.sidebar .nav-list {
  margin-top: 2px;
  height: 100%;
}

.sidebar li {
  position: relative;
  margin: 2px 0;
  list-style: none;
}

.sidebar li .tooltip {
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}

.sidebar li:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}

.sidebar.open li .tooltip {
  display: none;
}

.sidebar input {
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}

.sidebar.open input {
  padding: 0 20px 0 50px;
  width: 100%;
}

.sidebar .bx-search {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #FFF;
}

.sidebar.open .bx-search:hover {
  background: #1d1b31;
  color: #FFF;
}

.sidebar .bx-search:hover {
  background: #FFF;
  color: #11101d;
}

.sidebar li a {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
}

.sidebar li a:hover {
  background: #FFF;
}

.sidebar li a .links_name {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}

.sidebar.open li a .links_name {
  opacity: 1;
  pointer-events: auto;
}

.sidebar li a:hover .links_name,
.sidebar li a:hover i {
  transition: all 0.5s ease;
  color: #11101D;
}

.sidebar li i {
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}

.sidebar li.profile {
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}

.sidebar.open li.profile {
  width: 250px;
}

.sidebar li .profile-details {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.sidebar li img {
  height: 45px;
  width: 45px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}

.sidebar li.profile .name,
.sidebar li.profile .job {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}

.sidebar li.profile .job {
  font-size: 12px;
}

.sidebar .profile #log_out {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}

.sidebar.open .profile #log_out {
  width: 50px;
  background: none;
}

.home-section {
  position: relative;
  max-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  z-index: 2;
}

.sidebar.open ~ .home-section {
  left: 250px;
  width: calc(100% - 250px);
}

.home-section .text {
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px;
}

@media (max-width: 420px) {
  .sidebar li .tooltip {
    display: none;
  }
}
.modal__overlay {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.switcher {
  transform: translate(3.6%, 25%);
  width: 93%;
}

.modal__window {
  max-width: 500px;
  background: #ffffff;
  border: 1px solid #ffffff;
  font-size: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
}

.modal__titlebar {
  height: 40px;
  background: #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal__title {
  margin-left: 15px;
  margin-top: 10px;
  font-weight: bold;
  color: #eeeeee;
}

.modal__close {
  width: 40px;
  height: 40px;
  outline: none;
  border: none;
  background: transparent;
  color: #eeeeee;
  cursor: pointer;
}

.modal__close:active {
  transform: scale(0.9);
}

.modal__content {
  padding: 15px;
  font-size: 0.9em;
}

#new-row-temp {
  background-color: white !important;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0;
  padding: 0;
  width: 418px !important;
  margin: 0.5% !important;
  height: 500px !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

tr.toprow {
  position: sticky;
  background: #727272 !important;
  opacity: 1;
  top: 0%;
}

.tablecont th {
  border-left: none;
  border-right: 1px solid #bbbbbb;
  padding: 5px;
  /* width: 80px; */
  /* min-width: 80px; */
  position: sticky;
  opacity: 1;
  top: 0;
  z-index: 1;
  background: #727272 !important;
  color: #e0e0e0;
  font-weight: normal;
}

body {
  position: relative;
  font-family: Arial;
  width: 100%;
}

button:hover {
  cursor: pointer;
}

a:visited {
  color: black !important;
}

body {
  height: 100%;
  width: 100%;
}

.mainLoginInput::-webkit-input-placeholder {
  font-size: 20px;
  font-weight: bold;
  font-family: "myFont", Arial, Helvetica, sans-serif;
}

.mainLoginInput:-ms-input-placeholder {
  font-size: 20px;
  font-weight: bold;
  font-family: "myFont", Arial, Helvetica, sans-serif;
}

.mainLoginInput:-moz-placeholder {
  font-size: 20px;
  font-weight: bold;
  font-family: "myFont", Arial, Helvetica, sans-serif;
}

#searchfor {
  font-size: 20px;
  font-weight: bold;
  height: 66px;
}

.mainLoginInput::-moz-placeholder {
  font-weight: bold;
  font-size: 20px;
  font-family: "myFont", Arial, Helvetica, sans-serif;
}

textarea {
  border-style: 2px thick solid black;
}

textarea::-moz-placeholder {
  transform: translateY(62%);
  font-weight: bold;
  color: black;
}

textarea::placeholder {
  transform: translateY(62%);
  font-weight: bold;
  color: black;
}

textarea::target-text {
  transform: translateY(2%);
}

textarea,
input[type=text],
input[type=password] {
  font-family: Roboto, Arial, sans-serif;
  font-size: 20px;
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(3, 3, 3);
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(3, 3, 3);
  opacity: 1;
  /* Firefox */
}

/* The Modal (background) */
/* Modal Content */
.modal-content {
  /* background-color: #fefefe; */
  margin: auto;
  /* display: table-row; */
  /* border: 1px solid #888; */
  width: 100%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

input {
  outline: none;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
}

.multi-selector {
  width: 100%;
}

.select-field {
  border: 1px solid rgb(187, 187, 187);
}

.select-field,
.task,
.list {
  width: 100%;
  background-color: white;
  padding: 0.3rem;
}

.list {
  box-shadow: 0 30px 60px rgb(0, 0, 0);
  display: none;
}

.down-arrow {
  font-size: 1.2rem;
  display: inline-block;
  cursor: pointer;
  transition: 0.2s linear;
}

.task {
  display: block;
  padding-left: 0;
}

.task span {
  float: right;
  font-size: 0.6rem;
  padding-top: 6px;
}

.task:hover {
  background-color: aliceblue;
}

.show {
  display: block;
}

.rotate180 {
  transform: rotate(-60deg);
}

.row {
  display: table-row;
  position: relative;
  left: 60%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 10px;
}

.crudd {
  border-style: 1px solid black;
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 70px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: rgb(7, 7, 7);
  color: white;
  cursor: pointer;
  padding: 15px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: rgb(23, 81, 128);
}

body {
  background-color: white;
}

a.headermenu,
a.headermenu:visited {
  color: black;
}

button.glow-on-hover {
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  color: transparent;
  background: rgb(131, 64, 255);
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

button.glow-on-hover:before {
  content: "";
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
  color: transparent;
}

button.glow-on-hover:active {
  color: rgb(254, 246, 246);
}

button.glow-on-hover:active:after {
  background: transparent;
  color: rgb(254, 246, 246);
}

button.glow-on-hover:hover:before {
  opacity: 1;
}

button.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10%;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
.col {
  flex: 1;
  /* additionally, equal width */
  padding: 1em;
  border: solid;
  background: #c3e5e0;
}

header {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  background-color: #58B6A6;
}

.searching {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100px;
  background: transparent;
  background-color: transparent;
  margin-bottom: 40px;
}

.reports {
  display: none;
  position: absolute;
  /* left: 50%; */
  top: 30%;
}

.container_menu {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
}

.col1 {
  flex: 1;
  /* additionally, equal width */
  justify-content: center;
  padding: 1em;
  border: solid;
  background: #c1d7d4;
  background-color: #c1d7d4;
  color: black;
  text-align: center;
  cursor: pointer;
}

.col1:hover {
  background: #0a82ba;
  background-color: #0a82ba;
}

.spanmenu {
  display: none;
  height: -moz-fit-content;
  height: fit-content;
}

.sidenav {
  display: none;
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(141, 128, 128);
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#contact-form {
  position: relative;
  left: 15.5%;
  background-color: #F9F9F9;
  width: 70%;
  height: -moz-fit-content;
  height: fit-content;
  border: 2px solid black;
}

img {
  border-radius: 50%;
  height: 60px;
  width: 60px;
}

img.crudd {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.table-users {
  border: 1px solid #e4def9;
  border-radius: 10px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: calc(100% - 2em);
  margin: 1em auto;
}

button.newrowbtn {
  background-color: transparent;
  color: black !important;
  font: bold;
}

button.reportbtn {
  font: bold;
  font-size: arial;
  background-color: transparent;
  -moz-columns: black !important;
       columns: black !important;
}

button.newrowbtn:hover {
  background-color: red;
  background: red;
}

button.reportbtn:hover {
  background-color: #c4f7cd;
  background: #c4f7cd;
}

button.crudd {
  cursor: pointer !important;
}

img {
  border: 3px solid;
  border-color: white;
  height: 100px;
  margin: 0.5rem 0;
  width: 100px;
}

table.meetingadmin {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.mastertable td:first-child {
  background-color: white;
  border-bottom: 1px solid white;
  border-radius: 10px 10px 0 0;
  position: relative;
  top: 0;
  transform: translateY(0);
  width: 100%;
}
.mastertable td:not(:first-child) {
  margin: 0;
  padding: 5px 1em;
  width: 100%;
}
.mastertable td:not(:first-child):before {
  font-size: 0.8em;
  padding-top: 0.3em;
  position: relative;
}
.mastertable td:last-child {
  padding-bottom: 1rem !important;
}

#targedit,
#compledit {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

table.meetingadmin tr {
  background: #f1f1f1;
  margin: 2em auto 2em;
  cursor: auto;
  border-radius: 0.25em;
  transform: translateY(-30px);
  transition-property: transform;
  transition-duration: 0.3s;
  box-shadow: inset #121212 0 0 0 1px, inset #343333 0 0 0 1.5px, inset #3b3b3b 0 0 0 2px, inset #494949 0 0 0 2.5px, inset #686767 0 0 0 3px, inset #8a8a8a 0 0 0 3.5px, inset #c4c3c3 0 0 0 4px, inset #cecdcd 0 0 0 4.5px;
  border-radius: 20px;
}

table.meetingadmin tr,
td {
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
}

#currenttable {
  display: flex;
  flex-wrap: wrap;
  height: -moz-fit-content;
  height: fit-content;
}

.meetingadmin td {
  white-space: pre-wrap;
}
.meetingadmin td:nth-child(3) {
  clear: both;
  margin-left: 2%;
  margin-bottom: 20px;
  padding: 4px 20% 4px 90px !important;
  position: relative;
  text-align: left;
  display: flex;
  width: 95% !important;
}
.meetingadmin td:nth-child(3):before {
  color: black;
  content: "";
  display: block;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
.meetingadmin td:not(:nth-child(3)) {
  clear: both;
  margin-left: 2%;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 4px 20% 4px 90px;
  width: 95% !important;
}
.meetingadmin td:not(:nth-child(3)):before {
  padding: 3px;
  color: black;
  content: "";
  display: block;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
.meetingadmin td:nth-child(6) {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.meetingadmin td:nth-child(8) {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.meetingadmin td:nth-child(9) {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}
.meetingadmin td:nth-child(4) {
  max-width: 100%;
  margin-left: 2%;
  padding: 4px 0% 0px 3px !important;
  overflow-y: auto;
  display: block;
  word-wrap: break-word;
}
.meetingadmin td:nth-child(5) {
  overflow-y: scroll;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  word-wrap: break-word;
  margin-left: 2%;
  margin-bottom: 10px;
  padding: 4px 0% 4px 3px !important;
}
.meetingadmin td:last-child {
  width: 100%;
  display: flex;
}
.meetingadmin td:first-child {
  margin: 5px 1px 0px 6px !important;
  border-radius: 10px;
  height: 10%;
}
.meetingadmin td:nth-child(2), .meetingadmin td:nth-child(7) {
  display: none;
}
.meetingadmin td:nth-child(4):before {
  content: "Description:";
  transform: translate(1%, -110%);
  font-weight: bold;
}
.meetingadmin td:nth-child(1):before {
  content: "Type:";
  font-weight: bold;
}
.meetingadmin td:nth-child(5):before {
  content: "Comments:";
  transform: translate(10%, -110%);
  font-weight: bold;
  position: fixed;
}
.meetingadmin td:nth-child(8):before {
  content: "Status";
  font-weight: bold;
}
.meetingadmin td:nth-child(6):before {
  content: "Due Date:";
  font-weight: bold;
}
.meetingadmin td:nth-child(7):before {
  content: "Completed:";
  font-weight: bold;
}
.meetingadmin td:nth-child(9):before {
  content: "Owner(s)";
  font-weight: bold;
  margin-right: 1000px;
}

#currenttable td {
  color: white;
}
#currenttable td:nth-child(1) {
  clear: both;
  position: relative;
  text-align: left;
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
#currenttable td:nth-child(1):before {
  color: black;
  content: "";
  display: block;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
#currenttable td:nth-child(5) {
  clear: both;
  position: relative;
  text-align: left;
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
#currenttable td:nth-child(5):before {
  color: black;
  content: "";
  display: block;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
#currenttable td:nth-child(3) {
  clear: both;
  margin-left: 25%;
  margin-bottom: 20px;
  padding: 4px 20% 4px 90px !important;
  position: relative;
  text-align: left;
  display: flex;
  width: -moz-fit-content !important;
  width: fit-content !important;
}
#currenttable td:nth-child(3):before {
  color: black;
  content: "";
  display: block;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
}
#currenttable td:nth-child(1):before {
  content: "Project:";
  transform: translate(-30%);
  display: none !important;
}
#currenttable td:nth-child(3):before {
  content: "Meeting:";
  transform: translate(-30%);
}
#currenttable td:nth-child(5):before {
  content: "Date:";
  transform: translate(-30%);
  display: none;
}

.currowclass {
  color: black !important;
  background: #4f5f76 !important;
  height: 20% !important;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  overflow: hidden !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1900px;
  font-size: small !important;
}

tr {
  background-color: white !important;
  border: 1px solid white;
  border-radius: 10px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0.5rem 0;
  padding: 0;
  max-width: 1000px;
  width: 32%;
  margin: 0.5%;
  height: 420px !important;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media screen and (max-width: 1510px) {
  .toobig {
    display: none;
  }
}
@media screen and (max-width: 1266px) {
  .tablecontent {
    padding: 2px;
  }
}
@media screen and (max-width: 1000px) {
  .form-container {
    flex-direction: column;
  }
  .currowclass {
    height: 120px !important;
  }
  .main-nav li {
    list-style: none;
    /* float: left; */
    float: unset;
  }
  .containersort {
    display: none !important;
  }
  main-nav ul {
    position: sticky;
    right: 23%;
  }
  .searchheader {
    flex-direction: column;
  }
  .search-bar {
    width: -moz-fit-content !important;
    width: fit-content !important;
  }
  button {
    width: -moz-fit-content;
    width: fit-content;
  }
  .container_menu {
    display: none !important;
    color: transparent;
  }
  .spanmenu {
    display: block;
    height: -moz-fit-content;
    height: fit-content;
  }
  .sidenav {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(141, 128, 128);
    transition: 0.5s;
    padding-top: 60px;
  }
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  .descr_css {
    width: 100%;
  }
  table.meetingadmin tr,
  td {
    word-wrap: break-word;
    max-width: 90vw;
    width: 100%;
    display: flex;
    flex-direction: row;
  }
  .mastertable table,
  tr,
  td {
    display: block;
  }
  .mastertable td:first-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
  }
  .mastertable td:not(:first-child) {
    clear: both;
    margin-bottom: 20px;
    padding: 4px 20px 4px 9px;
    position: relative;
    text-align: left;
    width: 100% !important;
  }
  .mastertable td:not(:first-child):before {
    color: black;
    content: "";
    display: block;
    left: -33%;
    width: 100%;
    position: absolute;
  }
  .mastertable td:nth-child(5) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .mastertable td:last-child {
    width: 13.95% !important;
    display: flex;
  }
  .mastertable td:nth-child(3):before {
    content: "Date Created";
  }
  .mastertable td:nth-child(1):before {
    content: "Type:";
  }
  .mastertable td:nth-child(6):before {
    content: "Due Date:";
  }
  .mastertable td:nth-child(5):before {
    content: "Description:";
    width: 70%;
  }
  .mastertable td:nth-child(7):before {
    content: "Status";
  }
  .mastertable td:nth-child(6):before {
    content: "Due Date:";
  }
  .mastertable td:nth-child(8):before {
    content: "Due:";
  }
  .mastertable td:nth-child(9)::before {
    content: "Owner(s)";
  }
  .mastertable td:nth-child(10):before {
    content: "Change:";
  }
  tr {
    padding: 10px 0;
    position: relative;
    width: 100% !important;
    overflow-x: hidden;
    display: table-cell;
  }
  tr:first-child {
    display: none;
  }
  .meetingadmin table,
  tr,
  td {
    display: block;
  }
  .meetingadmin td:not(:nth-child(3)) {
    clear: both;
    margin-left: 100px;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    width: 100% !important;
    display: flex;
    flex-wrap: wrap;
  }
  .meetingadmin td:not(:nth-child(3)):before {
    color: black;
    content: "";
    display: block;
    left: 0;
    width: 100%;
    position: absolute;
  }
  .meetingadmin td:last-child {
    width: 100%;
    display: flex;
  }
  .meetingadmin td:nth-child(7) {
    display: none;
  }
  .meetingadmin td:nth-child(3):before {
    content: "Date Created";
    font-size: small;
  }
  .meetingadmin td:nth-child(4):before {
    content: "Description:";
    font-size: small;
  }
  .meetingadmin td:nth-child(1):before {
    content: "Type:";
    font-size: small;
  }
  .meetingadmin td:nth-child(5):before {
    content: "Comments:";
    font-size: small;
  }
  .meetingadmin td:nth-child(8):before {
    content: "Status";
    font-size: small;
  }
  .meetingadmin td:nth-child(6):before {
    content: "Due Date:";
    font-size: small;
  }
  .meetingadmin td:nth-child(7):before {
    content: "Completed:";
    font-size: small;
  }
  .meetingadmin td:nth-child(9):before {
    content: "Owner(s)";
    font-size: small;
  }
  .meetingadmin td:nth-child(10):before {
    content: "Change:";
    font-size: small;
  }
}
@media screen and (max-width: 780px) {
  #myBtn {
    display: none !important;
  }
  #myBtn:hover {
    background-color: rgb(23, 81, 128);
  }
  #search {
    width: 100% !important;
  }
  #searchfor {
    width: 100% !important;
  }
  .oreportbtn {
    width: 100% !important;
    border-radius: 12px;
  }
  .reportbtn {
    width: 100% !important;
    border-radius: 12px;
    font-size: 1rem;
  }
  .searching {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100px;
  }
  .header {
    background-color: transparent;
    color: white;
    font-size: 2em;
    font-weight: 700;
    padding: 0;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  }
  tr {
    width: 100%;
    overflow-y: scroll;
  }
  img {
    border: 3px solid;
    border-color: white;
    height: 100px;
    margin: 0.5rem 0;
    width: 100px;
  }
  .mastertable td:first-child {
    background-color: white;
    border-bottom: 1px solid white;
    border-radius: 10px 10px 0 0;
    position: relative;
    top: 0;
    transform: translateY(0);
    width: 100%;
  }
  .mastertable td:not(:first-child) {
    margin: 0;
    padding: 5px 1em;
    width: 100%;
  }
  .mastertable td:not(:first-child):before {
    font-size: 0.8em;
    padding-top: 0.3em;
    position: relative;
  }
  .mastertable td:last-child {
    padding-bottom: 1rem !important;
  }
  .meetingadmin td:not(:nth-child(3)) {
    clear: both;
    margin-bottom: 20px;
    position: relative;
    text-align: left;
    display: flex;
    width: 100% !important;
  }
  .meetingadmin td:not(:nth-child(3)):before {
    color: black;
    content: "";
    display: block;
    left: 0;
    width: 100%;
    position: absolute;
  }
  .meetingadmin td:nth-child(4) {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .meetingadmin td:last-child {
    width: 100%;
    display: flex;
  }
  .meetingadmin td:nth-child(7) {
    display: none;
  }
  .meetingadmin td:nth-child(3):before {
    content: "Date Created";
    font-size: small;
  }
  .meetingadmin td:nth-child(4):before {
    content: "Description:";
    font-size: small;
  }
  .meetingadmin td:first-child:before {
    content: "Type:";
    font-size: small;
  }
  .meetingadmin td:nth-child(5):before {
    content: "Comments:";
    font-size: small;
  }
  .meetingadmin td:nth-child(8):before {
    content: "Status";
    font-size: small;
  }
  .meetingadmin td:nth-child(6):before {
    content: "Due Date:";
    font-size: small;
  }
  .meetingadmin td:nth-child(7):before {
    content: "Completed:";
    font-size: small;
  }
  .meetingadmin td:nth-child(9):before {
    content: "Owner(s)";
    font-size: small;
  }
  .meetingadmin td:nth-child(10):before {
    content: "Change:";
    font-size: small;
  }
  tr {
    background-color: white !important;
    border: 1px solid white;
    border-radius: 10px;
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
    padding: 0;
  }
  .table-users {
    border: none;
    box-shadow: none;
    position: absolute;
    left: 2%;
  }
}/*# sourceMappingURL=temp.css.map */