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

body {
  font-family: 'Nunito', sans-serif;
  color: #384047;
}

form {
  max-width: 90%;
  margin: 10px auto;
  padding: 10px 20px;
  border-radius: 8px;
}

h1 {
  margin: 0 0 30px 0;
  text-align: center;
}
h2.sub-h2{
    text-align: center;
    font-size: 28px;
    color: steelblue;
}
span.err-msg{
    top: -30px;
    left: 5px;
    font-size: 14px;
}
fieldset{padding:0;margin:0;}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  background: rgba(255,255,255,0.1);
  border: none;
  font-size: 16px;
  height: auto;
  min-height:50px;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #e8eeef;
  color: #8a97a0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03) inset;
  margin-bottom: 30px;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
}

.radio-container
{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.radio-containerh2
{
  margin: 0 0 80px 0;
  color: #555;
  font-size: 30px;
  font-weight: 300;
}

.radio-buttons
{
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.custom-radio input
{
  display: none;
}

.radio-btn
{
  margin: 10px;
  width: 70px;
  height: 70px;
  border: 3px solid transparent;
  display: inline-block;
  border-radius: 10px;
  position: relative;
  text-align: center;
  box-shadow: 0 0 20px #c3c3c367;
  cursor: pointer;
}

.radio-btn > i {
  color: #ffffff;
  background-color: steelblue;
  font-size: 20px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) scale(2);
  border-radius: 50px;
  padding: 3px;
  transition: 0.5s;
  pointer-events: none;
  opacity: 0;
}

.radio-btn .radio-selector-icon
{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radio-btn .radio-selector-icon img
{
  display:block;
  width:100%;
  margin-bottom:20px;

}
.radio-btn .radio-selector-icon i
{
  color: steelblue;
  line-height: 80px;
  font-size: 60px;
}

.radio-btn .radio-selector-icon h3
{
  color: #555;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing:1px;
}

.custom-radio input:checked + .radio-btn
{
  border: 2px solid steelblue;
}

.custom-radio input:checked + .radio-btn > i
{
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

label.required::after {
    content: '*';
    font-family: 'Line Awesome Free';
    color: red;
    padding-left: 5px;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

button {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: #4bc970;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #3ac162;
  border-width: 1px 1px 3px;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset;
  margin-bottom: 10px;
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

.number {
  background-color: #5fcf80;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  border-radius: 100%;
}

@media screen and (min-width: 480px) {

  form {
    max-width: 90%;
  }

}
body {
    font-family: 'Nunito', sans-serif;
    padding: 2em;
    background-color: #f8f9fa;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 2em;
    border-radius: 2em;
}

.logo img {
    display: block;
    margin: 0 auto;
}

form {
    margin-top: 2em;
}

label {
    display: block;
    margin-bottom: .5em;
    color: #333333;
}

input, select, textarea {
    width: 100%;
    padding: .5em;
    border: 1px solid #cccccc;
    border-radius: .25em;
    margin-bottom: 1em;
}

input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    display: inline-block;
}

input[type="radio"] + label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 1px solid #aaaaaa;
    border-radius: 50%;
    background-color: #f8f8f8;
}

input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background-color: #333333;
}

button {
    background: #333333;
    color: #ffffff;
    padding: 1em 2em;
    border: none;
    border-radius: .25em;
    cursor: pointer;
}

#other-detail {
    display: none;
}

#other:checked ~ #other-detail {
    display: block;
}

#terms, label[for="terms"] {
    display: inline-block;
    vertical-align: middle;
    float:left;
    width:auto;
}
#agreements a{
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.dropzone {
    border: 2px dashed #aaa;
    padding: 20px;
    text-align: center;
    position: relative;
    margin: 10px 0;
}

.dropzone img {
    max-width: 100%;
    max-height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.checkbox-wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-wrapper input {
    width: auto;
    margin: 5px 10px 0 0;
}
.full-page-loader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(241, 229, 209, 0.95);
    top: 0;
    left: 0;
    z-index: 3;
    color: darkslategray;
}
.mw500px{
    max-width: 500px;
    text-align: center;
}
.suggestions {
    border: 1px solid #eee;
    max-height: 150px;
    overflow-y: auto;
    background: white;
    position: absolute;
    z-index: 2;
    width: 440px;
    margin-top: -35px;
}
.suggestion-item {
    padding: 8px;
    cursor: pointer;
}
.suggestion-item:hover {
    background-color: #f0f0f0;
}
#tasks-container {
    display: flex;
    flex-direction: column;
}

