/*###################  Reset  ###################
###############################################*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
}


/*##############  themes change  ################
###############################################*/

:root {
    --color-body-bg: #141D48;
    --color-secondary-body-bg: #1C3068;
    --color-text-default: #FFFFFF;
    --color-text-default-20op: #FFFFFF33;

    /* Login */
    --color-label-input: #141D48;
    --color-input-bg: #121E4080;

    /* Profile Nav */
    --color-profile-nav-bg: #3955A6B3;
    --color-progression-text: #FFFFFF;
    --color-progression-text-50op: #FFFFFF80;
    --color-progression-bar-bg: #27273D;
    --color-profile-nav-picture-border: #FFFFFF;
    --color-profile-nav-options: #FFFFFF;

    /* Challenge */
    --color-challenge-progression-bar-bg: #101C3F;

    /* Rewards */
    --color-rewards-achieved-bg: #101C3F;
    --color-rewards-bg: #101C3FE6;
    --color-rewards-title: #FFFFFF1A;

    /* Notifications */
    --color-notifications-bg: #101C3F;
    --color-notifications-btn: #101C3F80;

    /* Menu */
    --color-menu-bg: #0C142E;
}

.light-mode {
    --color-body-bg: #B1D3F3;
    --color-secondary-body-bg: #DFDFE7;
    --color-text-default: #27273D;
    --color-text-default-20op: #27273D33;

    /* Login */
    --color-label-input: #121E40;
    --color-input-bg: #B1D3F380;

    /* Profile Nav */
    --color-profile-nav-bg: #FFFFFFCC;
    --color-progression-text: #27273D;
    --color-progression-text-50op: #27273D;
    --color-progression-bar-bg: #9CB2C1;
    --color-profile-nav-picture-border: #58A9DE;
    --color-profile-nav-options: #5E5E88;

    /* Challenge */
    --color-challenge-progression-bar-bg: #1B355A;
    
    /* Rewards */
    --color-rewards-achieved-bg: #B1D3F3;
    --color-rewards-bg: #B1D3F380;
    --color-rewards-title: #5E5E8833;

    /* Notifications */
    --color-notifications-bg: #B1D3F3;
    --color-notifications-btn: #B1D3F380;

    /* Menu */
    --color-menu-bg: #1B355A;
}


/*##################  Login  ###################
###############################################*/

.login-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    background-image: url('/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.login {
    background-color: transparent;
    width: min(90%, 412px);
}

.login-logo {
    margin: 0 auto;
    max-width: 253px;
    height: 122px;
}

.login-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.login-form {
    padding-top: 53px;
    padding-bottom: 47px;
    width: 100%;
}

.input-box {
    display: block;
    position: relative;
    margin-bottom: 26px;
}

.input-login {
    background-color: var(--color-input-bg);
    color: var(--color-text-default);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    outline: none;
    border: 1px solid #51D5FF;
    border-radius: 27px;
    padding: 18px;
    height: 54px;
    width: 100%;
    cursor: pointer;
    caret-color: #FFFFFF80;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 18px;
    color: var(--color-text-default);
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    transform: translateY(-50%);
    pointer-events: none;
    transition: .3s ease;
}

.input-login:hover~label {
    color: #FFFFFF80;
}   

.input-login:not([value=''])~label,
.input-login:focus~label,
.input-login:valid~label {
    background-color: var(--color-body-bg);
    color: var(--color-text-default);
    top: 1px;
    left: 33px;
    font-size: 11px;
    font-weight: 600;
    padding: 0 6px;
}

.recover-password {
    display: block;
    color: #3FAEFF;
    text-decoration: none;
    text-align: center;
    font-family: "lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
}

.recover-password:hover,
.recover-password:focus,
.recover-password:active {
    color: #3FAEFFE6;
}

.btn-login {
    display: block;
    color: #FFF;
    background-color: #51D5FF;
    border: none;
    outline: none;
    border-radius: 30px;
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    padding: 15px 25px;
    margin-top: 40px;
    width: 100%;
    cursor: pointer;
}

.btn-login:hover {
    background-color: #51D5FFF2;
}


/*################  Splashscreen  ############### 
###############################################*/

.loading-container {
    background-color: #141D48; /* cor ajustada para video #101F49 */ 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
}

.loading-apresentation {
    max-width: 100%;
    height: auto;
}


/*###################  Home  #################### 
###############################################*/

html, 
body {
    height: 100%;
}

.alert-danger-idb {
    margin-top:30px;
    color:white;
    background-color:#9c222d;
}

.pages-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-body-bg);
    width: 100%;
    min-height: 100vh;
    background-image: url('/images/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media screen and (min-width: 1400px) {
    .page-container {
        margin: 0 auto;
        width: 1400px;
    }
}


/*
###########  Navigation  ##########
*/


.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 4px 20px 25px;
    width: 100%;
}

.home-link {
    display: flex;
    align-items: flex-end; 
    height: 60px;
    margin-right: 10px;
}

@media screen and (min-width: 576px) {
    .app-nav {
        padding: 0 4px 20px 46px;
        align-items: flex-end;
    }

    .home-link {
        padding-top: 30px;
        width: 81px;
        height: 100px;
    }
}

.home-link-icon {
    width: 40px;
    height: 35px;
}

.home-link-icon svg {
    width: 100%;
    height: 100%;
}

.profile-box {
    padding: 20px 15px 0 15px;
    width: min(90%, 345px);
}

