/* ///////////////// UNIVERSAL CLASSES ///////////////// */

* {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

body {
    background-color: #f1f1f1;
}

/* ///////////////// UTILITY CLASSES ///////////////// */

.hidden {
  display: none;
}

.visible-block {
  display: block;
}

.visible-flex-block-row {
  display: flex;
  flex-direction: row;
}

.visible-flex-block-column {
  display: flex;
  flex-direction: column;
}

.mb-10 {
    margin-bottom: 10px;
}

.mr-8 {
    margin-right: 8px;
}

.mt-10 {
    margin-top: 10px;
}

.mbt-10 {
    margin: 10px 0px;
}

.lockstok-form-fade-in {
    animation: formFadeIn 0.5s ease forwards;
    opacity: 0;
}

/* ///////////////// COMPONENT CLASSES ///////////////// */

.lockstok-login {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle, #232327, #000000);
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lockstok-login__grain-overlay {
  width: 100vw;
  height: 100vh;
  position: absolute;
  background-image: url("../img/noise.png");
  background-repeat: repeat;
  z-index: 2;
  opacity: 0.5;
}

.lockstok-login-circle-left,
.lockstok-login-circle-right {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 1000px;
  animation-duration: 60s; /* Adjust speed of movement */
  animation-iteration-count: infinite; /* Make the animation repeat infinitely */
  z-index: 1;
}

.lockstok-login-circle-left {
  bottom: 0;
  left: 0;
  background-color: #524a8c;
  animation-name: moveCircleLeft; /* Specify the animation for the left circle */
}

.lockstok-login-circle-right {
  top: 0;
  right: 0;
  background-color: #13968f;
  animation-name: moveCircleRight; /* Specify the animation for the right circle */
}

.lockstok-login__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 480px;
    height: auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    animation: slideUp 0.5s ease forwards;
    opacity: 0;
    transform: translateY(30px);
    z-index: 3;
    box-shadow: 0px 12px 20px -8px rgba(26, 26, 26, 0.24), 0px 1px 0px 0px rgba(204, 204, 204, 0.5) inset, 0px -1px 0px 0px rgba(0, 0, 0, 0.17) inset, -1px 0px 0px 0px rgba(0, 0, 0, 0.13) inset, 1px 0px 0px 0px rgba(0, 0, 0, 0.13) inset;
}

.lockstok-login__logo {
    width: 100%;
    max-width: 120px;
    display: block;
    margin-bottom: 30px;
}

.lockstok-login__form-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 620;
    font-size: 24px;
    margin-bottom: 12px;
    color: #303030;
}

.lockstok-login__form-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    text-decoration: none;
    color: #616161;
    display: inline-block;
}

.lockstok-login__subheading-link:hover {
    text-decoration: underline;
}

.lockstok-login__subheading {
    margin-bottom: 20px;
}

.lockstok-login__login-fform {
    width: 100%;
}

.lockstok-login__login-form-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
    font-weight: 450;
}

.lockstok-login__login-form-input {
    font-size: 16px;
    width: 100%;
    padding: 10px;
    outline: none;
    border: 1px solid #1c1c1c;
    border-radius: 8px;
}

    .lockstok-login__login-form-input:focus {
        border: 1px solid #000000;
    }

.lockstok-login__form-password-field-wrapper {
    position: relative;
}

