* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    height: 100%;
    width: 100%;
}

a:hover {
    cursor: pointer;
}

.header {
    width: calc(100% - 40px);
    height: 80px;
    position: absolute;
    padding: 0 20px;
    font-size: 12px;
    display: flex;
}

.header-left-container {
    float: left;
    width: calc(50% - 20px);
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 60px;
}

.header-right-container {
    float: right;
    width: calc(50% - 20px);
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 60px;
}

.header-gradient {
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, #00ADB5, #00ADB500);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 999;
    user-select: none;
    pointer-events: none;
}

.header-logo {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo img {
    width: auto;
    height: 70%;
    z-index: 1000;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}

.header-notifications {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-notifications-bell {
    width: 50%;
    height: 50%;
    z-index: 1000;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
    position: relative;
    cursor: pointer;
}

.header-notifications-bell img {
    width: 100% !important;
    height: 100% !important;
    user-select: none;
    pointer-events: none;
}
.header-mobile-notifications-bell-redball,
.header-notifications-bell-redball {
    width: 20px;
    height: 20px;
    background-color: red;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
    user-select: none;
    pointer-events: none;
}

.header-mobile-notifications-bell-redball span,
.header-notifications-bell-redball span {
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    user-select: none;
    pointer-events: none;
}

.header-left-container a,
.header-right-container a {
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1000;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.header-mobile {
    width: calc(100% - 40px);
    height: 80px;
    position: relative;
    padding: 0 20px;
    font-size: 12px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: none;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.header-mobile-img {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-mobile-img img {
    width: auto;
    height: 40px;
}

.header-mobile-menu {
    width: 100%;
    height: 100%;
    min-height: 100%;
    position: absolute;
    padding-bottom: 40px;
    left: 0;
    top: 0;
    background-color: #00adb5;
    z-index: 1001;
    display: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
 }

.header-mobile-menu-cross {
    width: calc(100% - 40px);
    height: 80px;
    float: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
}

.header-mobile-menu-cross img {
    width: auto;
    height: 70px;
}

.header-mobile-menu-items {
    width: calc(100% - 80px);
    height: fit-content;
    float: left;
    display: flex;
    justify-content: flex-end;
    align-items: right;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 0 40px;
    text-align: right;
}

.header-mobile-menu-items-separation {
    width: 100%;
    height: 20px;
    float: left;
}

.header-mobile-menu-items-notifications {
    width: 100%;
    height: fit-content;
    float: left;
    text-align: center;
}

.header-mobile-menu-items-notifications span {
    color: white;
    font-size: 2.4em;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.header-mobile-menu-items a {
    color: white;
    text-decoration: none;
    font-size: 1.8em;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.header-notifications-menu {
    position: absolute;
    right: 80px;
    top: 80px;
    width: 300px;
    height: fit-content;
    min-height: 60px;
    max-height: 260px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    z-index: 1501;
    border-radius: 5px;
    border: 1px solid #222831;
    padding-bottom: 5px;
    overflow-y: auto;
    display: none;
}

.header-notifications-menu-default {
    width: 100%;
    height: 30%;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    color: rgb(98, 98, 98);
}

.header-notifications-menu-default span {
    font-style: italic;
}

.header-notifications-menu >
.header-notifications-menu-item {
    float: left;
    text-align: left;
    width: calc(100% - 10px);
    height: 60px;
    cursor: pointer;
    background-color: #00ADB5;
    margin: 5px 5px 0 5px;
    border-radius: 5px;
    color: white;
}

.header-mobile-notifications-menu >
.header-notifications-menu-item {
    float: left;
    text-align: left;
    width: calc(100% - 10px);
    height: 60px;
    cursor: pointer;
    background-color: #ffffff;
    margin: 5px 5px 0 5px;
    border-radius: 5px;
    color: #222831;
}

.header-notifications-menu-item img {
    margin-top: 10%;
    height: 50px;
    width: 50px;
    margin-left: 10%;
    margin: 5px;
    float: left;
}

.header-mobile-notifications-menu >
.header-notifications-menu-item img {
    background-color: #00ADB5;
    mix-blend-mode: multiply;
    border-radius: 5px;
}

.header-notifications-menu-item p {
    float: left;
    margin-top: 5px;
    margin-left: 5px;
    font-size: 1.2em;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    width: calc(100% - 80px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.header-notifications-menu-item span {
    float: left;
    margin-left: 5px;
    font-size: 1em;
    font-weight: 400;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
    width: calc(100% - 80px);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

main {
    width: 100%;
    min-height: calc(100% - 250px);
}

footer {
    float: left;
    width: 100%;
    height: 250px;
    background-color: #393E46;
}

.footer-icons-container {
    width: 100%;
    height: 50px;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    position: relative;
}

.footer-icons-container-img {
    width: 70px;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background-color: #393E46;
}

.footer-icons-container-img img {
    width: auto;
    height: 100%;
    cursor: pointer;
    z-index: 11;
}

.footer-icons-container-img:hover img {
    filter: drop-shadow(0 0 3px rgb(255, 255, 255)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.331));
}

.footer-icons-container-line {
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 9;
}

.footer-logo-container {
    width: 100%;
    height: 50px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo-container img {
    width: auto;
    height: 100%;
}

.footer-text-container {
    width: 100%;
    height: auto;
    margin-top: 15px;
    text-align: center;
}

.footer-text-container p {
    color: white;
    font-size: 0.8em;
    font-weight: 600;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}

.header-login-menu {
    padding: 20px 0;
    position: absolute;
    right: 200px;
    top: 80px;
    width: 300px;
    height: fit-content;
    min-height: 60px;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    z-index: 5000;
    border-radius: 5px;
    border: 1px solid #222831;
    padding-bottom: 5px;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header-login-group {
    float: left;
    width: 80%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-grow: 1;
}

.header-login-group label {
    color: #222831;
    font-size: 1.2rem;
    font-weight: 600;
}

.header-login-control {
    width: 100%;
    height: 10px;
    padding: 14px;
    border: 3px solid #00ADB5;
    border-radius: 5px;
    font-size: 1.2rem;
}

.header-login-error {
    color: red;
    font-style: italic;
}

.header-login-send {
    width: 100%;
    float: left;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.header-login-send button {
    width: 165px;
    height: 40px;
    background-color: #00ADB5;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.header-login-send button:hover {
    background-color: #222831;
}

.header-login-google {
    float: left;
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    margin-top: 10px;
}

.header-login-google img {
    width: auto;
    height: 100%;
    cursor: pointer;
}


#errorContainer {
    margin-top: 10px;
    height: 50px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: red;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

#errorContainer-login {
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: red;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

.header-mobile-login-menu {
    padding: 20px 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    min-height: 60px;
    max-height: 260px;
    background-color: white;
    box-shadow: 0 10px 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 5000;
    padding-bottom: 5px;
    overflow-y: auto;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header-mobile-login-group {
    float: left;
    width: 80%;
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    flex-grow: 1;
}

.header-mobile-login-group label {
    color: #222831;
    font-size: 1.2rem;
    font-weight: 600;
}

.header-mobile-login-control {
    width: 100%;
    height: 10px;
    padding: 14px;
    border: 3px solid #00ADB5;
    border-radius: 5px;
    font-size: 1.2rem;
}

.header-mobile-login-error {
    color: red;
    font-style: italic;
}

.header-mobile-login-send {
    width: 100%;
    float: left;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.header-mobile-login-send button {
    width: 165px;
    height: 100%;
    background-color: #00ADB5;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.header-mobile-login-send button:hover {
    background-color: #222831;
}

#errorContainer-mobile-login {
    height: 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: red;
    font-size: 1.2rem;
    font-weight: 600;
    font-style: italic;
}

@media (max-width: 1200px) {
    .header-logo img, .header-notifications img {
        height: 60%;
    }

    .header-left-container a, .header-right-container a {
        font-size: 1.3em;
    }
}

@media (max-width: 1000px) {
    .header-logo img, .header-notifications img {
        height: 50%;
    }

    .header-left-container a, .header-right-container a {
        font-size: 1.1em;
    }
}

@media (max-width: 800px) {
    .header-logo img, .header-notifications img {
        height: 40%;
    }

    .header-left-container a, .header-right-container a {
        font-size: 0.9em;
    }
}

@media (max-width: 720px) { /* MOBILE */
    .header {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    main {
        width: 100%;
        min-height: calc(100% - 330px);
    }
}