.profile-overview {
    color: #FFF;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
    width: 100%;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
    .home-link-icon {
        width: 81px;
        height: 70px;
    }

    .profile-box {
        padding: 30px 25px 0 30px;
        position: relative;
        width: 345px;
    }

    .profile-overview {
        height: 80px;
    }
}

.performance-view {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: normal;
    font-style: italic;
    padding-right: 18px; 
    width: 100%;
    text-wrap: nowrap;
}

.performance-view > p:first-child {
    color: var(--color-progression-text);
    font-size: 12px;
    padding-bottom: 7px;
}

.performance-view > p:last-child {
    color: var(--color-progression-text-50op);
    font-size: 9px;
    padding-top: 4px;
}

.performance-bar {
    display: flex;
    background-color: var(--color-progression-bar-bg);
    border-radius: 21px;
    width: 100%;
    height: 12px;
}

.performance-bar > p {
    color: var(--color-progression-text-50op);
    font-size: 9px;
    padding-left: 4px;
}

.performance-achieved {
    background-color: #D9B63A;
    border-radius: 21px;
    width: 15%;
    height: 12px;
}

.profile-img-box {
    position: relative;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-profile-nav-picture-border);
    overflow: hidden;
}

.profile-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-box-open {
    text-wrap: nowrap;
    padding: 15px 0 15px 0;
    width: 100%;
}

.profile-box-active {
    background-color: var(--color-profile-nav-bg);
    border-radius: 33px;
}

@media screen and (min-width: 576px) {
    .profile-img-box {
        min-width: 80px;
        height: 80px;
        border-width: 5px;
    }
    
    .profile-box-open {
        position: absolute;
        top: 110px;
        right: 0;
        background-color: var(--color-profile-nav-bg);
        border-radius: 0 0 33px 33px;
        padding: 37px 35px 35px 35px;
        z-index: 999;
        
    }

    .profile-box-active {
        border-radius: 33px 33px 0 0;
    }
}

.visual-hidden {
    display: none;
}

.profile-action-link {
    color: var(--color-profile-nav-options);
    text-decoration: none;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

.theme-selector input[type='radio'] {
    appearance: none;
}

.theme-submit-btn,
.logout-submit-btn {
    background: none;
    border: none;
    width: 100%;
}

.theme-submit-btn{
    padding-right: 5px; 
}

@media screen and (min-width: 576px) {
    .profile-action-link {
        font-size: 18px;
    }
}

.profile-action-link > p {
    padding-right: 15px;
}

.theme-icon {
    margin-right: 5px;
}

.profile-action-link > svg {
    width: 30px;
}

.logout-btn path {
    fill: var(--color-profile-nav-options);
}

.profile-division-bar {
    border-bottom: 1px solid var(--color-profile-nav-options);
    margin-block: 18px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .profile-division-bar {
        margin-block: 28px;
    }
}


/*
###########  Helper Video  ##########
*/

.card-video-container {
    width: 100%;
}

@media screen and (min-width: 576px) {
    .card-video-container {
        padding-inline: 30px;
    }
}

@media screen and (min-width: 768px) {
    .card-video-container {
        padding-inline: 42px;
    }
}

.card-video {
    position: relative;
    background-color: var(--color-secondary-body-bg);
    color: var(--color-text-default);
    border-radius: 31px;
    padding: 37px 10vw 43px;
    margin: 0 auto;
    width: 90%;
}

@media screen and (min-width: 576px) {
    .card-video {
        padding: 37px 85px 43px 85px;
        width: 100%;
    }
}

.card-video-text > p:nth-child(1) {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: normal;
}

.card-video-text > p:nth-child(2) {
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-size: 24px;
    line-height: normal;
    padding-block: 6px;
}

.description-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
}

.helper-video {
    padding-top: 41px;
    width: 100%;
}

.helper-video img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.iframe-wrapper {
    position: relative;
    padding-top: 56.25%;
}

.iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top:0;
}

.card-detail-box .close-icon,
.card-video-theme .close-icon,
.card-video .close-icon {
    position: absolute;
    top: 33px;
    right: 5vw;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
    .card-detail-box .close-icon,
    .card-video-theme .close-icon,
    .card-video .close-icon {
        position: absolute;
        top: 33px;
        right: 72px;
    }
}

.card-video .close-icon > svg {
    width: 80%;
}

@media screen and (min-width: 576px) {
    .card-video .close-icon > svg {
        width: 100%;
    }
}


/*
#############  SUIT  ############
*/

.world-container {
    padding: 37px 5vw 130px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .world-container {
        padding: 37px 30px 227px 30px;
    }
}

@media screen and (min-width: 768px) {
    .world-container {
        padding: 37px 30px 237px 30px;
    }
}

.world-text {
    color: var(--color-text-default);
    text-align: center;
    padding-bottom: 49px;
}

.world-title {
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: normal;
}

.worlds {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
}


.world-test-card a {
    text-decoration: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.card-world {
    position: relative;
    max-width: calc((100% - 10px) / 2);
    height: auto;
}

.card-world-wrapper {
    position: relative;
    max-width: 100%;
    height: auto;
    }

.world-background-card {
    max-width: 100%;
    height: auto;
}

.world-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: calc(100% / 2);
    height: auto;
}

@media screen and (min-width: 576px) {
    .card-world-box {
        position: relative;
        width: 231px;
        height: 320px;
    }

    .card-world-wrapper,
    .world-background-card {
        width: 225px;
        height: 314px;
    }

    .world-icon {
        max-width: 100%;
    }
}

