@import url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,700,700i');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

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

* {
    font-family: Roboto;
}

::selection {
    color: var(--color-white);
    background: var(--primary-color);
}

a {
    color: var(--primary-color) !important;
}

a:focus,
a:active,
a:hover {
    color: var(-primary-color-dark) !important;
    outline: none;
    text-decoration: underline !important;
}

a.btn-tuna {
    color: var(--color-white) !important;
    display: inline-block;
}

/* Checkbox e Radio button  */
.tunaCheckbox {
    flex-direction: row;
    box-sizing: border-box;
    display: flex;
    place-content: center flex-start;
    align-items: center;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    -webkit-transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
    transition: background 0.15s, border-color 0.15s, box-shadow 0.15s;
    flex-shrink: 0;
}

input[type="checkbox"]:after,
input[type="radio"]:after {
    content: "";
    display: block;
    left: -1px;
    top: -1px;
    position: absolute;
}

input[type="checkbox"]:checked,
input[type="radio"]:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
}

input[type="checkbox"]:disabled,
input[type="radio"]:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
}

input[type="checkbox"]:disabled,
.saved-card-item input[type="radio"]:disabled,
.saved-card-item {
    opacity: 0.9;
}

input[type="checkbox"]:disabled:checked,
input[type="radio"]:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
}

input[type="checkbox"]:hover:not(:checked):not(:disabled),
input[type="radio"]:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
}

input[type="checkbox"]:focus,
input[type="radio"]:focus {
    box-shadow: 0 0 0 var(--focus);
}

input[type="checkbox"]:not(.switch),
input[type="radio"]:not(.switch) {
    width: 21px;
}

input[type="checkbox"]:not(.switch):after,
input[type="radio"]:not(.switch):after {
    opacity: var(--o, 0);
}

input[type="checkbox"]:not(.switch):checked,
input[type="radio"]:not(.switch):checked {
    --o: 1;
}

input[type="checkbox"]:not(.switch) {
    border-radius: 4px;
}

input[type="checkbox"]:not(.switch):after {
    width: 7px;
    height: 14px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 5px;
    top: 0;
    box-sizing: border-box;
    -webkit-transform: rotate(var(--r, 20deg));
    transform: rotate(var(--r, 20deg));
}

input[type="checkbox"]:not(.switch):checked {
    --r: 43deg;
}

input[type="checkbox"].switch {
    width: 38px;
    border-radius: 11px;
}

input[type="checkbox"].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    -webkit-transform: translateX(var(--x, 0));
    transform: translateX(var(--x, 0));
}

input[type="checkbox"].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
}

input[type="checkbox"].switch:disabled:not(:checked):after {
    opacity: 0.6;
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    -webkit-transform: scale(var(--s, 0.7));
    transform: scale(var(--s, 0.7));
}

input[type="radio"]:checked {
    --s: 0.5;
}

input.btn-tuna {
    color: var(--color-white);
}

.btn-tuna {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    padding: 8px 32px 8px 32px;
    border-radius: var(--btn-border-radius);
    background-color: var(--primary-color);
    text-align: center;
    color: var(--color-white);
    border-style: none;
    outline: none;
    cursor: pointer;
    font-size: 18px;
    white-space: normal;
    word-wrap: break-word;
}

.btn-tuna:hover {
    background-color: var(--primary-color-light);
}

.btn-tuna:focus,
.btn-tuna:active,
.btn-tuna:hover {
    outline: none;
}

.btn-tuna.btn-tuna-block {
    width: 100%;
    display: block;
}

input.btn-tuna:hover {
    background-color: var(--primary-color-light);
}

.btn-tuna-secondary {
    background-color: var(--color-white);
    border: solid 1px var(--primary-color);
    color: var(--primary-color);
    line-height: normal;
    padding: 8px 32px 8px 32px;
    text-align: center;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    font-size: 18px;
}

.btn-tuna-secondary:hover {
    color: var(--color-black);
    border: solid 1px var(--color-black);
}

.desktop {
    height: 100%;
}

