﻿/*#region Header Actions */
.header-action {
    border: none !important;
    color: white !important;
    font-size: 2.25em;
    padding: 0px;
    text-align: center;
}

    .header-action:hover {
        border: none !important;
        color: white;
        font-size: 2.35em;
    }

.header-actions {
    align-items: center;
    background-color: #ce1126;
    display: grid;
    grid-template-columns: 1fr repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(1, 1fr);
}

    .header-actions > div {
        text-align: center;
    }

@media (width < 576px) {
    .header-action {
        font-size: 1.8em;
    }

        .header-action:hover {
            font-size: 1.9em;
        }

    .header-actions {
        grid-template-columns: 0fr repeat(4, minmax(0, 1fr));
    }
}

@media (576px <= width < 768px) {
    .header-action {
        font-size: 1.5em;
    }

        .header-action:hover {
            font-size: 1.6em;
        }

    .header-actions {
        font-size: 1.5em;
        grid-template-columns: 0fr repeat(4, minmax(0, 1fr));
    }
}

@media (992px <= width < 1200px) {
    .header-action {
        font-size: 2em;
    }

        .header-action:hover {
            font-size: 2.1em;
        }

    .header-actions {
        grid-template-columns: 6fr repeat(4, minmax(0, 1fr));
    }
}

@media (1200px <= width < 1400px) {
    .header-action {
        font-size: 2em;
    }

        .header-action:hover {
            font-size: 2.1em;
        }

    .header-actions {
        grid-template-columns: 8fr repeat(4, minmax(0, 1fr));
    }
}

@media (1400px <= width) {
    .header-action {
        font-size: 2em;
    }

        .header-action:hover {
            font-size: 2.1em;
        }

    .header-actions {
        grid-template-columns: 16fr repeat(4, minmax(0, 1fr));
    }
}

/*#endregion Header Actions */

/*#region Header Image */

.header-image {
    cursor: pointer;
    margin-left: 15px;
    width: 325px;
}

.header-image-div {
    background-color: white;
    display: inline-block;
    height: 100px;
    top: 0;
    vertical-align: top;
}

@media (width < 576px) {
    .header-image {
        cursor: pointer;
        margin-top: 32.5px;
        margin-left: 5px;
        width: 200px;
    }
}

@media (576px <= width < 768px) {
    .header-image {
        cursor: pointer;
        margin-top: 22.5px;
        margin-left: 5px;
        width: 325px;
    }
}

@media (769px <= width) {
    .header-image {
        cursor: pointer;
        margin-top: 12.5px;
        margin-left: 15px;
        width: 400px;
    }
}

/*#endregion Header Image */

/* Header Site */

.header-site {
    display: grid;
    grid-template-columns: 2fr 50px 11fr;
    grid-template-rows: repeat(1, 1fr);
    gap: 0px;
}

.header-split {
    background-color: white;
    border-style: solid;
    border-width: 100px 50px 0 0;
    border-color: white #ce1126 transparent transparent;
}

@media (width < 576px) {
    .header-site {
        display: grid;
        grid-template-columns: 4fr 50px 5fr;
        grid-template-rows: repeat(1, 1fr);
        gap: 0px;
    }
}

@media (576px <= width < 768px) {
    .header-site {
        display: grid;
        grid-template-columns: 1fr 50px 1fr;
        grid-template-rows: repeat(1, 1fr);
        gap: 0px;
    }
}

/*#endregion Header Site */

/* Login */

.login-btn-div {
    background-color: #ce1126;
}

.login-btn-header {
    display: none;
}

/*#endregion Login */

/* User Action */

.user-action {
    font-size: 1em;
    font-weight: 600;
    padding-top: 10px;
}

.user-action-icon {
    font-size: 1.5em;
    font-weight: 600;
}

.user-info {
    background-color: lightgray;
    border-color: lightgray;
    border-style: solid;
    font-weight: 500;
    padding-left: 10px;
    padding-right: 10px;
}

.user-menu {
    padding: 0px;
}

/*#endregion User Action */