.world {
    max-width: calc((100% - 5px) / 2);
    text-align: center;
}

.world-suit {
    max-width: 100%;
}
.world-test-card {
    position: relative;
    max-width: calc((100% - 10px) / 2);
    height: auto;
}

.world-background-card {
    border-radius: 5vw;
    border: 3px solid transparent;
    max-width: 100%;
    height: auto;   
}

@media screen and (min-width: 576px) {
    .world-test-card {
        width: 225px;
        height: 314px;
    }

    .world-background-card {
        border-radius: 24px;
        width: 225px;
        height: 314px;
    }
}

.card-world-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 60%;
}

.card-world-wrapper-bloked {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
    height: 50%;
}

.card-world-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    row-gap: 5px;
}

.card-world-image-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 85px;
    width: 100%;
}

.card-world-image {
    width: min(12vw, 80px);
    height: auto;
}

.card-world-title {
    color: #5E5E88;
    font-family: 'Paytone One', sans-serif;
    font-size: clamp(12px, 5vw ,22px);
    font-weight: 400;
    line-height: 1;
}

@media screen and (min-width: 576px) {
    .card-world-wrapper {
        bottom: 35px;
        left: 50%;
        width: 150px;
        height: 200px;
    }

    .card-world-center {
        row-gap: 10px;
    }

    .card-world-image-center {
        height: 85px;
        width: 100%;
    }

    .card-world-image {
        max-width: 80px;
        height: auto;
    }
}




/*
#############  Menu  ############
*/

.menu {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-menu-bg);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 100%;
    height: 80px;
}

@media screen and (min-width: 576px) {
    .menu {
        border-top-left-radius: 49px;
        border-top-right-radius: 49px;
        height: 140px;
    }
}

@media screen and (min-width: 768px) {
    .menu {
        border-top-left-radius: 49px;
        border-top-right-radius: 49px;
        height: 150px;
    }
}

@media screen and (min-width: 1400px) {
    .menu {
        max-width: 1400px;
    }
}

.menu nav {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    height: 100%;
}

@media screen and (min-width: 576px) {
    .menu nav {
        padding-inline: 2vw;
        gap: 5px;
    }
}

@media screen and (min-width: 768px) {
    .menu nav {
        padding-inline: 82px;
        gap: 20px;
    }
}

.menu-item {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: normal;
    text-align: center;
    padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
    .menu-item {    
        font-size: 16px;
        padding-bottom: 20px;
    }
}

.menu-item a,
.menu-center-item a {
    text-decoration: none;
}

.menu-item a > p {
    display: none;
}

@media screen and (min-width: 576px) {
    .menu-item a p {
        display: block;
        text-decoration: none;
        text-align: center;
        text-wrap: nowrap;
    }
}

.menu-item a:before {
    background-size: contain;
    background-position: bottom;
    content: '';
    display: block;
    margin: 0 auto;
    height: 100px;
    width: 40px;
}

@media screen and (min-width: 576px) {
    .menu-item a:before {
        background-size: contain;
        background-position: center;
        content: '';
        display: block;
        margin: 0 auto;
        height: 100px;
        width: 60px;
    }
}

@media screen and (min-width: 768px) {
    .menu-item a:before {
        background-size: contain;
        background-position: center;
        content: '';
        display: block;
        margin: 0 auto;
        height: 100px;
        width: 70px;
    }
}

.my-deck {
    color: #B81685;
}

.my-deck:before {
    background: url('/images/meu-deck.svg') no-repeat;
    
}

.rewards {
    color: #FBB040;
}

.rewards:before {
    background: url('/images/recompensa.svg') no-repeat;
}

.menu-center-item {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    height: 88px;
    min-width: 113px;
}

@media screen and (min-width: 576px) {
    .menu-center-item {
        height: 159px;
        min-width: 204px;
    }
}

@media screen and (min-width: 768px) {
    .menu-center-item {
        font-size: 22px;
        height: 176px;
        min-width: 226px;
    }
}

.menu-center-item > div {
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 88px;
    min-width: 113px;
}

@media screen and (min-width: 576px) {
    .menu-center-item > div {
        height: 159px;
        min-width: 204px;
    }
}

@media screen and (min-width: 768px) {
    .menu-center-item > div {
        height: 176px;
        min-width: 226px;
    }
}

.lessons p {
    display: none;
}

@media screen and (min-width: 576px) {
    .lessons p {
        display: block;
    }
}

.lessons {
    position: absolute;
    color: #FFF;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 576px) {
    .lessons {
        bottom: 20px;
        transform: translateX(-50%);
    }
}

.lessons:before {
    background: url('/images/licoes.svg') no-repeat;
    background-size: contain;
    background-position: bottom;
    content: '';
    display: block;
    margin: 0 auto;
    height: 100px;
    width: 55px;
}

@media screen and (min-width: 576px) {
    .lessons:before {
        background: url('/images/licoes.svg') no-repeat;
        background-size: contain;
        background-position: center;
        content: '';
        display: block;
        margin: 0 auto;
        height: 100px;
        width: 80px;
    }
}

@media screen and (min-width: 768px) {
    .lessons:before {
        background: url('/images/licoes.svg') no-repeat;
        background-size: contain;
        background-position: center;
        content: '';
        display: block;
        margin: 0 auto;
        height: 100px;
        width: 90px;
    }
}

.notifications {
    position: relative;
    color: #D24B73;
}

.notifications:before {
    background: url('/images/notificacoes.svg') no-repeat;
}