.task-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 20px 0;
    position: relative;
    border-bottom: 1px dotted lightslategray;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
}

.form-group button {
    align-self: flex-end;
}
.project-container{
    width: 150px;
}
.detail-container{
    width: 425px;
}
.time-container{
    width:auto;
    margin-top: -20px;
}
.time-inputs {
    display: flex;
    align-items: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 10px;
}

.time-button {
    width: 30px;
    height: 30px;
    background: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    line-height: 28px;
    font-size: 18px;
    padding: 0;
    color: lightslategray;
}

.time-inputs input {
    width: 60px;
    text-align: center;
    font-size: 18px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.time-inputs span {
    font-size: 14px;
    color: #666;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}
.time-container.form-group button {
    align-self: auto;
}
.status-container{

}
#add-row{
    width: auto;
    font-size: 10px;
    float: right;
    background: forestgreen;
    font-weight: bold;
}
.remove-container{
    height: 40px;
    position: absolute;
    right: -85px;
    top: 35px;
}
.remove-container button{
    width: auto;
    font-size: 10px;
    float: right;
    background: crimson;
    font-weight: bold;
}
#date-field{
    min-width:200px;
    width:30%;
}
#work-email, select#team, select#reporting-manager{
    min-width:300px;
    width:30%;
}
#email-error{
    position: absolute;
    color: red;
    display: block;
    background: #ffefef;
    padding: 20px;
    top: -70px;
    right: -100px;
    max-width: 300px;
}
.absolute{
    position:absolute;
}
.fixed{
    position: fixed;
}
.relative{
    position: relative;
}
.summary-card{
    right:-200px;
    bottom:100px;
}
.card {
  display: flex;
  justify-content: center;
  align-items: center;
}

.card span {
  position: absolute;
  top: 0;
  width: 150px;
  height: 150px;
  display: block;
  background: #000;
  border-radius: 50%;
  transform-origin: 125px 0;
  transform: rotate(calc(90deg * var(--i)));
  filter: blur(80px);
  opacity: 0.75;
}

.card span:nth-child(2) {
  background: #ec1865;
}

.card span:nth-child(3) {
  background: #aeba27;
}

.card span:nth-child(4) {
  background: #f5cb01;
}

.card span:nth-child(1) {
  background: #00a0b8;
}

.card .glass {
  position: absolute;
  width: 300px;
  height: 250px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  border: 1px solid #fff;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex-direction: column;
}

.card .glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
  transform: skewX(345deg);
}

.card .glass h2 {
  padding: 0 20px;
  margin: 5px 0;
  font-weight: 400;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: #333;
  text-align: center;
  font-size: 18px;
}

.card .glass h2 i {
  font-weight: 300;
  font-size: 0.75em;
  font-style: normal;
}
.flex{display: flex;}
.column{flex-direction: column;}
.w-100{width:100%;}
.x-center{justify-content: center;}
.y-center{align-items: center;}
.x-apart{justify-content: space-between;}
.table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    width: 100%;
    margin: 20px 0;
}
.table .row {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}
.table .cell {
    padding: 10px;
    width: 50%;
}
.table .cell-large {
    padding: 10px;
    width: 75%;
}
.table .header {
    font-weight: bold;
    background-color: #f9f9f9;
}
.summary-title {
    font-weight: bold;
    font-size: 24px;
    border-bottom: 1px dashed lightslategray;
    padding-top: 15px;
}
select#department-dropdown, select#reporting-manager-dropdown {
    min-width: 200px;
}
.check_if_correct{
    right: 10px;
    top:10px;
}
.check_if_correct input[type='checkbox']{
    height:40px;
    width:40px;
    cursor: pointer;
}
.cell-verify-header{
    right:15px;
    top: 20px;
}
button.red {
    background-color: coral;
}
button.blue {
    background-color: cornflowerblue;
}
button{
    max-width:250px;
}

/*
    ONLY MEDIA QUERIES BELOW THIS POINT
    Media Queries Below

*/
@media only screen and (max-width: 900px) {
    .container{
        width:100%;
        padding:20px 0;
    }
    body{
        margin:0;
        padding:0;
    }
    form{
        margin:0;
        padding:0 5px;
        max-width: 100%;
    }
    .table .cell{
        overflow-x: scroll;
    }
}
