﻿/*header styling*/
@font-face {
    font-family: "BR Omega";
    src: url("/fonts/BROmegaVN/BROmegaVN-Regular.otf?#iefix");
}

header#site-header {
    width: 100%;
    background: #ffffff;
    padding: 15px 4%;
    transition: all 0.2s ease;
    height: 70px;
    box-shadow: 0 2px 10px #dddddd;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

    header#site-header a {
        color: #666666;
    }

        header#site-header a:hover {
            color: #F58D4D !important;
            transition: all 0.2s ease;
        }

    header#site-header button:active {
        position: relative;
        top: 1px;
    }

    header#site-header div#site-header-auth-container button {
        outline: 0;
        background: transparent;
        height: 30px;
        padding: 0 5px;
        border: 0;
        font-family: "BR Omega", sans-serif;
        font-size: unset;
        /*font-weight: bold;*/
        cursor: pointer;
        color: #666666;
    }

    header#site-header div#site-header-auth-container a {
        outline: 0;
        background: transparent;
        height: 30px;
        padding: 0 20px;
        border: 0;
        font-family: "BR Omega", sans-serif;
        font-size: unset;
        /*font-weight: bold;*/
        cursor: pointer;
        color: #666666;
    }

    header#site-header div#site-header-container {
        display: flex;
        align-items: center;
        height: 40px;
    }

    header#site-header div#site-header-logo {
        width: auto;
        padding: 0;
        margin-right: 30px;
        height: auto;
    }

        header#site-header div#site-header-logo img {
            height: 80px;
        }

    header#site-header #site-header-search {
        width: auto;
        padding: 0;
        justify-content: flex-end;
        margin-left: auto;
        margin-right: 5px;
    }

    header#site-header ul#main-menu {
        padding: 0;
    }

        header#site-header ul#main-menu li {
            list-style: none;
            display: inline;
            margin-right: 40px;
            /*font-weight: bold;*/
            font-size: unset;
        }

            header#site-header ul#main-menu li:last-of-type {
                margin-right: 0;
            }

            header#site-header ul#main-menu li a {
                text-decoration: none;
                font-size: unset !important;
            }

    header#site-header .social-buttons {
        margin-top: 10px;
        text-align: center;
        font-size: unset;
    }

        header#site-header .social-buttons i {
            margin-right: 10px;
        }

            header#site-header .social-buttons i:last-child {
                margin-right: 0;
            }

    header#site-header #site-header-search {
        flex-grow: 4;
    }

    header#site-header #site-header-search-container {
        position: relative;
        height: 30px;
        width: 100%;
        padding: 0;
    }

        header#site-header #site-header-search-container input[type="text"] {
            height: 28px;
            font-size: unset;
            font-family: "BR Omega", sans-serif;
            border: none;
            outline: none;
            color: #666666;
            padding-right: 60px;
            width: 0;
            position: absolute;
            top: 0;
            right: 0;
            background: none;
            z-index: 3;
            transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
            cursor: pointer;
        }

            header#site-header #site-header-search-container input[type="text"]:focus:hover {
                border-bottom: 1px solid #0097ad;
            }

            header#site-header #site-header-search-container input[type="text"]:focus {
                width: calc(100% - 50px);
                z-index: 1;
                border-bottom: 1px solid #999999;
                cursor: text;
                margin-right: 40px;
            }

        header#site-header #site-header-search-container button#search_submit {
            height: 30px;
            width: 30px;
            border: none;
            color: #999999;
            background: transparent;
            position: absolute;
            top: 0;
            right: 0;
            z-index: 2;
            cursor: pointer;
            transition: opacity 0.3s ease;
            padding: 0;
            font-size: unset;
        }

    header#site-header div#site-header-auth-container {
        justify-content: flex-end;
        text-align: right;
        flex-shrink: 0;
    }

        header#site-header div#site-header-auth-container .site-header-auth-button:hover {
            border-color: #0097ad;
            color: #0097ad;
            transition: all 0.3s ease;
        }

        header#site-header div#site-header-auth-container .site-header-auth-button i:after {
            content: "";
            margin-right: 0.32em;
        }

    header#site-header img.icon-header {
        position: relative;
        top: 3px;
    }



/*mobile menu styling*/

#side-menu-container {
    padding-right: 20px;
    transition: all 0.3s ease-in-out;
}

header #side-menu-container #before-side-menu,
header #side-menu-container #after-side-menu {
    display: none;
}