.notifications-count {
    position: absolute;
    bottom: 43px;
    right: -12px;
    background-color: #F94040;
    border-radius: 50%;
    width: 30px;
    height: 30px;
}

@media screen and (min-width: 576px) {
    .notifications-count {
        top: 0;
        width: 42px;
        height: 42px;
    }
}

@media screen and (min-width: 768px) {
    .notifications-count {
        width: 48px;
        height: 48px;
    }
}

.notifications-count p {
    text-align: center;
    color: #FFF;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    padding-top: 1px;
  
}

@media screen and (min-width: 576px) {
    .notifications-count p {
        font-size: 20px;
        padding-top: 6px;
    }
}

@media screen and (min-width: 768px) {
    .notifications-count p {
        font-size: 24px;
        padding-top: 6px;
    }
}

.profile {
    color: #337693;
}

.profile:before {
    background: url('/images/profile.svg') no-repeat;
}


/*#################  Themes  #################### 
###############################################*/

/*
#############  Video  ############
*/

.card-video-theme {
    position: relative;
    background-color: var(--color-secondary-body-bg);
    color: var(--color-text-default);
    border-radius: 31px;
    padding: 37px 10vw 43px;
    margin: 0 auto;
    width: 90%;
}

.card-video-description {
    display: flex;
    align-items: center;
    width: 100%;
}

.card-video-icon {
    display: none;
}

@media screen and (min-width: 576px){
    .card-video-icon {
        display: block;
        max-width: 77px;
        height: 86px;
    }

    .card-video-icon img {  
        max-width: 100%;
        height: auto;
    }
}

.card-video-text-box {
    padding-left: 20px;
}

@media screen and (min-width: 768px){
    .card-video-text-box {
        padding-left: 3vw;
    }
}

.module-title {
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: normal;
    padding-block: 2px;
}


/*
#############  Card Theme  ############
*/

.themes-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 35px 5vw 167px;
    gap: 10px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .themes-container {
        padding: 35px 30px 227px 30px;
    }
}

@media screen and (min-width: 768px) {
    .themes-container {
        padding: 35px 30px 237px 30px;
    }
}

@media screen and (min-width: 1400px) {
    .themes-container {
        width: 1400px;
    }
}

.themes-container a {
    text-decoration: none;
position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.theme-card {
    position: relative;
    max-width: calc((100% - 10px) / 2);
    height: auto;
}

.placeholder-theme-card {
border-radius: 5vw;
    border: 3px solid transparent;
    max-width: 100%;
    height: auto;
    }

@media screen and (min-width: 576px) {
    .theme-card {
                width: 231px;
        height: 321px;
    }

    .placeholder-theme-card {
border-radius: 24px;
        width: 225px;
        height: 314px;
            }
    }

.checked {
    border-color: #58FF1D;
    }

.failed {
    border-color: #FF891D;
    }

.blocked {
    filter: opacity(.7);
}

.blocked-img {
    filter: opacity(.4);
}

.hidden {
    visibility: hidden;
}

.card-theme-description {
display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 60%;
}

.theme-card-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    row-gap: 5px;
}

.theme-card-image-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-height: 85px;
    width: 100%;
}

.card-theme-image {
    width: min(12vw, 80px);
    height: auto;
    }

.theme-card-title {
    color: #5E5E88;
    font-family: 'Paytone One', sans-serif;
    font-size: clamp(12px, 5vw ,22px);
    font-weight: 400;
    line-height: 1;
    overflow-wrap: break-word;
    width: 100%;
}

.card-status > img {
    width: min(8vw, 41px);
}

@media screen and (min-width: 576px) {
    .card-theme-description {
        bottom: 35px;
    left: 50%;
    width: 150px;
    height: 200px;
}

    .theme-card-center {
    row-gap: 10px;
    }

    .theme-card-image-center {
        height: 85px;
    width: 100%;
    }

    .card-theme-image {
        max-width: 80px;
    height: auto;
    }

    .card-status > img {
        width: 41px;
}
}


/*################  Challenge  ################## 
###############################################*/

.challenge-box {
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    max-width: 1200px;
}

.challenge-container {
    padding: 30px 5vw 167px 5vw;
}

@media screen and (min-width: 576px) {
    .challenge-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .challenge-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.challenge-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 38px 20px 0 20px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .challenge-header {
        padding: 38px 70px 0 50px;
    }
}

.challenge-header img {
    margin-right: 15px;
    width: 35px;
    height: 100px;
}

@media screen and (min-width: 576px) {
    .challenge-header img {
        margin-right: 37px;
        width: 45px;
        height: 111px;
    }
}

.challenge-progression {
    width: 100%;
}

.challenge-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .challenge-text-wrapper {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
    }
}

.challenge-title {
    color: var(--color-text-default);
    font-family: "lato", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: normal;
    padding-bottom: 10px;
    text-wrap: nowrap;
}

@media screen and (min-width: 576px) {
    .challenge-title {
        font-size: 48px;
    }
}

.challenge-text-progression {
    color: var(--color-text-default-20op);
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 18px;
}

@media screen and (min-width: 576px) {
    .challenge-text-progression  {
        font-size: 30px;
    }
}

.progression-bar {
    position: relative;
    background-color: var(--color-challenge-progression-bar-bg);
    border-radius: 21px;
    height: 21px;
    width: 100%;
}

.progression-achieved {
    position: absolute;
    background-color: #FBB040;
    border-radius: 21px;
    height: 21px;
}

