/**
BASE CSS
**/

[template='spring'] .main {
    position: static;
    margin: auto;
}

[template='spring'] .view.dashboard {
    display: block;
    width: auto;
}

[template='spring'] .view .avatar {
    display: inline-block;
    max-width: max-content;
    max-height: max-content;
    width: auto;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--secondary-bg-color);
    border-radius: var(--border-radius);
}
[template='spring'] .avatar .logo {
    display: block;
    max-width: max-content;
  max-height: max-content;
  width: auto;
  height: auto;
  min-width: 200px;
  min-height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
    background-color: var(--secondary-bg-color);
    border-radius: var(--border-radius);
}
[template='spring'].viewport-xs .view .avatar {
    min-width: 75vw;
    min-height: 75vw;
    margin: auto;
}

[template='spring'] .view.personal-info .update-profile-picture {
    position: relative;
    display: inline-block;
    padding: 0 0 30px 0;
}

[template='spring'] .view.personal-info .update-profile-picture .avatar {
    position: relative;
    margin-bottom: 19px;
}

[template='spring'] .view.personal-info .update-profile-picture mavryx-component[type="upload"] {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px;
    display: block;
    width: 100%;
}



[template='spring'] [layout='fullsize'] .main_top_brand {
    width: 220px;
    height: 60px;
    margin-top: 40px;
    overflow: initial;
}

[template='spring'] .recovery {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 95%;
    max-width: 384px;
    margin: auto;
}
[template='spring'] .recovery .form-container {

}
[template='spring'] .recovery .form-container label.required::after {
    content: "*";
    color: red;
}
[template='spring'] .recovery .icon-image {
    width: 40px;
    height: 40px;
    border: 2px solid var(--main-btn-border-primary-color);
    border-radius: 8px;
    margin: auto;
    padding-top: 9px;
    text-align: center;
}
[template='spring'] .recovery .icon-image i {
    font-size: 20px;
    color: var(--theme-color-light-green-300);
}
[template='spring'] .recovery input[type="text"]::placeholder {
    font-size: var(--typo-b-4-medium-font-size);
    font-weight: var(--typo-b-4-medium-font-weight);
    line-height: var(--typo-b-4-medium-line-height);
    color: var(--theme-color-grey-700);
}
[template='spring'] .recovery #password-strength-bar ul {
    margin: 0 -2px;
    padding: 0;
    display: block;
}
[template='spring'] .recovery #password-strength-bar ul li {
    display: inline-block;
    margin: 0 2px;
    width: calc(20% - 7px);
    height: 4px;
    background: var(--theme-color-gray-300);
}
[template='spring'] .recovery #password-strength-bar ul li.fail {
    background: red;
}
[template='spring'] .recovery #password-strength-bar ul li.success {
    background: green;
}
[template='spring'] [layout='fullsize'] .main_footer {
    position: fixed;
    bottom: 30px;
    left: 0;
    width: 100%;
}
[template='spring'] [layout='fullsize'] .main_footer .footer {
    width: max-content;
    margin: auto;
}
[template='spring'] [layout='fullsize'] .main_footer .footer a {
    display: block;
    padding: 5px 8px;
    font-size: var(--typo-l-1-semi-bold-font-size);
    font-weight: var(--typo-l-1-semi-bold-font-weight);
    line-height: var(--typo-l-1-semi-bold-line-height);
    color: var(--theme-color-grey-800);
    white-space: nowrap;
}

label {
    font-weight: bold;
    margin: 0 0 4px;
}

@media only screen and (max-width: 768px) {
    [template='spring'] .avatar .logo {
        min-width: 75vw;
        min-height: 75vw;
    }
}