input[type=checkbox]#toggleSideMenu {
    box-sizing: border-box;
    display: none;
}

.login-btn {
    background-color: white !important;
    border: 1px solid #b8bfc6 !important;
    border-radius: 9999px;
    padding: 9.5px 1.5rem !important;
}

    .login-btn:hover {
        background: #F37021;
        border: 1px solid #F37021 !important;
    }




/*media queries*/

@media screen and (min-width: 1201px) and (max-width: 1500px) {
    /*header#site-header #site-header-search-container input[type="text"]:focus {
        width: 250px;
    }*/
}

@media screen and (max-width: 1200px) {

    /*general styling*/
    .main-container {
        width: 90%;
        overflow: hidden;
        padding: 40px;
    }

    /*to fit the size of the hamburger button*/
    header#site-header {
        height: 60px;
    }

        header#site-header div#site-header-container {
            height: 30px;
        }

        header#site-header div#site-header-logo {
            margin-right: 10px;
            margin-left: 35px;
        }

            header#site-header div#site-header-logo a {
                cursor: pointer;
            }
    /*styling the container for the menu*/
    #side-menu-container {
        position: fixed;
        left: -250px;
        top: 0;
        margin-top: 60px;
        padding: 15px;
        width: 250px;
        height: 100%;
        background: #f7f7f7;
        box-shadow: inset -1px 0 5px #eeeeee;
    }

    header #side-menu-container #before-side-menu,
    header #side-menu-container #after-side-menu {
        display: block;
        background: #aaaaaa;
        color: #fafafa;
        padding: 10px;
    }

        header #side-menu-container #before-side-menu span,
        header #side-menu-container #after-side-menu span {
            font-size: unset;
            font-style: italic;
        }

    /*styling the menu inside the <nav> block*/
    #top-menu {
        transition: top 0.5s ease;
        width: 100%;
        margin: 0;
    }

    header#site-header ul#main-menu li {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: unset !important;
        border-bottom: 1px solid #dddddd;
    }

        header#site-header ul#main-menu li:last-of-type {
            border-bottom: none;
        }

        header#site-header ul#main-menu li a {
            margin: 0;
            padding: 0;
        }

    input[type=checkbox]#toggleSideMenu {
        box-sizing: border-box;
        display: none;
    }

    input[type="checkbox"]#toggleSideMenu:checked ~ #side-menu-container {
        transform: translateX(250px);
    }

    /*hamburger icon styling*/
    .hamburger-icon {
        box-sizing: border-box;
        cursor: pointer;
        position: absolute;
        z-index: 99;
        top: 22px;
        left: 22px;
        height: 22px;
        width: 22px;
    }

    .hamburger-menu-line {
        transition: all 0.3s;
        box-sizing: border-box;
        position: absolute;
        height: 3px;
        width: 100%;
        background-color: #666;
    }

    .horizontal {
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }

    .diagonal-1 {
        position: relative;
        box-sizing: border-box;
        float: left;
    }

    .diagonal-2 {
        box-sizing: border-box;
        position: relative;
        float: left;
        margin-top: 3px;
    }

    input[type=checkbox]#toggleSideMenu:checked ~ .hamburger-icon > .horizontal {
        box-sizing: border-box;
        opacity: 0;
    }

    input[type=checkbox]#toggleSideMenu:checked ~ .hamburger-icon > .diagonal-1 {
        box-sizing: border-box;
        transform: rotate(135deg);
        margin-top: 8px;
    }

    input[type=checkbox]#toggleSideMenu:checked ~ .hamburger-icon > .diagonal-2 {
        box-sizing: border-box;
        transform: rotate(-135deg);
        margin-top: -9px;
    }

    header#site-header #site-header-search {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    header#site-header div#site-header-auth-container .site-header-auth-button span {
        display: none;
    }

    header#site-header div#site-header-auth-container .site-header-auth-button i::after {
        margin-right: 0;
    }
}

@media screen and (max-width: 480px) {
    header#site-header div#site-header-auth-container a {
        display: none !important;
    }

    footer#site-footer div#left-side {
        display: none !important;
    }

    #social-icon, #selectLanguage {
        display: none !important;
    }
}