.image-box {
    min-height: 100vh;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: var(--color-gray-one);
    z-index: 1;
    place-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 30px;
}

.login-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.logo {
    display: flex;
    justify-content: center;
    position: fixed;
    top: 50%;
    transform: translatey(-50%);

    background-image: var(--logo-img);
    background-repeat: no-repeat;
    background-size: var(--logo-width) var(--logo-height);
    width: var(--logo-width);
    height: var(--logo-height);
}

.login-content .box {
    height: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    place-content: stretch center;
    align-items: stretch;
    max-width: 100%;
}

.login-content .box .box-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.login-content .box .application-name {
    font-family: Roboto;
    font-size: 18px;
    color: var(--color-dark-one);
}

.login-content .box .application-name span {
    color: var(--color-black);
}

.login-content .box .application-title {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 20px;
}

.login-content .box .application-title .action-back {
    color: var(--color-dark-one) !important;
    font-size: 18px;
    position: relative;
    display: inline-flex;
    align-items: center;
    place-content: center flex-start;
    margin-bottom: 6px;
    gap: 8px;
    font-weight: 500;
}

.login-content .box .application-title .action-back:before {
    content: '';
    background-image: url(../img/arrow-back.svg);
    width: 14px;
    height: 14px;
    margin-right: 4px;
    display: inline-flex;
}

.login-content .box .application-title .action-back:hover {
    filter: brightness(0);
}

.login-content .box .form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-content .box .submit {
    width: 50%;
}

.login-content .box .update-password {
    width: 60% !important;
}

.login-content .box .visibility {
    color: var(--color-dark-one);
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.login-content .box .visibility:hover {
    color: var(--primary-color);
}

.login-content .content {
    padding: 40px 40px 60px 40px;
}

.one-time-btn {
    width: 50%;
}

#control-label-form {
    visibility: hidden;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 10px;
}

/* Copy Key Mobile */

#button-mobile-copy {
    display: flex;
    gap: 5px;
}

#button-mobile-copy:hover.icon-copied::before {
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Icon / ui action / check, small"><path id="Vector" d="M10.0008 13.6L15.9008 7.69999C16.0841 7.51665 16.3174 7.42499 16.6008 7.42499C16.8841 7.42499 17.1174 7.51665 17.3008 7.69999C17.4841 7.88332 17.5758 8.11665 17.5758 8.39999C17.5758 8.68332 17.4841 8.91665 17.3008 9.09999L10.7008 15.7C10.5008 15.9 10.2674 16 10.0008 16C9.73411 16 9.50078 15.9 9.30078 15.7L6.70078 13.1C6.51745 12.9167 6.42578 12.6833 6.42578 12.4C6.42578 12.1167 6.51745 11.8833 6.70078 11.7C6.88411 11.5167 7.11745 11.425 7.40078 11.425C7.68411 11.425 7.91745 11.5167 8.10078 11.7L10.0008 13.6Z" fill="%23000"/></g></svg>');
}

.icon-copy::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Icon / text formating /content, copy"><path id="Vector" d="M9 18C8.45 18 7.97917 17.8042 7.5875 17.4125C7.19583 17.0208 7 16.55 7 16V4C7 3.45 7.19583 2.97917 7.5875 2.5875C7.97917 2.19583 8.45 2 9 2H18C18.55 2 19.0208 2.19583 19.4125 2.5875C19.8042 2.97917 20 3.45 20 4V16C20 16.55 19.8042 17.0208 19.4125 17.4125C19.0208 17.8042 18.55 18 18 18H9ZM9 16H18V4H9V16ZM5 22C4.45 22 3.97917 21.8042 3.5875 21.4125C3.19583 21.0208 3 20.55 3 20V7C3 6.71667 3.09583 6.47917 3.2875 6.2875C3.47917 6.09583 3.71667 6 4 6C4.28333 6 4.52083 6.09583 4.7125 6.2875C4.90417 6.47917 5 6.71667 5 7V20H15C15.2833 20 15.5208 20.0958 15.7125 20.2875C15.9042 20.4792 16 20.7167 16 21C16 21.2833 15.9042 21.5208 15.7125 21.7125C15.5208 21.9042 15.2833 22 15 22H5Z" fill="white"/></g></svg>');
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    display: inline-block;
    background-position: top;
}