.progression-achieved-a {
    position: absolute;
    background-color: #FBB040;
    border-radius: 21px;
    height: 21px;
    width: 15%;
}

.progression-achieved-b {
    position: absolute;
    background-color: #FBB040;
    border-radius: 21px;
    height: 21px;
    width: 20%;
}

.progression-achieved-full {
    position: absolute;
    background-color: #FBB040;
    border-radius: 21px;
    height: 21px;
    width: 100%;
}

.challenge-text-box {
    position: relative;
    height: fit-content;
    width: 100%;
    padding: 50px 10px;
}

.challenge-text {
    bottom: 20px;
    left: 50%;
    color: var(--color-text-default);
    font-family: "lato", sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: normal;
    text-align: center;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .challenge-text-box {

    }

    .challenge-text {
        font-size: 48px;
    }
}

.empty-answer {
    letter-spacing: -4.32px;
}

.challenge-cards-wrapper, .cards-component-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 1vw;
    padding: 0 20px 86px;
}

.challenge-card-box, .card-box{
    max-width: calc((100% - 1vw) / 2);
    height: auto;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    min-height: 200px;
}

.challenge-card-box a {
    height: auto;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    min-height: 200px;
}

.challenge-card-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.cards-component-wrapper img {
    max-width: 100%;
    height: auto;
}

@media screen and (min-width: 576px) {
    .challenge-card-box {
        width: 156px;
        height: 214px;
        cursor: pointer;
    }

    .challenge-card-box img {
        width: 156px;
        height: 214px;
        cursor: pointer;
    }
}


.challenge-card-box-active {
    border-radius: 15px;
    border: 5px solid #8DC63F;
    box-shadow: inset 0 0 0 5px #8DC63F;
}

@font-face {
    font-family: 'PaytoneOne';
    src: url('/fonts/PaytoneOne-Regular.ttf');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Organo';
    src: url('/fonts/Organo.ttf');
    font-weight: normal;
    font-style: normal;
}

.challenge-card-box span, .challenge-card-box a span {
    position: absolute;
    color: var(--color-text-default);
    font-family: "PaytoneOne", sans-serif;
    font-size: 25px;
    font-weight: 200;
    line-height: normal;
    text-align: center;
    overflow-wrap: break-word;
    width: 100%;
}

.challenge-order {
    display: flex;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
    margin-right: 20px;
}

.challenge-order p {
    font-family: "Organo", sans-serif;
    font-size: 48px;
    color: #5E5E88;
}

.challenge-order img {
    height: fit-content;
    margin: 0;
}

.btn-challenge {
    display: block;
    background-color: #8DC63F;
    color: #FFF;
    border-radius: 30px;
    border: none;
    outline: none;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    padding: 15px 25px;
    margin: 0 auto;
    height: 69px;
    width: 90%;
    cursor: pointer;
    z-index: 2;
}

.aswer-status-box {
    height: 150px;
}

.answer-status {
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: normal;
    padding-top: 34px;
}

.right:after {
    content: "Correta!";
    color: #8DC63F;
}

.wrong:after {
    content: "Ops!";
    color: #FF5A5A;
}

.right-answer-alert {
    box-shadow: inset 0px 1px 50px 0px #78F829;
}

.wrong-answer-alert {
    box-shadow: inset 0px 1px 50px 0px rgba(255, 3, 3, 0.80);
}


/*#############  Congratulations  ############### 
###############################################*/

.congratulations-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.congratulations-box > svg {
    margin-inline: auto;
    margin-top: 100px;
}

.congratulations-box-decorated-text {
    color: #8DC63F;
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: normal;
}

.congratulations-box-text {
    color: var(--color-text-default);
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
}

.congratulations-box-text-b{
    color: var(--color-text-default);
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: normal;
    padding-top: 36px;
    padding-bottom: 26px;
}

.congratulations-box-text-small {
    color: var(--color-text-default);
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
}

.congratulations-box-text-small-b {
    color: var(--color-text-default);
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding-top: 70px;
    padding-bottom: 24px;
}


/*###############  Completed  ################## 
###############################################*/

.challenge-reward-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.challenge-reward-img .star-icon {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    margin: 0 auto;
}

.reward-icon {
    position: absolute;
    max-width: 100px;
}
 
.complete-decorated-text {
    color: #8DC63F;
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 60px;
    font-weight: 800;
    line-height: normal;
}

.complete-text {
    color: var(--color-text-default);
    text-align: center;
    font-family: "lato", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
    max-width: 570px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.complete-challenge-link {
    display: block;
    background-color: #8DC63F;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    border-radius: 30px;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 22px 25px;
    width: 90%;
}

.challenge-reward-box {
    display: flex;
    flex-direction: column;
    align-content: center;
}


/*#################  My Deck  ################### 
###############################################*/
.world-deck-title {
    font-family: "lato", sans-serif;
}

/* bg active #8fea35 */
.btn-tag {
    background: transparent;
    border: 1px solid #3782b3;
    border-radius: 8px;
    padding: 8px 12px;
    margin: 10px 5px;
    color: #3782b3;
    font-size: 18px;
    cursor: pointer;
}

.btn-tag:hover {
    background: #8fea35;
    border: 1px solid #8fea35;
    color: #fff;
}

.tags-list-container {
    margin-bottom: 30px;
}

/* animate all btn-tag */
.btn-tag {
    transition: all 0.15s ease-in-out;
}

.btn-tag.active {
    background: #8fea35;
    border: 1px solid #8fea35;
    color: #fff;
}

.my-deck-container {
    padding: 30px 5vw 130px 5vw;
}

@media screen and (min-width: 576px) {
    .my-deck-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .my-deck-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.my-deck-box {
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    padding: 30px 30px;
}

@media screen and (min-width: 576px) {
    .my-deck-box {
        padding: 45px 80px;
        max-width: 1200px;
    }
}

.my-deck-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "lato", sans-serif;
    line-height: normal;
    margin-bottom: 15px;
}

.my-deck-title {
    color: #B81685;
    font-size: 24px;
    font-weight: 800;
    text-wrap: nowrap;
}

.my-deck-card-count {
    color: var(--color-text-default);
    font-size: 16px;
    font-weight: 400;
}

.my-deck-card-count > span {
    color: #FBB040;
    font-size: 20px;
    font-weight: 800;
    text-wrap: nowrap;
}

.my-deck-types-list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 15px;
    gap: 5px;
}