/*footer {
    padding: 3.5rem 5%;
    background-color: #101828;
    justify-content: space-between;
    display: flex;
}

.footer-copyright p {
    background-color: #101828 !important;
    border-top: 1px solid #344054;
    padding: 15px;
    text-align: center;
    color: #98A2B3;
}

#site-footer-container {
    row-gap: 2rem;
    flex-direction: column;
    display: flex;
}

    #site-footer-container select {
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 14px;
        cursor: pointer;
    }

footer#site-footer div#left-side {
    row-gap: 1.5rem;
    flex-direction: column;
    display: flex;
    flex: 0 0 33.33333%;
    max-width: 50%;
}

    footer#site-footer div#left-side ul {
        display: flex;
    }

    footer#site-footer div#left-side p {
        color: #DEE2E6;
        column-gap: 0.5rem;
        display: flex;
        font-size: .75rem;
    }

    footer#site-footer div#left-side span, a {
        color: #98a2b3 !important;
        font-size: 14px;
    }

    footer#site-footer div#left-side a:hover {
        color: #1890ff !important;
    }

footer#site-footer div#left-side-logo img {
    height: 48px;
}

footer#site-footer div > p {
    color: #DEE2E6;
    font-size: .75rem;
}

footer#site-footer .column links{

}*/

footer {
    background-color: #101828;
}

.footer-copyright p {
    background-color: #101828 !important;
    border-top: 1px solid #344054;
    padding: 15px;
    text-align: center;
    color: #98A2B3;
}

footer * {
    font-family: "BR Omega", sans-serif;
    box-sizing: border-box;
    border: none;
    outline: none;
}

footer#site-footer .row.primary span, a {
    color: #98a2b3 !important;
    font-size: 14px;
}

footer#site-footer .row.primary a:hover {
    color: #1890ff !important;
}

footer#site-footer .row {
    padding: 1em 1em;
}

    footer#site-footer .row.primary {
        padding: 3.5rem 5%;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 2fr;
        align-items: stretch;
        margin: unset !important;
    }

footer#site-footer .column {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 0.5rem 2.5rem;
    min-height: 15rem;
    row-gap: 2rem;
}

footer#site-footer h3 {
    width: 100%;
    text-align: left;
    color: white;
    font-size: 1.2em;
    white-space: nowrap;
    font-weight: 700;
}

footer#site-footer .about ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
}

footer#site-footer ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    row-gap: 0.6rem;
}

    footer#site-footer ul .border-right {
        border-right-color: #344054 !important;
    }

    /*footer#site-footer li:not(:first-child) {
    margin-top: 0.8em;
}*/

    footer #site-footer ul li a {
        color: #a7a7a7;
        text-decoration: none;
    }

        footer#site-footer ul li a:hover {
            color: #2a8ded;
        }

footer#site-footer .about p {
    text-align: justify;
    line-height: 2;
    margin: 0;
}

footer#site-footer input,
button {
    font-size: 1em;
    padding: 1em;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 5px;
}

footer#site-footer button {
    background-color: #c7940a;
    color: #ffffff;
}

footer#site-footer div.social {
    display: flex;
    justify-content: space-around;
    font-size: 2.4em;
    flex-direction: row;
    margin-top: 0.5em;
}

footer#site-footer .social i {
    color: #bac6d9;
}


footer#site-footer .footer-menu {
    float: left;
    margin-top: 10px;
}

    footer#site-footer .footer-menu a {
        color: #cfd2d6;
        padding: 6px;
        text-decoration: none;
    }

        footer#site-footer .footer-menu a:hover {
            color: #27bcda;
        }

@media screen and (max-width: 1023px) {
    footer#site-footer .row.primary {
        grid-template-columns: 1fr;
        display: flex;
        margin: unset !important;
    }

    footer#site-footer .column {
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 0 1.2em;
        min-height: 15em;
        row-gap: 2rem;
    }

        footer#site-footer .column:last-child {
            width: 100%;
            display: flex;
            flex-direction: column;
            padding: unset !important;
            min-height: 15em;
            row-gap: 2rem;
        }

    footer#site-footer h3:first-child {
        margin-top: 3rem;
    }
}

#social-icon {
    column-gap: 1rem;
    display: flex;
}

    #social-icon svg {
        cursor: pointer;
    }

.validation-summary-errors ul {
    padding-left: 10px;
    list-style-type: circle;
}

    .validation-summary-errors ul li {
        list-style-type: circle;
    }

.icon-eye {
    background: url('../image/eye-regular.svg') no-repeat;
    width: 20px;
    height: 20px;
}

.icon-eye-slash {
    background: url('../image/eye-slash-regular.svg') no-repeat;
    width: 20px;
    height: 20px;
}
