/*--------------------------------------------------------------
-----------STYLES FOR SSL LOGIN PAGE(S)-----------------
--------------------------------------------------------------*/
/* FONT FAMILY */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 100;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgVxIIzc.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');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtfBBc9.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 200;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5l2WgcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5lB2gcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5lWWgcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5la2gcRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5lh28cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5lvm8cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 800;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5l2W8cRiyX.ttf) format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  src: url(https://fonts.gstatic.com/s/cairo/v18/SLXVc1nY6HkvangtZmpcWmhzfH5l8G8cRiyX.ttf) format('truetype');
}
/*--PREDEFINED COLOURS--*/
/*--RESPONSIVE BREAKPOINTS--*/
/* PHONE MEDIA QUERY */
/* TABLET MEDIA QUERY */
/* DESKTOP MEDIA QUERY */
/*----------------------- MIXINS -----------------------*/
/*
.animation(@animation, @duration, @timing-function, @count) {
  -o-animation: @animation;
  -moz-animation: @animation;
  -webkit-animation: @animation;
  animation: @animation;
  animation-duration: @duration;
  animation-timing-function: @timing-function;
  animation-iteration-count: @count;
}*/
.middle {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*----------------------- ANIMATION -----------------------*/
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    tranform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    tranform: rotate(360deg);
  }
}
@keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@-webkit-keyframes bouncing {
  0%,
  100% {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(0, 0, 1);
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.1);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes up-and-down {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
.user-logged-in.path-apa #section-main-content.j4psection {
  background-image: url(/sites/default/files/LOGIN-PIC-%E2%80%93-1170X800-compressor.jpg);
  background-position: center center;
  background-size: cover;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form {
  max-width: 460px;
  position: relative;
  left: calc(50% - 230px);
  margin: 100px 0;
  padding: 50px;
  border: 1px solid #c5c5c5;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  background: rgba(255, 255, 255, 0.8);
}
@media all and (max-width: 570px) {
  .user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form {
    max-width: 300px;
    left: calc(50% - 150px);
    padding: 25px;
    margin: 50px 0;
  }
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell {
  flex-direction: column;
  align-items: center;
  margin: 5px 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell.forgot-password,
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell.create-account {
  align-items: flex-start;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell > div {
  width: 100%;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell > div input {
  width: 100%;
  background: #fff;
  margin: 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell span.light-lead-heading {
  margin-bottom: 15px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell p {
  align-self: flex-start;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell label,
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .description {
  display: none;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select {
  padding: 10px 0;
  display: block;
  float: left;
  width: 100%;
  left: auto;
  position: inherit;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select legend {
  display: block;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio {
  width: 50%;
  float: left;
  padding: 0 5px 0 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio:nth-child(even) {
  padding: 0 0 0 5px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio label {
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0);
  transition: all 0.3s linear;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio label:before,
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio label:after {
  display: none;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio label:hover {
  border: 1px solid rgba(0, 159, 218, 0.2);
  color: #009fda;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell fieldset.styled-radio-select .form-type-radio input:checked + label {
  background: #009fda;
  color: #fff;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .form-radios > div input {
  width: auto;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .form-radios > div label {
  display: inline-block;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .form-item,
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .form-actions {
  margin: 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .email-field {
  position: relative;
  margin: 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .email-field:before {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background-position: center;
  background-image: url(/sites/default/files/dashboard-icon/account-G.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .email-field .form-control {
  background: none;
  min-height: 48px;
  text-indent: 28px;
  max-height: 48px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .password-field {
  position: relative;
  margin: 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .password-field:before {
  content: "";
  position: absolute;
  left: 12px;
  top: calc(50% - 7.5px);
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(/sites/default/files/general-icon/password-icon-lg.png);
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell .password-field .form-control {
  background: none;
  text-indent: 28px;
  max-height: 48px;
  min-height: 48px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell #messages {
  margin-top: 10px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell #messages .alert {
  margin: 0;
  font-size: 1em;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell #messages .alert ul {
  font-size: 1em;
  padding-left: 15px;
  color: #920075;
  margin-bottom: 0;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell.submit-container {
  margin-top: 15px;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell.submit-container input {
  min-width: 100%;
}
.user-logged-in.path-apa #section-main-content.j4psection .region form.apa-get-cm-login-form .flex-container .flex-cell.submit-container input:hover {
  color: #fff;
  opacity: 0.8;
}
