/**
 * Font.
 */
 @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjASc6CsE.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu51xIIzc.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Roboto';
    font-style: italic;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ACc6CsE.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5fBBc9.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf) format('truetype');
  }
  @font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9fBBc9.ttf) format('truetype');
  }
  /**
   * General markup.
   */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  html,
  body {
    position: relative;
    height: 100%;
    width: 100%;
    color: #424242;
    font-size: 16px;
    line-height: 24px;
    background-color: #e0e0e0;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.007);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }
  p {
    margin: 16px 0;
  }
  a {
    display: inline-block;
    color: #00bcd4;
    text-decoration: none;
  }
  a:hover,
  a:focus,
  a:active {
    color: #008697;
  }
  /**
   * Container.
   */
  .log_ds {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    min-height: 100%;
    padding: 16px;
    background-color: transparent;
    transition: background-color 0.56s cubic-bezier(0.4, 0, 0.2, 1) 0.28s;
    font-family: 'Roboto';
  }
  .log_ds.is-login {
    background-color: #00bcd4;
  }
  .log_ds.is-amnesia {
    background-color: #757575;
  }
  .log_ds.is-register {
    background-color: #ffea00;
  }
  /* --------------------------------
   * Login, Register & Amnesia Card.
   *
   * @version 1.0
   * -------------------------------- */
  /* --------------------------------
   * Card.
   * -------------------------------- */
  .card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    border: 0;
    border-radius: 2px;
  }
  .card--login,
  .card--amnesia,
  .card--register {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin: auto;
    width: 100%;
    max-width: 320px;
    opacity: 0;
    transform: scale(0) translate(-50%, -50%);
    transform-origin: 0% 0% 0;
    transition: all 0.42s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .card--login.is-active,
  .card--amnesia.is-active,
  .card--register.is-active {
    opacity: 1;
    transform: scale(1) translate(-50%, -50%);
    transition-delay: 0.35s;
  }
  .card--amnesia {
    max-width: 400px;
  }
  /**
   * Card title.
   */
  .card__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 16px;
    color: currentColor;
    font-weight: 400;
  }
  .card__title--bottom {
    justify-content: flex-end;
  }
  .card__title--center {
    align-items: center;
  }
  /* Card title text */
  .card__title-text {
    color: inherit;
    font-size: 24px;
    line-height: 24px;
  }
  /* Card title sub text */
  .card__title-sub-text {
    color: inherit;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.56;
  }
  /**
   * Card content.
   */
  .card__content {
    padding: 16px;
    color: inherit;
    line-height: 20px;
    font-size: 14px;
  }
  .card__content > :first-child {
    margin-top: 0;
  }
  .card__content > :last-child {
    margin-bottom: 0;
  }
  /**
   * Card action.
   */
  .card__action {
    display: flex;
    padding: 8px;
    flex-direction: row;
    justify-content: space-between;
  }
  .card__action + .card__action {
    padding-top: 0;
  }
  .card__action--center {
    justify-content: center;
  }
  .card__action--center .btn + .btn {
    margin-left: 8px;
  }
  /* --------------------------------
   * Inputfields.
   * -------------------------------- */
  .inputfield {
    position: relative;
    padding: 20px 0;
  }
  /**
   * Inputfields input.
   */
  .inputfield__input {
    display: block;
    padding: 4px 0;
    width: 100%;
    color: #757575;
    font-size: 16px;
    line-height: 21px;
    background-color: transparent;
    border: 0 solid rgba(0, 0, 0, 0.12);
    border-bottom-width: 1px;
    outline: none;
  }
  /**
   * Inputfields label.
   */
  .inputfield__label {
    position: absolute;
    top: 24px;
    left: 0;
    display: block;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    line-height: 21px;
    pointer-events: none;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .inputfield.is-dirty .inputfield__label,
  .inputfield__input:focus ~ .inputfield__label {
    top: 0;
    font-size: 12px;
    font-weight: 500;
    transition-duration: 0.14s;
  }
  .inputfield.is-dirty .inputfield__label {
    color: #bdbdbd;
  }
  .inputfield__input:focus ~ .inputfield__label {
    color: #00bcd4;
  }
  .required {
    color: #f44336 !important;
    font-style: normal;
  }
  /**
   * Inputfields under-line.
   */
  .inputfield__underline {
    position: absolute;
    bottom: 20px;
    left: 50%;
    right: 50%;
    height: 2px;
    background-color: #00bcd4;
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0s;
  }
  .inputfield__input:focus ~ .inputfield__underline {
    left: 0%;
    right: 0%;
  }
  /* --------------------------------
   * Buttons.
   * -------------------------------- */
  .btn {
    position: relative;
    display: inline-block;
    padding: 0 8px;
    color: currentColor;
    line-height: 36px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 10% 10%;
    border: 0;
    border-radius: 2px;
    outline: 0;
    outline-offset: 0;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
    transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), outline-offset 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn:hover {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.14);
  }
  .btn:focus {
    outline: thin dotted;
    outline: 1px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  }
  .btn:focus:active,
  .btn:active {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  }
  .btn.is-animating {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.26) 10%, rgba(255, 255, 255, 0) 11%);
    -webkit-animation: btnRipple 0.35s forwards linear;
            animation: btnRipple 0.35s forwards linear;
  }
  /**
   * Button type modifiers.
   */
  .btn--block {
    width: 100%;
    text-align: center;
  }
  .btn--block + .btn--block {
    margin-top: 8px;
  }
  .btn--primary {
    color: #fff;
    background-color: #00bcd4;
  }
  .btn--primary.is-animating {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.26) 10%, rgba(255, 255, 255, 0) 11%);
  }
  .btn--secondry {
    color: #424242;
    background-color: #ffea00;
  }
  .btn--secondry.is-animating {
    background-image: radial-gradient(circle, rgba(66, 66, 66, 0.26) 10%, rgba(66, 66, 66, 0) 11%);
  }
  /* Flat button */
  .btn--flat {
    color: #424242;
    background-color: rgba(66, 66, 66, 0);
    outline: 0 !important;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0) !important;
  }
  .btn--flat:hover,
  .btn--flat:focus,
  .btn--flat:focus:active,
  .btn--flat:active {
    background-color: rgba(66, 66, 66, 0.12);
  }
  .btn--flat.is-animating {
    background-image: radial-gradient(circle, rgba(66, 66, 66, 0.26) 10%, rgba(66, 66, 66, 0) 11%);
  }
  .btn--flat.btn--primary {
    color: #00bcd4;
    background-color: rgba(0, 188, 212, 0);
  }
  .btn--flat.btn--primary:hover,
  .btn--flat.btn--primary:focus,
  .btn--flat.btn--primary:focus:active,
  .btn--flat.btn--primary:active {
    background-color: rgba(0, 188, 212, 0.12);
  }
  .btn--flat.btn--primary.is-animating {
    background-image: radial-gradient(circle, rgba(0, 188, 212, 0.26) 10%, rgba(0, 188, 212, 0) 11%);
  }
  .btn--flat.btn--secondry {
    color: #ffea00;
    background-color: rgba(255, 234, 0, 0);
  }
  .btn--flat.btn--secondry:hover,
  .btn--flat.btn--secondry:focus,
  .btn--flat.btn--secondry:focus:active,
  .btn--flat.btn--secondry:active {
    background-color: rgba(255, 234, 0, 0.12);
  }
  .btn--flat.btn--secondry.is-animating {
    background-image: radial-gradient(circle, rgba(255, 234, 0, 0.26) 10%, rgba(255, 234, 0, 0) 11%);
  }
  /**
   * Button animations.
   */
  @-webkit-keyframes btnRipple {
    84% {
      background-size: 1000% 1000%;
    }
    100% {
      background-size: 1100% 1100%;
    }
  }
  @keyframes btnRipple {
    84% {
      background-size: 1000% 1000%;
    }
    100% {
      background-size: 1100% 1100%;
    }
  }
  /* --------------------------------
   * Toggle.
   * -------------------------------- */
  .toggle {
    position: relative;
    display: inline-flex;
  }
  .toggle--block {
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .toggle--center {
    justify-content: center;
  }
  /**
   * Toggle input.
   */
  .toggle__input {
    position: absolute;
    z-index: -1;
    height: 0;
    width: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    pointer-events: none;
    border: 0 !important;
    opacity: 0;
  }
  /**
   * Toggle label.
   */
  .toggle__label {
    order: 1;
    font-size: 16px;
    font-weight: 500;
  }
  div#mainContainer h5 {
    color: #00bcd4;
    font-size: 20px;
    font-weight: 800;
    font-family: '500';
    border-bottom: 2px solid #00bcd4;
    display: inline-block;
    padding-bottom: 5px;
}
article{
  padding: 0!important;
  margin:0!important;
}
.entry-content{
height: 100vh;
}
  /**
   * Toggle checkbox.
   */
  .toggle__checkbox {
    position: relative;
    z-index: 1;
    display: inline-flex;
    order: 0;
    align-self: center;
    margin: auto;
    margin-left: 8px;
    margin-right: 16px;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #616161;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.28s ease-in-out;
  }
  .toggle__checkbox::after {
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: -1;
    content: '';
    height: 48px;
    width: 48px;
    background-color: rgba(66, 66, 66, 0.12);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    perspective: 18px;
    perspective-origin: 9px 9px;
    transform-origin: 9px 9px 0;
    transform: scale(0) translate(-16px, -16px);
  }
  .toggle__checkbox.is-animating::after {
    -webkit-animation: checkBoxRipple 0.42s linear forwards;
            animation: checkBoxRipple 0.42s linear forwards;
  }
  .toggle__input:checked ~ .toggle__checkbox {
    background-color: #00bcd4;
    border-color: #00bcd4;
  }
  .toggle__input:checked ~ .toggle__checkbox::after {
    background-color: rgba(0, 188, 212, 0.26);
  }
  /**
   * Toggle checkbox mark.
   */
  .toggle__checkbox-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 16px;
    width: 16px;
    margin-top: -8px;
    margin-left: -8px;
    fill: #fff;
    perspective: 8px;
    perspective-origin: 8px 8px;
    transform-origin: 8px 8px 0;
    transform: scale(0);
    transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .toggle__input:checked ~ .toggle__checkbox > .toggle__checkbox-mark {
    transform: scale(1);
  }
  /**
   * Toggle animations.
   */
  @-webkit-keyframes checkBoxRipple {
    84% {
      opacity: 1;
      transform: scale(1) translate(-16px, -16px);
    }
    100% {
      opacity: 0;
      transform: scale(1.1) translate(-16px, -16px);
    }
  }
  @keyframes checkBoxRipple {
    84% {
      opacity: 1;
      transform: scale(1) translate(-16px, -16px);
    }
    100% {
      opacity: 0;
      transform: scale(1.1) translate(-16px, -16px);
    }
  }
  .tabs a:hover,.tabs a:active {
    color: #fff!important;
  }
  a{
    text-decoration: none!important;
  }
  /* --------------------------------
   * Helpers.
   * -------------------------------- */
  .shadow-0dp {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  }
  .shadow-2dp {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.14);
  }
  .shadow-3dp {
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.12), 0 3px 3px -2px rgba(0, 0, 0, 0.2), 0 1px 8px 0 rgba(0, 0, 0, 0.14);
  }
  .shadow-4dp {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.12), 0 1px 10px 0 rgba(0, 0, 0, 0.14), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  }
  .shadow-6dp {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.12), 0 1px 18px 0 rgba(0, 0, 0, 0.14), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
  }
  .shadow-8dp {
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.12), 0 3px 14px 2px rgba(0, 0, 0, 0.14), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  }
  .shadow-16dp {
    box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.12), 0 6px 30px 5px rgba(0, 0, 0, 0.14), 0 8px 10px -5px rgba(0, 0, 0, 0.2);
  }
  .shadow-24dp {
    box-shadow: 0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.14), 0 24px 38px 3px rgba(0, 0, 0, 0.2);
  }
  .sr-only {
    position: absolute;
    overflow: hidden;
    padding: 0;
    height: 1px;
    width: 1px;
    clip: rect(0 0 0 0);
    clip: rect(0, 0, 0, 0);
    border: 0;
  }
  .text-center {
    text-align: center;
  }
  header,footer{
    display: none;
  }
  .wp-block-group {
    box-sizing: border-box;
    display: none;
}
.img img {
  width: 200px!important;
  height: 109px;
  margin: 0 auto;
  object-fit: cover;
}
.rect {
  margin: 100px auto;
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
 }
 #reset { 
  margin:1.5em auto; 
}
#signature {
  width:auto;
  box-shadow: 0 0 5px 1px #ddd inset;
  border:dashed 2px #53777A;
  border: dashed 1px #53777A;
  margin:0;
  text-align:center;
  min-height:80px;
  min-width:340px;
  transition:.2s;
}
#signature_capture {
  width:100%; 
  height:10em; 

}

 .rect>div {
  background-color: #333;
  height: 100%;
  width: 6px;
  display: inline-block;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
 }
 
 .rect .rect2 {
  animation-delay: -1.1s;
 }
 
 .rect .rect3 {
  animation-delay: -1.0s;
 }
 
 .rect .rect4 {
  animation-delay: -0.9s;
 }
 
 .rect .rect5 {
  animation-delay: -0.8s;
 }
 
 @keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
   transform: scaleY(0.4);
  }
  20% {
   transform: scaleY(1.0);
  }
 }
 .accordion {
  width: 800px;
  margin: 25px auto;
  color: black;
  background-color: transparent;
  padding: 30px 34px 30px 10px;
  background-color: #ffffffc9;
  /* border-top: 5px solid #ffcc33; */
}