.icon-copied::before {
    content: "";
    background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><g id="Icon / ui action / check, small"><path id="Vector" d="M10.0008 13.6L15.9008 7.69999C16.0841 7.51665 16.3174 7.42499 16.6008 7.42499C16.8841 7.42499 17.1174 7.51665 17.3008 7.69999C17.4841 7.88332 17.5758 8.11665 17.5758 8.39999C17.5758 8.68332 17.4841 8.91665 17.3008 9.09999L10.7008 15.7C10.5008 15.9 10.2674 16 10.0008 16C9.73411 16 9.50078 15.9 9.30078 15.7L6.70078 13.1C6.51745 12.9167 6.42578 12.6833 6.42578 12.4C6.42578 12.1167 6.51745 11.8833 6.70078 11.7C6.88411 11.5167 7.11745 11.425 7.40078 11.425C7.68411 11.425 7.91745 11.5167 8.10078 11.7L10.0008 13.6Z" fill="%2331B34E"/></g></svg>');
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    display: inline-block;
    background-position: top;
}

.hide {
    display: none !important;
}

.show {
    display: flex !important;
    flex-direction: column;
}

#qr-code-div-mobile {
    display: none;
}

#buttons-key-mobile {
    display: none;
}

#key-div-mobile {
    display: none;
}

.code-div-mobile {
    display: none;
}

.key-copy-mobile {
    display: none;
}

.message-text {
    font-family: Roboto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
}

.alert-success {
    color: var(--primary-color) !important;
    background-color: var(--color-white) !important;
}

.alert-error {
    color: var(--color-error) !important;
    background-color: var(--color-white) !important;
}

.alert-warning {
    color: var(--color-alert) !important;
    background-color: var(--color-white) !important;
}

.alert-info {
    color: var(--color-dark-three) !important;
}


.login-content .box .para {
    font-size: 14px;
    margin-left: 30px;
}

.actions {
    width: 100%;
    flex-direction: row;
    justify-content: start;
    display: flex;
    align-items: center;
    padding: 10px 0 30px 0;
    gap: 20px;
}

.actions.center {
    justify-content: center;
}

.information {
    flex-direction: column;
    display: flex;
    place-content: center flex-start;
    align-items: center;
    text-align: center;
}

.forgot {
    text-align: center;
    text-decoration: none;
    width: 50%;
    font-size: 15px;
}

.back {
    text-align: center;
    text-decoration: none;
    width: 50%;
}

.full-width {
    width: 100%;
}

.footer {
    text-align: center;
    padding-bottom: 10px;
    font-size: 11px;
    font-family: Roboto;
    color: var(--color-dark-one);
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding-right: 32px;
    padding-left: 32px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

#footer-mobile {
    display: none;
}

.footer .div {
    display: flex;
    flex-direction: row;
    gap: 8px;
}

.footer .point {
    font-size: 20px;
    line-height: 20px;
}

.footer a, #footerSupportText {
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: #666 !important;
}

.footer a:hover, #footerSupportText {
    color: var(--color-dark-two) !important;
}

.instruction {
    font-family: Roboto;
    text-align: center;
    text-decoration: none;
}

.mobile {
    height: 100%;
}

.login-form {
    width: 100%;
}


.login-right {
    width: 100%;
    display: inline-block;
}


.login-width {
    width: 95% !important;
}

.login-right {
    width: 100%;
    margin: 0 auto;
    display: block;
    float: none;
}