.lockstok-login__form-input-error-result {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.lockstok-login__form-submit {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 550;
    display: block;
    width: 100%;
    background-color: #303030;
    padding: 15px;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0px 2px 0px 0 rgba(255, 255, 255, 0.2), inset 2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset -2px 0px 0px 0 rgba(255, 255, 255, 0.2), inset 0px -1px 0px 1px rgba(0, 0, 0, 1), inset 0px 1px 0px 0 rgba(0, 0, 0, 1);
    margin: 20px 0px;
}

.lockstok-login__form-submit-text {
    margin: 0px 4px;
}

.lockstok-login__form-submit:hover {
    background-image: linear-gradient(to bottom, #2a2a2a, #3a3a3a);
}

.lockstok-login__login-form-input:focus {
    outline: 2px solid #255acc;
    outline-offset: 1px;
    background-color: #f3f3f3;
}

.lockstok-login__form-submit:active {
    background-image: linear-gradient(to bottom, #303030, #1a1a1a);
    box-shadow: inset 0px 3px 0px 0px #000;
    color: #cccccc;
}

.lockstok-login__form-submit .icon {
    opacity: 0;
    transform: translateX(-5px);
    transition: opacity 0.3s, transform 0.3s;
}

.lockstok-login__form-submit:hover .icon,
.lockstok-login__form-submit:focus .icon {
    opacity: 1;
    transform: translateX(0);
}

.lockstok-login__form-submit-wrapper {
    display: flex;
    justify-content: center;
}

.lockstok-login__form-submit-wrapper {
    transition: transform 0.2s;
}

.lockstok-login__form-submit:active .lockstok-login__form-submit-wrapper {
    transform: translateY(2px);
}

.lockstok-login__user-convenience-links {
    display: flex;
    margin-bottom: 30px;
    align-items: center;
}

.lockstok-login__user-convenience-divider {
    width: 1px;
    height: 15px;
    background-color: #212b36;
    margin-right: 10px;
}

.lockstok-login__user-link {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    font-size: 14px;
    color: #212b36;
}

    .lockstok-login__user-link:hover {
        color: #212b36;
        text-decoration: underline;
    }

    .lockstok-login__user-link.highlight {
        color: #005bd3;
    }

    .lockstok-login__user-link:first-child {
        margin-right: 10px;
    }

.lockstok-login__footer-links {
    display: flex;
    justify-content: flex-end;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.lockstok-login__footer-link {
    text-decoration: none;
    color: #616161;
}

    .lockstok-login__footer-link:hover {
        text-decoration: underline;
        color: #616161;
    }

.lockstok-login__footer-links > a:not(:last-child) {
    margin-right: 8px;
}

.validation-error {
    display: flex;
    align-items: center;
}

.lockstok-login__form-password-icon-img {
    width: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    cursor: pointer;
}


/* ///////////////// LOCKSTOK LOGIN COMPONENT --  FIELD ERROR CLASSES ///////////////// */

.lockstok-login__form-input-field-error {
    border: 1px solid #d72c0d !important;
    background-color: #d72b0d1b;
}

.lockstok-login__form-input-error-result-icon {
    display: flex;
    margin-right: 4px;
    width: 18px;
    height: 18px;
    fill: #d72c0d;
}

.lockstok-login__form-input-error-result-message {
    font-family: 'Inter', sans-serif;
    color: #d72c0d;
    font-size: 14px;
}

/* ///////////////// LOCKSTOK LOGIN COMPONENT --  ANIMATION CLASSES ///////////////// */

@keyframes formFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes moveCircleLeft {
    0% {
        transform: translate(0, 50%);
        filter: blur(100px);
    }

    25% {
        transform: translate(0, 20%);
        filter: blur(100px);
    }

    50% {
        transform: translate(20%, -50%);
        filter: blur(150px);
        scale: 1.2;
    }

    75% {
        transform: translate(20%, -50%);
        filter: blur(100px);
    }

    100% {
        transform: translate(0, 50%);
        filter: blur(100px);
    }
}

@keyframes moveCircleRight {
    0% {
        transform: translate(20%, -30%);
        filter: blur(100px);
    }

    25% {
        transform: translate(-10%, 10%);
        filter: blur(100px);
    }

    50% {
        transform: translate(0, 60%);
        filter: blur(150px);
        scale: 1.2;
    }

    75% {
        transform: translate(-20%, 60%);
        filter: blur(100px);
    }

    100% {
        transform: translate(20%, -30%);
        filter: blur(100px);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ///////////////// LOCKSTOK LOGIN COMPONENT --  MOBILE CLASSES ///////////////// */

@media only screen and (max-width: 850px) {
    .lockstok-login {
        align-items: flex-start;
    }

    .lockstok-login__wrapper {
        display: flex;
        flex-direction: column;
        height: 100vh;
        border-radius: 0px;
        justify-content: flex-start;
    }
}

/* ///////////////// LOCKSTOK HEADER COMPONENT --  REGULAR CLASSES ///////////////// */

.lockstok-header {
    display: flex;
    position: relative;
    width: 100%;
    height: 56px;
    background-color: #1a1a1a;
    align-items: center;
}

.lockstok-header__logo-box {
    width: 100%;
    height: 100%;
    max-width: 200px;
    display: flex;
    align-items: center;
    background-color: #1a1a1a;
    padding-left: 20px;
}

.lockstok-header__logo {
    height: 100%;
    max-height: 25px;
}

.lockstok-header__hamburger-menu {
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    padding: 6px;
    border: none;
    border-radius: 4px;
    max-height: 32px;
    max-width: 32px;
}

    .lockstok-header__hamburger-menu .icon {
        width: 20px;
        height: 20px;
        fill: #e3e3e3;
    }

.lockstok-header__input-wrapper {
    display: flex;
    flex-grow: 1;
    background-color: transparent;
    height: 100%;
    align-items: center;
}

.lockstok-header__search-form-wrapper {
    flex-grow: 1;
    padding-right: 10px;
}

.lockstok-header__search-form-button {
    width: 100%;
    display: flex;
    align-items: center;
    height: 32px;
    padding: 8px;
    background: #303030;
    border: 1px solid #616161;
    border-radius: 8px;
    color: #b5b5b5;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

    .lockstok-header__search-form-button:hover {
        border: 1px solid #cccccc;
    }

.lockstok-header__user-select-dropdown {
    height: 32px;
    background: #303030;
    border: 1px solid #616161;
    border-radius: 8px;
    color: #b5b5b5;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 0px 8px;
}

    .lockstok-header__user-select-dropdown:first-of-type {
        margin-right: 10px;
    }

.lockstok-header__user-wrapper {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    white-space: nowrap;
    padding: 0px 10px;
}

.lockstok-header__user-notification-wrapper {
    position: relative;
}

.lockstok-header__user-notification {
    position: relative;
    display: flex;
    border-radius: 8px;
    background-color: #303030;
    padding: 6px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    margin-right: 10px;
    cursor: pointer;
}

    .lockstok-header__user-notification:hover {
        background-color: #3d3f40;
    }

    .lockstok-header__user-notification .icon {
        display: flex;
        width: 20px;
        height: 20px;
        fill: #e3e3e3;
        transition: fill 0.2s ease;
        cursor: pointer;
    }

    .lockstok-header__user-notification:active .icon {
        fill: #c5d0ff;
    }

.lockstok-header__user-notification-alert {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background-color: red;
}

.lockstok-header__user-notification-popup {
    position: absolute;
    top: 53px;
    right: 0;
    width: 380px;
    background-color: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0rem 0.25rem 0.375rem -0.125rem rgba(26, 26, 26, 0.2);
}

.lockstok-header__user-read-icon {
    display: flex;
    flex-direction: column;
    opacity: 0;
    height: 100%;
    fill: #414141;
}

.lockstok-header__user-notification-popup-header {
    display: flex;
    align-items: center;
    padding: 12px 12px;
    background-color: #ffffff;
    border-radius: 12px 12px 0 0;
}

.lockstok-header__user-message {
    display: flex;
    padding: 20px 16px;
    max-height: 130px;
    cursor: pointer;
    border-bottom: 1px solid #ebebeb;
    margin-right: 4px;
}

    .lockstok-header__user-message:hover .lockstok-header__user-read-icon {
        opacity: 1;
    }

    .lockstok-header__user-message:hover {
        background-color: #f1f1f1;
    }

    .lockstok-header__user-message .icon {
        margin-top: -2px;
        width: 20px;
        height: 20px;
    }

.lockstok-header__user-notification-popup-header-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-right: auto;
}

.lockstok-header__user-notification-unread-filter {
    position: relative;
    border: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 4px;
    cursor: pointer;
    background-color: #fff;
}

    .lockstok-header__user-notification-unread-filter::before,
    .lockstok-header__user-notification-unread-filter::after {
        position: absolute;
        top: -4px;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        padding: 5px 8px;
        border-radius: 8px;
    }

    .lockstok-header__user-notification-unread-filter::before {
        content: attr(data-tooltip);
        background-color: rgb(255, 255, 255);
        width: max-content;
        text-align: center;
    }

.lockstok-header__user-notification-container {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    position: relative;
    font-weight: 400;
}

.lockstok-header__user-notification-unread-filter:hover {
    background-color: #f1f1f1;
}

.lockstok-header__user-notification-unread-filter .icon {
    fill: #4a4a4a;
    width: 20px;
    height: 20px;
}

.lockstok-header__user-notification-popup-message-container {
    background-color: rgb(255, 255, 255);
    max-height: 390px;
    margin-right: 4px;
    overflow-y: auto;
}

    .lockstok-header__user-notification-popup-message-container::-webkit-scrollbar {
        width: 5px;
        margin-right: 4px;
    }

    .lockstok-header__user-notification-popup-message-container::-webkit-scrollbar-track {
        background: rgb(255, 255, 255);
    }

    .lockstok-header__user-notification-popup-message-container::-webkit-scrollbar-thumb {
        background: #8a8a8a;
        border-radius: 100px;
        width: 6px !important;
        display: block;
    }

        .lockstok-header__user-notification-popup-message-container::-webkit-scrollbar-thumb:hover {
            background: #8a8a8a;
        }

.lockstok-header__user-notification-popup-message-highlight {
    width: 8px;
    height: 8px;
    background-color: #005bd3;
    border-radius: 3px;
    margin: 3px 10px 0px 0px;
}

.lockstok-header__user-notification-popup-message-content {
    font-family: 'Inter', sans-serif;
    width: 100%;
    display: flex;
    flex-direction: column;
}

    .lockstok-header__user-notification-popup-message-content span {
        white-space: normal;
    }

.lockstok-header__user-notification-popup-message-content-date {
    font-weight: 400;
    font-size: 12px;
    color: #616161;
}

.lockstok-header__user-notification-popup-message-content-heading {
    font-weight: 500;
    font-size: 13px;
    margin: 8px 0px 4px 0px;
}

.lockstok-header__user-notification-popup-message-content-body {
    font-size: 13px;
    color: #616161;
    line-height: 1.3;
}

.lockstok-header__user-account-menu {
    position: relative;
    display: flex;
    padding: 2px 2px 2px 10px;
    background-color: #303030;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    height: 32px;
    align-items: center;
    color: #e3e3e3;
    cursor: pointer;
}

    .lockstok-header__user-account-menu:hover {
        background-color: #3d3f40;
    }

    .lockstok-header__user-account-menu:active {
        background-color: #616161;
    }

.lockstok-footer__user-notification-popup-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #616161;
    padding: 0px 16px;
    min-height: 48px;
}

.lockstok-user-initials {
    display: flex;
    align-items: center;
    background-color: #c530c5;
    height: 100%;
    padding: 8px;
    margin-left: 10px;
    border-radius: 6px;
}

.lockstok-header__user-menu-dd {
    position: absolute;
    top: 53px;
    right: 0px;
    background-color: rgb(255, 255, 255);
    width: 300px;
    height: 100px;
    border-radius: 12px;
    box-shadow: 0rem 0.25rem 0.375rem -0.125rem rgba(26, 26, 26, 0.2);
}

/* ///////////////// LOCKSTOK HEADER COMPONENT --  MOBILE CLASSES ///////////////// */

@media only screen and (max-width: 850px) {
    .lockstok-header__logo-box {
        width: auto;
        max-width: none;
        padding-left: 10px;
        padding-right: 10px;
    }

    .lockstok-header__logo {
        display: none;
    }

    .lockstok-header__hamburger-menu {
        display: flex;
    }

        .lockstok-header__hamburger-menu:active {
            background-color: #4a4a4a; /* Change background color for active state */
        }

    .lockstok-header__search-form-wrapper {
        padding-right: 0px;
    }

    .lockstok-header__user-select-dropdown {
        display: none;
    }

    .lockstok-header__user-notification {
        background-color: transparent;
    }

    .lockstok-header__user-account-menu {
        padding: 2px;
        background-color: #c530c5;
    }

    .lockstok-header__user-name {
        display: none;
    }

    .lockstok-user-initials {
        margin-left: 0;
    }
}
