@import url('https://fonts.googleapis.com/css2?family=Karla:wght@300;400;700;800&display=swap');

:root {
    --white: #FFF;
    --black: #000;
    --grey: #edf0f3;
    --grey-2: #ced3d6;
    --grey-3: #abb0b4;
    --grey-4: #636566;
    --blue: #3B4A94;
    --red: #D22B2B;
}

* {
    box-sizing: border-box;
    border: 0;
    margin: 0;
}

html {
    font-size: 16px;
    font-family: 'karla', Arial, Helvetica, sans-serif;
}

a {
    text-decoration: none;
}
a.link-name {
    display: flex;
    justify-content: center;
}

body {
    background-color: var(--grey);
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 700;
}

.extra-bold {
    font-weight: 800;
}

.text-mutted {
    color: var(--grey-3);
}

.text-mutted-2 {
    color: var(--grey-4);
}

.text-blue {
    color: var(--blue);
}

.btn {
    padding: 8px 14px;
    background-color: var(--grey);
    color: var(--grey-4);
    border-radius: 4px;
}

.btn:hover {
    padding: 8px 14px;
    background-color: var(--grey);
    color: var(--grey-3);
    cursor: pointer;
}

.btn-copy {
    margin-left: 16px;
}

/* Logo Login */
header {
    width: 100%;
    padding: 16px;
}

header img {
    width: 80px;
}

/* Links */
main .container {
    max-width: 100%;
    min-height: 100vh;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    color: white;
    font-family: arial;
}

.content {
    max-width: 100%;
    margin-top: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 8px;
}

.content a {
    color: white;
}

.profile-photo {
    width: 120px;
    height: 120px;
}

.profile-photo img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 50%;
}

.content .social {
    font-weight: 600;
    margin-top: 25px;
}

.content .title {
    font-weight: 600;
    margin-top: 5px;
    font-size: 0.9em;
    text-align: center;
}

.content .links-list {
    margin-top: 25px;
    width: 100%;
}

.content .link-button {
    width: 100%;
    max-width: 660px;
    padding: 20px 32px;
    margin: 16px 0px;
    border: 2px solid white;
    display: flex;
    justify-content: center;
    font-weight: 600;
    text-align: center;
}

.content .link-button:hover {
    transition: all 0.3s;
    cursor: pointer;
    color: #971F3A;
    background-color: white;
}

.content .link-button:hover a {
    color: #971F3A;
}


/* Login */
.container-login {
    display: flex;
    justify-content: center;
}

.body-login {
    background-color: var(--white);
}

.form-login {
    width: 640px;
    padding: 48px 80px;
    border: 1px solid var(--grey-2);
    border-radius: 20px;
    margin-top: 150px;
}