.p-viewer,
.p-viewer2 {
    float: right;
    margin-top: -30px;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.fa-eye {
    color: var(--color-black);
}


/* Inline input */
.group {
    position: relative;
    margin: 15px 0 30px;
}

.group input {
    font-size: 16px;
    padding: 8px 0 6px;
    display: block;
    border: none;
    border-bottom: 1px solid var(--color-gray-two);
    width: 100%;
}

.group input:focus {
    outline: none;
}

.group .visibility {
    position: absolute;
    right: 0;
    top: 10px;
}

.group input[type="password"] {
    padding-right: 40px;
}

/* Inline input - Label */
.group label {
    color: var(--color-dark-one);
    font-size: 16px;
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 8px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    margin: 0;
}

.group input:-webkit-autofill~label {
    top: -12px;
    font-size: 12px;
}

.group input:focus~label,
.group input:valid:not(:placeholder-shown)~label {
    top: -12px;
    font-size: 12px;
    color: var(--primary-color);
}

.group input:valid:not(:focus)~label {
    color: var(--color-dark-two);
}

.group input:valid:not(:focus) {
    color: var(--color-dark-three);
    border-bottom: 1px solid var(--color-dark-one);
}

.group input::placeholder,
.group input::-webkit-input-placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

.group input:-moz-placeholder {
    color: transparent !important;
    opacity: 0 !important;
}

/* Bottom bar */
.group .bar {
    position: relative;
    display: block;
}

.group .bar:before,
.group .bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 0px;
    position: absolute;
    background: var(--primary-color);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.group .bar:before {
    left: 50%;
}

.group .bar:after {
    right: 50%;
}


.group input:focus~.bar:before,
.group input:focus~.bar:after {
    width: 50%;
}

/* OTP */
.otp-div {
    font-family: Roboto;
}

.otp-div .title {
    font-size: 28px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 25px;
}

.otp-box {
    display: flex;
    flex-direction: column;
    border: 1px solid #ccc;
    border-radius: 14px;
    padding: 30px 40px 30px 40px;
    gap: 10px;
}

.code-div {
    display: flex;
}

.code-div .box-spacer {
    width: 160px;
    height: 160px;
}

.key-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #999;
    margin-top: 15px;
}

.key-div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.key-info:hover .key {
    color: #999;
}

.key-div button:focus {
    outline: 0 !important;
}

.copy svg {
    color: #666;
    fill: #666;
}

.key-info:hover .copy svg {
    color: #999 !important;
    fill: #999 !important;
}

.key-info {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center;
    border: 0;
    background: 0;
    cursor: pointer;
    padding: 0 !important;
}

.key {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
}

#kc-totp-secret-qr-code {
    width: 180px !important;
    height: 180px !important;
    position: relative;
    top: -19px;
    left: -20px;
}

.scan-qr-title {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #999;
    margin-bottom: 20px;
}

.services {
    display: flex;
    gap: 30px;
}

.logo-border {
    border: 1px solid #ccc;
    border-radius: 14px;
    margin-bottom: 5px;
    width: 63px;
    height: 63px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-border:hover {
    border: 1px solid #666;
}

.logo-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.logo-div:hover {
    text-decoration-color: #333 !important;
}

.logo-div .text {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.06px;
    text-align: center;
    color: #999;
}

.logo-div:hover .text {
    color: #333;
}

.submit-otp {
    width: 100% !important;
}

.input-error-otp-code {
    color: var(--color-error);
}

.login-content .alert-warning {
    display: none;
}

.one-time-code {
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: #999;
}

.inner-one-time {
    margin-top: 0px !important;
    margin-bottom: 20px !important;
}

#one-time-code {
    padding-left: 20px;
    letter-spacing: 45px;
    border: 0px;
    background-image: linear-gradient(to left, #999 70%, rgba(255, 255, 255, 0) 0%);
    background-position: 57px bottom;
    background-size: 69px 2px;
    background-repeat: repeat-x;
    width: 460px;
    outline: none;
    font-size: 2.65em;
    color: #333;
}

#otp {
    padding-left: 20px;
    letter-spacing: 45px;
    border: 0px;
    background-image: linear-gradient(to left, #999 70%, rgba(255, 255, 255, 0) 0%);
    background-position: 57px bottom;
    background-size: 69px 2px;
    background-repeat: repeat-x;
    width: 460px;
    outline: none;
    font-size: 2.65em;
    color: #333;
}

#divInner {
    left: 0;
    position: sticky;
    margin-top: 40px;
    margin-bottom: 40px;
    overflow: visible;
}

