/* ##################################################### */
/* ###################### FORM ######################### */
/* ##################################################### */

.formItem {
    position: relative;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}

.formInput {
    height: 50px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #CACACA;
    border-radius: 6px;
    padding: 0 15px;
    outline: none;
    box-sizing: border-box;
}

.formInput:focus {
    border-bottom-width: 2px;
}

.formTextarea {
    height: 150px;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #CACACA;
    border-radius: 6px;
    padding: 15px;
    outline: none;
    resize: none;
    box-sizing: border-box;
}

.formTextarea:focus {
    border-bottom-width: 2px;
}

.formItem .showHidePassword {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}

.formItem .formItemButtons {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.formItem .formItemButtons .formItemButtonsItem {
    width: calc(50% - 8px);
}

.formButton1 {
    height: 50px;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    color: #fff;
    background-color: #0171d3;
    transition: all 0.3s ease;
    cursor: pointer;
}

.formButton1:disabled {
    opacity: .5;
}

.formButton2 {
    height: 50px;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    color: #fff;
    background-color: #8e8e8e;
    transition: all 0.3s ease;
    cursor: pointer;
}

.formError {
    display: none;
    background: #ff5c5c;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    box-sizing: border-box;
}

.formSuccess {
    display: none;
    background: #00a900;
    border-radius: 10px;
    padding: 15px;
    margin-top: 20px;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
    box-sizing: border-box;
}


/* ##################################################### */
/* ##################### FOOTER ######################## */
/* ##################################################### */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    display: block;
    z-index: 5;
    border-top: 1px solid #f6f6f6;
    box-shadow: 0px -3px 5px 0px rgba(168, 168, 168, 0.2);
    padding: 9px 35px 7px 10px;
}

footer a {
    text-decoration: none;
}

footer .footerWrapper {
    flex-wrap: nowrap;
}

footer .footerItem {
    text-align: center;
}

footer .footerItem img {
    display: block;
    width: 25px;
    height: 25px;
    margin: 0 auto;
    margin-bottom: 2.5px;
}

footer .footerItem img.center {
    width: 40px;
    height: 40px;
    margin-top: -15.5px;
}

footer .footerItem span {
    font-size: 8px;
    color: var(--global-color-05);
}

footer .footerItem.active span {
    color: #4a74b9;
}

footer .footerAdditional {
    position: absolute;
    right: 0;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footerAdditional.active .footerAdditionalContent {
    display: flex;
}

footer .footerAdditional .footerAdditionalButton {
    width: 25px;
    height: 25px;
}

footer .footerAdditional .footerAdditionalContent {
    display: none;
    position: absolute;
    bottom: 33.5px;
    right: 10px;
    background-color: #fff;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 6;
    flex-direction: row;
    gap: 0px 15px;
    animation: slide-up 0.1s ease-out;
    box-sizing: border-box;
}

footer .footerAdditional .footerAdditionalContent a {
    width: 45px;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ####################################################### */
/* ##################### FEEDBACK ######################## */
/* ####################################################### */

.formFeedback .formFeedbackTop {
    text-align: center;
}

.formFeedback .formFeedbackTop .formFeedbackTopIcon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: #0171d3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin: 0 auto 18px auto;
}

.formFeedback .formFeedbackTop h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
}


/* ####################################################### */
/* ##################### PROFILE ######################### */
/* ####################################################### */

.profileUser {
    position: relative;
    padding: 20px 15px 20px 15px;
    background: #fff;
    border-radius: 15px;
    box-sizing: border-box;
}

.profileUser .profileUserAvatar {
    width: max-content;
    margin: 0 auto;
    position: relative;
}

.profileUser .profileUserAvatar .profileUserAvatarImage {
    width: 90px;
    height: 90px;
    border-radius: 100%;
    object-fit: cover;
}

.profileUser .profileUserAvatar .profileUserAvatarEdit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    position: absolute;
    right: -10px;
    top: 35px;
    background: var(--global-color-01);
    border-radius: 100%;
    cursor: pointer;
}

.profileUser .profileUserAvatar .profileUserAvatarEdit:before {
    content: "";
    background-image: url("/assets/img/page-profile/pen.png");
    background-size: 100%;
    width: 15px;
    height: 15px;
    display: block;
}

.profileUser .profileUserName {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profileUser .profileUserName .profileUserNameValue {
    font-family: "500-Roboto-Medium";
    color: #515770;
    font-size: 30px;
}

.profileUser .profileUserName .profileUserNameEdit {
    display: block;
    background-image: url("/assets/img/page-profile/pen.png");
    background-size: 100%;
    width: 15px;
    height: 15px;
    margin-top: 5px;
    margin-left: 5px;
    opacity: .5;
}

.profileUser .profileUserEmail {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.profileUser .profileUserEmail .profileUserEmailIcon {
    width: 15px;
    height: 15px;
    margin-right: 10px;
}

.profileUser .profileUserEmail .profileUserEmailValue {
    color: #8c95b6;
    font-family: "300-Roboto-Light";
}

.profileUser .profileUserEmail .profileUserEmailEdit {
    display: block;
    background-image: url("/assets/img/page-profile/pen.png");
    background-size: 100%;
    width: 15px;
    height: 15px;
    margin-left: 10px;
    opacity: 0.5;
}