.help__button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    height: 32px;
    width: 32px;
}

.help__button img {
    height: 24px;
    width: 24px;
    transition: height 125ms ease-in-out, width 125ms ease-in-out;
}

.help__button:hover img {
    height: 28px;
    width: 28px;
}

.profile__button {
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 56px;
    border-radius: 50%;
    border: solid 2px black;
    font-size: 20px;
    font-weight: 700;
    color: #29ABE2;
    transition: background-color 125ms ease-in;
}

.profile__button:hover {
    background-color: #E2E6EC;
}

.profilebutton__open {
    background-color: #E2E6EC;
}

.d__none {
    display: none !important;
}

.d__flex {
    display: flex !important;
}

.blue__border {
    border: 1px solid #29ABE2;
}

.blur {
    filter: blur(5px);
}

.zero__opacity {
    opacity: 0;
}

.mask__input{
    position: absolute;
    min-height: 40px;
    width: 100%;
    border-width: 0;
    background-color: transparent;
    font-size: 20px;
    font-weight: 400;
    color: black;
    caret-color: transparent;
    letter-spacing: 3px;
    pointer-events: none;
}

.profile__button__submenu {
    position: absolute;
    z-index: 2000;
    top: 76px;
    right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2A3647;
    box-shadow: 0px 0px 4px 0px #0000001A;
    border-radius: 20px 0px 20px 20px;
    padding: 10px;
    width: 150px;
    height: 158px;
}

.submenu__button {
    background: transparent;
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 130px;
    padding: 8px 12px;
    transition: background-color 125ms;
}

.submenu__button:hover {
    background-color: #2A3D59;
}

.submenu__button__help {
    background: transparent;
    color: #CDCDCD;
    font-size: 16px;
    font-weight: 400;
    height: 46px;
    align-items: center;
    justify-content: flex-start;
    width: 130px;
    padding: 8px 12px;
    transition: background-color 125ms;
    display: none;
}

.submenu__button__help:hover {
    background-color: #2A3D59;
}

.overlay__submenu {
    background-color: transparent;
    min-height: 100vh;
    width: 100%;
    margin-inline: auto;
    z-index: 1300;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
}

.error__color {
    color: #FF001F !important;
}

@media(max-width: 768px) {
    .help__button {
        display: none;
    }

    .profile__button {
        width: 40px;
        height: 40px;
        font-size: 16px;
        font-weight: 600;
    }

    .profile__button__submenu {
        height: 204px;
        top: 60px;
        right: 0px;
    }

    .submenu__button__help {
        display: flex;
    }
}