#divOuter {
    width: 420px;
    overflow-x: hidden;
}

.pf-m-action {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 24px;
}

.pf-m-action .form-group {
    margin: 0 !important;
}

.pf-v5-c-check {
    display: flex;
    align-items: center;
}

.pf-v5-c-check__label {
    padding-left: 10px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    color: #999;
    margin-bottom: 0px;
}

/* Snackbar */
#snackbar {
    display: flex;
    justify-content: space-between;
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 25px;
    position: fixed;
    font-size: 18px;
    font-weight: 500;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
}

#snackbar div {
    margin: auto;
}

#snackbar-copy {
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    background-color: #666;
    color: #fff;
    text-align: center;
    padding: 25px;
    position: fixed;
    font-size: 18px;
    font-weight: 500;
    left: 0;
    z-index: 999;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
}

#snackbar-copy div {
    margin: auto;
}

.close-snackbar {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.15);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    border: 0;
    flex-direction: row;
    display: flex;
    place-content: center;
    align-items: center;
}

.close-snackbar::before {
    content: "";
    display: block;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    background-size: 24px 24px;
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='close_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1'%3E%3Cpath id='Vector' d='M12.0008 13.4L7.10078 18.3C6.91745 18.4834 6.68411 18.575 6.40078 18.575C6.11745 18.575 5.88411 18.4834 5.70078 18.3C5.51745 18.1167 5.42578 17.8834 5.42578 17.6C5.42578 17.3167 5.51745 17.0834 5.70078 16.9L10.6008 12L5.70078 7.10005C5.51745 6.91672 5.42578 6.68338 5.42578 6.40005C5.42578 6.11672 5.51745 5.88338 5.70078 5.70005C5.88411 5.51672 6.11745 5.42505 6.40078 5.42505C6.68411 5.42505 6.91745 5.51672 7.10078 5.70005L12.0008 10.6L16.9008 5.70005C17.0841 5.51672 17.3174 5.42505 17.6008 5.42505C17.8841 5.42505 18.1174 5.51672 18.3008 5.70005C18.4841 5.88338 18.5758 6.11672 18.5758 6.40005C18.5758 6.68338 18.4841 6.91672 18.3008 7.10005L13.4008 12L18.3008 16.9C18.4841 17.0834 18.5758 17.3167 18.5758 17.6C18.5758 17.8834 18.4841 18.1167 18.3008 18.3C18.1174 18.4834 17.8841 18.575 17.6008 18.575C17.3174 18.575 17.0841 18.4834 16.9008 18.3L12.0008 13.4Z' fill='white'/%3E%3C/g%3E%3C/svg%3E%0A");
}

.close-snackbar:hover {
    text-decoration: none;
    cursor: pointer;
}

#snackbar.success {
    background-color: var(--primary-color);
}

#snackbar.error {
    background-color: var(--color-error);
}

#snackbar.alert {
    background-color: var(--color-alert);
}

#snackbar.show, #snackbar-copy.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

.snackbar-copy {
    background-color: var(--primary-color);
    display: none;
}

#snackbar-copy.show-snackbar {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        bottom: -30px;
        opacity: 0;
    }

    to {
        bottom: 0;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 0;
        opacity: 1;
    }

    to {
        bottom: -30px;
        opacity: 0;
    }
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
    from {
        background: var(--primary-color);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@-moz-keyframes inputHighlighter {
    from {
        background: var(--primary-color);
    }

    to {
        width: 0;
        background: transparent;
    }
}

@keyframes inputHighlighter {
    from {
        background: var(--primary-color);
    }

    to {
        width: 0;
        background: transparent;
    }
}

/* Background input */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 50px white inset !important;
}


#kc-update-profile-form .form-group {
    margin-bottom: 30px;
}

@media screen and (max-width : 1120px) {
    .code-div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .services {
        justify-content: center;
    }
}