.title-form-login {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.div--input,
.div--button {
    font-size: 22px;
    width: 100%;
}

.div--input input {
    font-size: 16px;
    width: 100%;
    padding: 16px 12px;
    margin-bottom: 16px;
    background-color: var(--grey);
    border-radius: 8px;
}

.div--button button {
    font-size: 16px;
    font-weight: 700;
    color: var(--grey-3);
    width: 100%;
    padding: 16px 12px;
    margin-bottom: 16px;
    background-color: var(--grey);
    border-radius: 8px;
    cursor: pointer;
}

header .login-img-logo {
    width: 80px;
}

/* -- Dashboard -- */
.container-dash {
    display: flex;   
    overflow: auto;
}

.container-dash aside {
    width: 80px;
    background-color: var(--white);
    position: sticky;
    height: 100vh;
    top: 0;
    display: flex;
    justify-content: center;
    padding: 32px 8px;
    box-sizing: border-box;
    border-right: 1px solid var(--grey-2);
}

.container-dash main {
    flex: 4;
    position: relative;
    background-color: var(--grey);
}

.container-aside {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.aside-top {
    display: flex;
    justify-content: center;
}

.aside-top img {
    max-width: 100%;
    width: 50%;
}

.aside-bottom ul,
.aside-bottom ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.aside-bottom ul {
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.aside-bottom li,
.aside-bottom a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.aside-bottom img {
    max-width: 100%;
    width: 80%;
    border-radius: 50%;
}

.menu nav {
    width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 0 32px;
    border-bottom: 1px solid var(--grey-2);
    font-size: 18px;
    display: flex;
    justify-content: space-between;
}

.menu nav a {
    color: var(--black);
    display: inline-block;
    height: 100%;
    line-height: 80px;
}

.menu ul:first-child a {
    margin-right: 16px;
}

.menu ul:nth-child(2n) a {
    margin-left: 16px;
}

.menu nav a:hover {
    border-bottom: solid 2px var(--grey-2);
}

.active {
    border-bottom: solid 2px var(--black);
}

.menu ul,
.menu li {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.menu li {
    height: 80px;
}

.menu i {
    font-size: 1rem;
}

.dashboard .options {
    width: 100%;
    background-color: white;
    border-bottom: var(--grey-2) 1px solid;
    padding: 8px 32px;
    display: flex;
    flex-direction: column;
}

.dashboard .options .option {
    width: 100%;
    padding: 8px 0px;
    display: flex;
    flex-wrap: wrap;
}

.dashboard .options .option div {
    margin-right: 16px;
}

.dashboard .options i {
    color: var(--grey-3);
    font-size: 18px;
}

.dashboard .options i:hover {
    color: var(--black);
}

.dashboard .mylink {
    width: 100%;
    background-color: white;
    border-bottom: var(--grey-2) 1px solid;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.dashboard .mylink .mylink--link {
    word-break: break-word;
}

.main-links {
    width: 100%;
    display: flex;
    justify-content: center;
    height: calc(100vh - 277px);
}

.div-radio {
    display: flex;
}
.div-radio input[type="radio"] {
    margin: 0;
    padding: 0;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.container-links {
    width: 600px;
    padding: 60px 0;
}

.btn-blue {
    background-color: var(--blue);
    color: var(--white);
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    box-shadow: 1px 1px 1px var(--grey-3);
}

.btn-blue:hover {
    background-color: rgba(59, 74, 148, 0.9);
}

.btn-grey {
    background-color: var(--grey-3);
    color: var(--white);
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    width: 100%;
    box-shadow: 1px 1px 1px var(--grey-3);
}

.btn-grey:hover {
    background-color: rgba(59, 74, 148, 0.9);
}

input[type="file"] {
    display: none;
}

.list-links {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
}

.link {
    width: 100%;
    background-color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    box-shadow: 1px 3px 3px var(--grey-3);
}

.link-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.header-title {
    font-weight: 700;
}

.link-middle {
    width: 100%;
    margin-top: 4px;
    word-break: break-word;
}

.footer-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.footer-right i {
    color: var(--grey-3);
    font-size: 18px;
}

.footer-right i:hover {
    color: var(--black);
}

.footer-right a {
    margin-left: 14px;
}

/* switch */
.switch {
    position: relative;
    display: inline-block;
    width: 32px;
    height: 18px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 10px;
    width: 10px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--blue);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--blue);
}

input:checked+.slider:before {
    -webkit-transform: translateX(14px);
    -ms-transform: translateX(14px);
    transform: translateX(14px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Form Edit */
.form-edit {
    width: 100%;
}

.form-edit input {
    width: 100%;
    font-size: 16px;
    background-color: transparent;
    outline: none;
    border-bottom: 1px solid var(--grey-3);
    margin-bottom: 18px;
    font-family: 'karla', Arial, Helvetica, sans-serif;
}

input[type="color"] {
    border: 0;
    width:100%;
    height: 70px;
    border-radius: 50px;
}

/* Erro message */
#error-message {
    position: absolute;
    right: 16px;
    top: 16px;
    display: none;
}

.container-error-message {
    display: flex;
    padding: 16px 32px;
    background-color: var(--red);
    color: white;
    font-size: 14px;
    border-radius: 8px;
}

.message {
    margin-right: 16px;
    text-transform: lowercase;
}

.close-message a {
    color: white;
}

.profilePhotoUpload {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

.profilePhotoUpload img {
    max-width: 100%;
}

/* Footer */
footer {
    height: 0px;
    position: fixed;
    bottom: 0px;
    display: none;
    align-items: center;
    width: 100%;
    justify-content: center;
    background-color: var(--grey);
    outline: 1px solid var(--grey-2);
    overflow: hidden;
}

.div-btn-up {
    bottom: 10px;
    right: 0;
    left: 0;
    position: fixed;
    width: 100%;
    display: none;
    justify-content: center;
}

.div-btn-up a {
    text-decoration: none;
}

.div-btn-up i {
    color: var(--blue);
    font-size: 3rem;
    text-shadow: 2px 2px 2px var(--grey-3);
}

footer .profile-photo-bottom {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 50%;
}

footer .profile-photo-bottom img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 50%;
}

.border-square {
    border-radius: 0;
}

.border-rounded {
    border-radius: 30px;
}