.type-word {
    color: #51D5FF;
    border: 1px solid #51D5FF;
    border-radius: 8px;
    list-style: none;
    font-family: "lato", sans-serif;
    font-size: 10px;
    font-weight: 300;
    line-height: normal;
    padding: 4px 7px;
}

.type-word-active {
    color: #FFF;
    border: none;
    background-color: #8FEA35;
    font-weight: 700;
}

.my-deck-category-cards-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    width: 100%;
}

.my-deck-category-title {
    font-family: "lato", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 8px;
}

.category-card-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    list-style: none;
    width: 100%
}

.category-card-item {
    margin: 5px;
    max-width: calc(100% / 2);
    text-align: center;
}

.category-card-item-img {
    max-width: 100%;
    height: auto;
}

/* Removido à pedido do Pedro */
/* .category-card-item-img:hover {
    border-radius: 15px;
    box-shadow: inset 0 0 0 5px #8DC63F;
} */

@media screen and (min-width: 576px) {
    .my-deck-header {   
        justify-content: space-between;
        align-items: baseline;
        text-wrap: nowrap;
        margin-bottom: 30px;
    }

    .my-deck-title {
        font-size: 48px;
    }

    .my-deck-types-list {
        margin-bottom: 30px;
        gap: 10px;
    }

    .my-deck-card-count {
        font-size: 24px;
    }
    
    .my-deck-card-count > span {
        font-size: 24px;
    }

    .my-deck-category-cards-wrapper {
        row-gap: 17px;
    }

    .type-word {
        border-radius: 15px;
        font-size: 18px;
        padding: 10px 25px;
        font-weight: 400;
    }

    .my-deck-category-title {
        font-size: 24px;
        margin-bottom: 13px;
    }

    .category-card-item {
        max-width: calc(100% / 5);
    }
}

@media screen and (min-width: 1200px) {
    .category-card-item {
        width: auto;
    }
}


/*#############  Card Detail  ################### 
###############################################*/


.card-detail-container {
    padding: 30px 5vw 167px 5vw;
}

@media screen and (min-width: 576px) {
    .card-detail-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .card-detail-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.card-detail-box {
    position: relative;
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    padding: 65px 30px;
}

@media screen and (min-width: 576px) {
    .card-detail-box {
        padding: 80px 80px;
        max-width: 1200px;
    }
}

.card-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 992px) {
    .card-detail {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
    }
}

.card-detail-img img {
    height: auto;
min-width: 250px;
    max-width: 100%;
}

@media screen and (min-width: 992px) {
.card-image {
        margin-right: 68px;
    };
    .card-detail-img img {
        height: 379px;
        max-width: 276px;
        }
}

.card-audio {
    user-select: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    height: auto;
    transition: .3s all;
}

@media screen and (min-width: 992px) {
    .card-audio {
        width: 80%;
    }
}

.card-audio-image {
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    background-color: var(--color-body-bg);
}

.card-audio:hover{
    opacity: .8;
}

.card-audio-image img {
    margin: auto;
    width: 56px !important;
    height: 40px !important;
}

.card-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-detail-description {
    color: #8FEA35;
    font-family: "lato", sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: normal;
    margin: 28px 0 8px;
}


.card-detail-title {
    color: #8FEA35;
    font-family: 'Paytone One', sans-serif !important;
    font-size: clamp(12px, 5vw ,22px);
    font-weight: 400;
    line-height: normal;
    margin: 28px 0 8px;
}