@media screen and (max-width : 965px) {
    #snackbar {
        display: flex;
        justify-content: space-between;
    }

    #snackbar div {
        width: 80%;
        line-height: normal;
        margin: auto;
    }

    #snackbar-copy {
        display: flex;
        justify-content: space-between;
    }

    #snackbar-copy div {
        width: 80%;
        line-height: normal;
        margin: auto;
    }

    .code-div {
        gap: 10px;
        flex-direction: column-reverse !important; 
    }

    .code-div .box-spacer {
        width: 180px;
        height: 180px;
    }

    .image-box svg {
        max-width: 96px;
        max-height: 125px;
    }
    
    .otp-div .title {
        font-size: 23px;
    }

    #one-time-code {
        padding-left: 80px;
        letter-spacing: 22px;
        border: 0px;
        background-image: linear-gradient(to left, #999 70%, rgba(255, 255, 255, 0) 0%);
        background-position: 64px bottom;
        background-size: 43px 2px;
        background-repeat: repeat-x;
        width: 400px;
        outline: none;
        font-size: 2.45em;
        color: #333;
    }

    #kc-totp-secret-qr-code {
        position: static !important;
    }

    #otp {
        padding-left: 82px;
        letter-spacing: 21px;
        border: 0px;
        background-image: linear-gradient(to left, #999 70%, rgba(255, 255, 255, 0) 0%);
        background-position: 65px bottom;
        background-size: 43px 2px;
        background-repeat: repeat-x;
        width: 400px;
        outline: none;
        font-size: 2.45em;
        color: #333;
    }

    .one-time-btn #kc-form-buttons {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .one-time-btn {
        width: 100% !important;
    }

    #divOuter {
        width: 265px;
    }

    .outer-one-time {
        width: 247px !important;
    }

    .one-time-code-div {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .login-field {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pf-m-action {
        flex-direction: column;
    }

    .image-box {
        padding-bottom: 40px;
        padding-top: 40px;
    }

    .key-div {
        display: none;
    }

    #key-div-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    #qr-code-div-mobile {
        display: flex;
    }

    #qr-code-div {
        display: none;
    }

    #buttons-key-mobile {
        display: flex;
        justify-content: center;
    }

    #show-qr-btn, #show-key-btn {
        background: 0;
        border: 0;
        color: #999;
        font-size: 14px;
    }

    .key-mobile {
        background: #f6f6f6;
        padding: 11px 8px 11px 8px;
        font-size: 12px;
        border-radius: 4px;
        margin-bottom: 24px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 240px;
    }

    #snackbar-copy.show-snackbar {
        visibility: hidden !important;
    }

    .code-div-mobile {
        display: flex;
    }

    .key-copy-mobile {
        display: flex;
    }
}

@media screen and (max-width : 768px) {

    .logo {
        transform: initial;
        position: initial;
    }

    .login-content {
        height: auto;
    }

    .login-content .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .login-wrap {
        height: 100%;
        min-height: 100vh;
        flex-direction: column;
        box-sizing: border-box;
        display: flex;
        flex-direction: row;
        align-content: flex-start;
    }

    .footer {
        display: none;
    }

    #footer-mobile {
        display: flex !important;
    }

    .login-content .box .box-container {
        background-color: var(--color-white);
        max-width: auto;
        padding: 0;
    }

    .login-content .box .application-name {
        font-size: 18px;
    }

    .login-content .box .submit {
        width: 100%;
    }


    .actions {
        flex-direction: column-reverse;
        padding: 0;
        padding-top: 10px;
    }

    .forgot,
    .back {
        width: 100%;
    }

    .message-text {
        font-size: 14px;
        padding-top: 20px;
    }

    .login-content .box .box-container {
        min-width: 100%;
        max-width: auto;
    }

    .login-content .box {
        min-height: auto;
        position: relative;
    }

    .login-content .content {
        padding: 25px 20px 60px 20px;
        max-width: 400px;
        min-width: auto;
        width: 100%;
    }

    .login-content .box .application-title {
        max-width: auto;
        margin-top: 20px;
    }

    .image-box {
        min-height: auto;
        flex: 1 1 auto;
        box-sizing: border-box;
        place-content: center;
        align-items: center;
        flex-direction: row;
        display: flex;
        height: fit-content;
    }
}