.accordion .container {
  position: relative;
  margin: 10px 10px;
  background: #f2f2f2;
  border-radius: 5px;
  /* box-shadow: 3px 4px 10px 0px #00000038; */
  margin-bottom: 15px!important;
  margin-bottom: 20px;
  padding: 20px;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
}

.accordion .label {
  position: relative;
  padding: 10px 0;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  font-weight: 600;
}
.accordion h1 {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  margin-bottom: 20px;
  padding-top: 15px;
}
.accordion .label::before {
  content: 'x';
  color: white;
  position: absolute;
  top: 10px;
  right: -14px;
  font-size: 15px;
  transform: translateY(-50%);
  width: 18px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--wp--preset--color--vivid-red);
  border-radius: 10px;
  display: none;
}

.accordion .content {
  position: relative;
  max-height: 0;
  font-size: 20px;
  text-align: justify;
  overflow: hidden;
  transition: 0.5s;
}
.field.btns {
  display: flex;
}
.accordion hr {
  margin-left: 0;
  border: 1px solid grey;
}

.accordion .container.active .content {
  max-height: 1800px;
}

.accordion .container.green .label::before {
  content: '✓';
  font-size: 15px;
  background: #28a745;
  display: flex;
}
.accordion .container.red .label::before {
  content: 'x';
  display: flex;
  background: red;
}
.accordion .container.green.red .label::before {
  content: '✓';
  font-size: 15px;
  background: #28a745;
  display: flex;
}
.card_content p {
  text-align: left;
}
.label.mt-2:before{
  display: none;
}
@media (max-width:900px) {
  .accordion{
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: left;
  }
  .accordion .container{
    margin: 10px 0;
  }
  
  .card_content {
    padding: 20px 0;
}
  .container_box{
    max-width: 340px;
    padding: 15px 20px;
  }

  .form-outer form .page .title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}
.container_box header {
  font-size: 24px;
  margin: 0 0 10px 0;
}
}