.card-detail-video > p,
.card-detail-text > p {
    color: var(--color-text-default);
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.box-division {
    margin: 60px 0 40px 0;
    border-bottom: 1px solid #5E5E88;
    width: 100%;
}

.card-detail-video {
    width: 100%;
}

.card-detail-video img {
    display: block;
    margin-inline: auto;
    margin-bottom: 45px;
    height: auto;
    max-width: 100%;
}


/*#################  Rewards  ################### 
###############################################*/


.rewards-container {
    padding: 30px 5vw 167px 5vw;
}

@media screen and (min-width: 576px) {
    .rewards-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .rewards-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.rewards-box {
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    padding: 65px 30px;
}

@media screen and (min-width: 576px) {
    .rewards-box {
        padding: 80px 80px;
        max-width: 1200px;
    }
}

.rewards-header-title {
    color: #FBB040;
    font-family: "lato", sans-serif;
    font-size: 35px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 8px;
}

@media screen and (min-width: 390px) {
    .rewards-header-title {
        font-size: 48px;
    }
}

.rewards-header p {
    color: var(--color-text-default);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 390px) {
    .rewards-header p {
        font-size: 18px;
        line-height: 30px;
    }
}

.rewards-progression-wrapper{
    margin-top: 20px;
    height: fit-content;
}

.reward-progression-count {
    color: var(--color-text-default);
    font-family: "lato", sans-serif;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    line-height: normal;
}

@media screen and (min-width: 390px) {
    .reward-progression-count {
        font-size: 36px;
    }
}

.reward-progression-count span {
    color: #FBB040;
}

.reward-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 47px;
    row-gap: 20px;
}


/*
###########  Reward Achieved  ##########
*/

.reward-box-achieved {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #DAFF72;
    border-radius: 26px;
    background-color: var(--color-rewards-achieved-bg);
    padding: 12px 20px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .reward-box-achieved {
        flex-direction: row;
    }
}

.reward-title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (min-width: 768px) {
    .reward-title-wrapper {
        flex-direction: row;
    }
}

.reward-icon-box {
    position: relative;
    background-color: #5E5E88;
    border: 3px solid #D9D9D9;
    border-radius: 50%;
    height: 60px;
    width: 60px;
}

@media screen and (min-width: 768px) {
    .reward-icon-box {
        margin-right: 23px;
    }
}

.reward-title {
    color: #FBB040;
    font-family: "lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    text-wrap: nowrap;
}

@media screen and (min-width: 390px) {
    .reward-title  {
        font-size: 28px;
    }
}

.reward-obtained {
    height: 42px;
    width: 42px;
}


/*
##############  Reward  #############
*/

.reward-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-radius: 26px;
    background-color: var(--color-rewards-bg);
    padding: 12px 20px;
    width: 100%;
}

@media screen and (min-width: 576px) {
    .reward-box {
        flex-direction: row;
    }
}

.reward-box .reward-icon-box {
    position: relative;
    background-color: #5E5E881A;
    border: none;
    border-radius: 50%;
    height: 60px;
    width: 60px;
}

@media screen and (min-width: 768px) {
    .reward-box .reward-icon-box {
        margin-right: 23px;
    }
}

.reward-box .reward-icon-box img {
    bottom: 3px;
    filter: brightness(.7) grayscale(1) opacity(.3);
}

.reward-box .reward-title {
    color: var(--color-rewards-title);
}


/*##############  Notification  ################# 
###############################################*/


.notification-container {
    padding: 30px 5vw 167px 5vw;
}

@media screen and (min-width: 576px) {
    .notification-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .notification-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.notifications-box {
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    padding: 65px 30px;
}

@media screen and (min-width: 576px) {
    .notifications-box {
        padding: 80px 80px;
        max-width: 1200px;
    }
}

.notification-header-title {
    color: #D24B73;
    font-family: "lato", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: normal;
    margin-bottom: 8px;
}

@media screen and (min-width: 390px) {
    .notification-header-title {
        font-size: 40px;
    }
}

@media screen and (min-width: 576px) {
    .notification-header-title {
        font-size: 48px;
    }
}

.notification-header p {
    color: var(--color-text-default);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}

@media screen and (min-width: 390px) {
    .notification-header p {
        font-size: 18px;
        line-height: 30px;
    }
}

.notifications-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 47px;
    row-gap: 20px;
}

/*
###########  Notifications  ############
*/

.notification-received-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #FFFFFF33;
    border-radius: 26px;
    background-color: var(--color-notifications-bg);
    padding: 20px;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .notification-received-box {
        flex-direction: row;
    }
}

.notification-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .notification-wrapper {
        flex-direction: row;
    }
}

.notification-icon-box {
    position: relative;
    border-radius: 50%;
    height: 60px;
    min-width: 60px;
    overflow: hidden;
}

.notification-icon-box img {
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .notification-icon-box {
        margin-right: 23px;
    }
}

.notification-text-wrapper {
    max-width: 540px;
    width: 100%;
    min-height: 93px;
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.expanded {
    height: auto;
}

.notification-title {
    color: #FBB040;
    font-family: "lato", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 10px;
    width: 100%;
}

@media screen and (min-width: 390px) {
    .notification-title {
        font-size: 24px;
    }
}

@media screen and (min-width: 576px) {
    .notification-title {
        font-size: 28px;
    }
}

.notification-text-wrapper p:last-child {
    color: var(--color-text-default);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
}

/*
#########  Notification Dropdown ##########
*/

.notification-dropdown {
    position: relative;
    background-color: var(--color-notifications-bg);
}

.dropdown-btn {
    display: block;
    background-color: inherit;
    border: none;
    outline: none;
    padding: 20px;
    cursor: pointer;
}

.notification-options {
    height: 9px;
    min-width: 37px;
}

.notification-dropdown-content {
    display: none;
    background-color: inherit;
    border: 1px solid #FFFFFF33;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
    .notification-dropdown-content {
        top: 50%;
        left: 100%;
        transform: translateY(-50%);
    }
}

.drop-down-show {
    display: block;
}

.mark-as-read,
.delete-notification {
    display: block;
    background-color: inherit;
    border: none;
    outline: none;
    color: var(--color-text-default);
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    text-wrap: nowrap;
    padding: 5px 10px;
    cursor: pointer;
}

/*
#########  Notifications Readed ##########
*/

.notification-readed-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #FFFFFF33;
    border-radius: 26px;
    background-color: var(--color-notifications-bg);
    padding: 20px;
    width: 100%;
    filter: opacity(.5);
}

@media screen and (min-width: 768px) {
    .notification-readed-box {
        flex-direction: row;
    }
}

.notification-readed-box .dropdown-btn {
    background-color: var(--color-notifications-btn);
}


/*#################  Profile  ################### 
###############################################*/

.profile-page-container {
    position: relative;
    padding: 130px 5vw 167px 5vw;
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    .profile-page-container {
        padding-top: 85px;
    }
}

@media screen and (min-width: 576px) {
    .profile-page-container {
        padding-inline: 30px;
        padding-bottom: 227px;
    }
}

@media screen and (min-width: 768px) {
    .profile-page-container {
        padding-inline: 42px;
        padding-bottom: 237px;
    }
}

.profile-page-box {
    background-color: var(--color-secondary-body-bg);
    border-radius: 31px;
    margin: 0 auto;
    padding: 45px 30px;
}

@media screen and (min-width: 576px) {
    .profile-page-box {
        padding: 60px 80px;
        max-width: 1200px;
    }
}

.profile-image-container {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.profile-image-wrapper {
    position: relative;
    width: 254px;
    margin: 0 auto;
}

.profile-page-img-box {
    position: relative;
    width: 254px;
    height: 254px;
    border-radius: 50%;
    border: 15px solid var(--color-profile-nav-picture-border);
    overflow: hidden;
}

.profile-page-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-photo-edit {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: none;
    outline: none;
    width: 90px;
    height: 90px;
    cursor: pointer;
}
 
.profile-photo-edit img { 
    background-color: inherit;
}

.profile-name-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    margin-inline: auto;
}

.profile-name-wrapper input {
    background-color: inherit;
    border: none;
    outline: none;
    color: #3A7D99;
    font-family: 'Noto Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    width: 254px;
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    .profile-name-edit img {
        max-width: 70%;
    }

    .profile-name-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .profile-page-img-box {
        border: 10px solid #FFF;
        width: 150px;
        height: 150px;
    }

    .profile-image-wrapper {
        position: relative;
        width: 150px;
        margin: 0 auto;
    }

    .profile-photo-edit {
        width: 40px;
        height: 40px;
    }
     
    .profile-photo-edit img {
        max-width: 50%;
    }

    .profile-name-wrapper input {
        font-size: 28px;
        width: 200px;
    }
}

.profile-name-edit {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    .profile-name-edit img {
        max-width: 70%;
    }
}

.profile-info {
    margin-top: 165px;
}

@media screen and (min-width: 400px) {
    .profile-info {
        margin-top: 215px;
    }
}

@media screen and (min-width: 576px) {
    .profile-info {
        margin-top: 200px;
    }
}

.profile-info fieldset {
    border: none;
}

.profile-info input, .profile-info select {
    display: block;
    background-color: inherit;
    color: var(--color-text-default);
    border: none;
    outline: none;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 36px;
}

.select2-container--default .select2-selection--single { 
    background: var(--color-secondary-body-bg);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--color-text-default);
}

.profile-info label {
    display: block;
    color: #3A7D99;
    font-family: 'Noto Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 36px;
}

.profile-input-edit {
    background-color: inherit;
    border: none;
    outline: none;
    cursor: pointer;
    
}

@media screen and (min-width: 0px) and (max-width: 400px) {
    .profile-input-edit img{
        max-width: 70%;
    }
}

.profile-email,
.profile-telefone,
.profile-user-region  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #FFFFFF80;
}

@media screen and (min-width: 0) and (max-width: 400px) {
    .profile-email,
    .profile-telefone,
    .profile-user-region  {
        flex-direction: column;
        align-items: flex-start;
    }
}

.regions-wrapper {
    display: flex;
    flex-direction: column;
}

.profile-email,
.profile-telefone,
.profile-user-region,
.profile-user-about,
.profile-user-password {
    padding-block: 20px;
}

.regions-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media screen and (min-width: 768px) {
    .regions-wrapper {
        flex-direction: row;
    }
}

.regions-wrapper div {
    flex: 1;
}

.about-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.profile-user-about {
    border-bottom: 1px solid #FFFFFF80;
}

.profile-user-about textarea {
    background-color: inherit;
    border: none;
    outline: none;
    resize: none;
    color: var(--color-text-default);
    flex: 1;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.profile-user-password {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

@media screen and (min-width: 576px) {
    .profile-user-password {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
}

.password-wrapper,
.password-wrapper input,
.password-wrapper label  {
    max-width: 150px;
    margin-right: 20px;
}

.altPassword-btn {
    color: #FFF;
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    border-radius: 30px;
    background: #3A7D99;
    border: none;
    outline: none;
    margin: 0 auto;
    padding: 15px 25px;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    .altPassword-btn  {
        margin: 0;
    }
}

.error-msg-login {
    font-size: 16px;
    color: red !important;
    text-align: center;
    font-family: 'Raleway', sans-serif;    
    padding: 0 0 30px 5px;
}

.error-msg-recover {
    font-size: 16px;
    font-family: 'Raleway', sans-serif;
    color: red !important;
    text-align: center;
    padding-left: 5px;
}


/*
password recover
*/

.recover-title {    
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-size: 36px;
    line-height: normal;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 30px;
}

.recover-title h2 {    
    color: var(--color-text-default);
    font-family: "lato", sans-serif;
    font-weight: 800;
    font-size: 36px;    
    line-height: normal;
}


.audio-pulse {
    animation: audio-pulse .5s infinite alternate;
}


@keyframes audio-pulse {
    from {
        opacity: .5;
    }
    to{
        opacity: 1;
    }
}

.message-error {
    color: rgba(231, 76, 60, 0.88);
}
