﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    //user-select: none;
}

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

@font-face {
    font-family: OpenSans-Bold;
    src: url("/fonts/OpenSans-Bold.ttf");
    font-weight: 500;
}

html {
    font-size: 14px;
}

body {
    font-family: OpenSans, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
    color: #000000;
    background-color: #F4F4F4;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #245D7C;
}

h1, h2, h3, h4, h5, h6 {
    color: #000000;
    margin: 10px 0;
}

ul, ol {
    list-style: none;
}

p {
    margin-bottom: 16px;
}

.form-control {
    padding: 10px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
}

/*form Giới hạn tính năng*/
.notify-container {
    min-height: 494px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .notify-container h3.title-gioihan {
        color: red;
        font-weight: 700;
        text-transform: uppercase;
        text-align: center;
    }

    .notify-container p.content-gioihan {
        font-weight: bold;
        text-align: center;
    }
/*END. form Giới hạn tính năng*/

.alert {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.btn {
    padding: 10px 20px;
    line-height: 1.5;
    white-space: nowrap;
    background-color: #fff !important;
    border: 1px solid #245D7C;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #336699;
}

    .btn:hover {
        background-color: #245D7C !important;
        color: #fff !important;
    }

.main.main-login {
    /*background-color: #245D7C;*/
    margin: 50px auto;
}

@media all and (max-width: 576px) {
    .main.main-login {
        margin: 50px;
    }
}

.main .login-box {
    width: 554px;
    min-height: 600px;
    flex-direction: column;
    background-color: #FFFFFF;
    padding: 50px 30px;
    border-radius: 10px;
    margin: 0 auto;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

    .main .login-box .login-header {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }

        .main .login-box .login-header img {
            width: 120px;
            height: 120px;
            margin-bottom: 30px;
        }

        .main .login-box .login-header h2 {
            text-align: center;
            text-transform: uppercase;
            color: #245D7C;
            font-weight: 600;
        }

    .main .login-box .login-inner {
        margin-bottom: 15px;
    }

        .main .login-box .login-inner .form-item {
            width: 60%;
            margin-bottom: 20px;
            text-align: left;
        }

            .main .login-box .login-inner .form-item p {
                margin-bottom: 5px;
            }

            .main .login-box .login-inner .form-item input {
                width: 100%;
            }

.main .btn-login {
    text-transform: uppercase;
    font-weight: 600;
    color: #245D7C;
}

    .main .btn-login:hover {
        color: #FFFFFF;
    }

.header {
    width: 100%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    z-index: 1000;
}

    .header .header-toggle-menu {
        display: none;
    }

@media all and (max-width: 1199px) {
    .header .header-toggle-menu {
        display: flex;
        align-items: center;
        font-size: 24px;
    }
}

@media all and (max-width: 1199px) {
    .header .header-toggle-menu label {
        padding: 4px 12px;
        border: 1px solid #ccc;
    }
}

@media all and (max-width: 1199px) {
    .header .logo-mobile {
        display: flex;
        justify-content: center;
    }
}

.header .logo-mobile .logo-uneti {
    padding: 15px 0;
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile {
        display: none;
    }
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile {
        display: flex;
        order: 1;
    }
}

.header .header__menu-mobile input[type=checkbox] {
    display: none;
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile input[type=checkbox]:checked ~ .list-menu {
        position: fixed;
        top: 0;
        width: 60%;
        height: 100vh;
        left: 0;
        z-index: 100000;
        background-color: #245D7C;
    }
}

.header .header__menu-mobile .list-menu {
    height: 100%;
}

@media all and (max-width: 992px) {
    .header .header__menu-mobile .list-menu {
        display: none;
    }
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu {
        display: block;
        position: absolute;
        left: -100%;
        width: 0;
        transition: left 0.4s linear;
    }
}

.header .header__menu-mobile .list-menu .header-menu {
    display: none;
}

.header .header-menu img {
    width: 20%;
}

@media all and (max-width: 576px) {
    .header .header-menu img {
        width: 35%;
    }
}


@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu .header-menu {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-bottom: -10px;
        color: #fff;
        padding: 12px;
    }
}

.header .header__menu-mobile .list-menu .header-menu .close-menu-mobile {
    font-size: 32px;
    padding: 24px 22px;
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu .header-menu input[type=checkbox]:checked ~ .list-menu {
        left: -100%;
        width: 0;
    }
}

.header .list-menu {
    line-height: 90px;
}

.header .header__menu-mobile .list-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu ul {
        flex-direction: column;
        padding: 8px 20px;
    }
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu ul li {
        border-bottom: 1px solid #fff;
    }

        .header .header__menu-mobile .list-menu ul li:last-child {
            border: none;
        }

        .header .header__menu-mobile .list-menu ul li:hover {
            background-color: #ccc;
        }
}

.header .header__menu-mobile .list-menu ul li a {
    margin-left: 12px;
    padding: 13px 25px;
    color: #000000;
    font-size: 1.14rem;
}

    .header .header__menu-mobile .list-menu ul li a img {
        margin-right: 8px;
    }

.header .list-menu ul li a:hover {
    color: #ffffff;
    background-color: #245D7C;
    border-radius: 32px;
}

@media all and (min-width: 1199px) {
    .header .header__menu-mobile .list-menu ul li a .ico-menu-light {
        display: none;
    }
}

@media all and (max-width: 1199px) {
    .header .header__menu-mobile .list-menu ul li a {
        line-height: 24px;
        padding: 10px;
        color: #fff;
    }

    .header .list-menu ul li a:hover {
        color: #ffffff;
        background-color: transparent;
        border-radius: initial;
    }

    .header .header__menu-mobile .list-menu ul li a .ico-menu-dark {
        display: none;
    }
}

.header .user-profile {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    height: 100%;
}

    .header .user-profile:hover > .profile-action {
        display: block;
    }

@media all and (max-width: 1199px) {
    .header .user-profile .profile-info span {
        display: none;
    }
}

.header .user-profile .profile-info {
    display: flex;
    align-items: center;
}

    .header .user-profile .profile-info span {
        margin-left: 10px;
    }

    .header .user-profile .profile-info .avatar {
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

.header .user-profile .profile-action {
    display: none;
    position: absolute;
    padding: 0;
    top: 80px;
    left: 35%;
    min-width: 240px;
    background-color: #fff;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media all and (max-width: 1199px) {
    .header .user-profile .profile-action {
        left: -8%;
    }
}

.header .user-profile .profile-action li:hover a {
    background-color: #245D7C;
    color: #fff;
}

.header .user-profile .profile-action li a {
    display: block;
    padding: 10px 24px;
}

.header {
    padding: 0 16px;
}

    .header .header__inner .inner--banner {
        padding: 15px 0;
    }

.main .main__inner {
    background-color: #FFFFFF;
    padding: 32px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
}

.main .main__path {
    width: 100%;
}

    .main .main__path::after {
        content: "";
        position: relative;
        display: block;
        width: 100%;
        top: 4px;
        left: 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #000;
    }

    .main .main__path ul {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

        .main .main__path ul li + li::before {
            content: ">>";
            display: inline-block;
            width: 20px;
            height: 20px;
            margin: 0 10px;
        }

        .main .main__path ul li a {
            font-weight: bold;
        }

.main .main-item {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
    border: 1px solid #000;
    border-radius: 16px;
    position: relative;
}

    .main .main-item .item-heading {
        display: flex;
        align-items: center;
    }

        .main .main-item .item-heading img {
            display: inline-block;
            width: 90px;
            height: 90px;
            margin-right: 16px;
        }

        .main .main-item .item-heading h3 {
            display: flex;
            align-items: center;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 20px;
        }

    .main .main-item .item-content::before {
        content: "";
        position: relative;
        display: block;
        width: 100%;
        height: 1px;
        background: #9C9C9C;
        margin-bottom: 10px;
    }

    .main .main-item .item-action {
        position: absolute;
        bottom: 10px;
        right: 10px;
        display: flex;
        justify-content: flex-end;
    }

        .main .main-item .item-action a {
            display: block;
            text-align: center;
            font-weight: bold;
        }

.main {
    position: relative;
    z-index: 90;
    margin-top: 150px;
    background-color: #F4F4F4;
}

    .main h1.uneti-heading {
        text-transform: uppercase;
        font-size: 2.14rem;
        font-weight: 700;
        text-align: center;
        color: #245D7C;
        margin-bottom: 40px;
    }

    .main .list-motcua {
        height: 100%;
    }

        .main .list-motcua a {
            text-decoration: none;
            color: #245D7C;
        }

        .main .list-motcua .item-motcua {
            display: flex;
            align-items: center;
            background-color: #FFFFFF;
            border: 0.5px solid #245D7C;
            border-radius: 10px;
            margin: 20px 0;
            padding: 16px 58px;
            min-height: 200px;
            box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.25);
            position: relative;
        }

            .main .list-motcua .item-motcua:hover {
                background-color: #dddddd;
                color: #000;
            }

            .main .list-motcua .item-motcua > img {
                /*width: 78px;*/
                height: 78px;
                margin-right: 34px;
            }

            .main .list-motcua .item-motcua .content {
                height: 100%;
                width: 100%;
                padding: 0 0 0 50px;
            }

                .main .list-motcua .item-motcua .content::before {
                    content: "";
                    position: absolute;
                    display: block;
                    width: 2px;
                    height: 80%;
                    background: #245D7C;
                    line-height: 50%;
                    top: 14px;
                    left: 30%;
                }

@media all and (max-width: 380px) and (min-width: 576px) {
    .main .list-motcua .item-motcua {
        flex-direction: column;
    }

        .main .list-motcua .item-motcua > img {
            margin: 0;
        }

        .main .list-motcua .item-motcua .content {
            padding: 0;
        }

            .main .list-motcua .item-motcua .content::before {
                width: 80%;
                height: 1px;
                top: 32%;
                left: 10%;
            }
}

@media all and (max-width: 576px) {

    .main .list-motcua .item-motcua {
        flex-direction: column;
    }

        .main .list-motcua .item-motcua > img {
            margin: 0 0 15px 0;
        }

        .main .list-motcua .item-motcua .content {
            padding: 0;
            margin: 15px 0 0 0;
        }

            .main .list-motcua .item-motcua .content::before {
                width: 80%;
                height: 1px;
                line-height: 50%;
                top: 36%;
                left: 10%;
                margin: 20px 0;
            }
}

@media all and (max-width: 576px) and (min-width: 768px) {
    .main .list-motcua .item-motcua .content::before {
        left: 28%;
    }
}

@media all and (min-width: 768px) and (max-width: 991px) {
    .main .list-motcua .item-motcua .content::before {
        left: 20%;
    }
}

@media all and (min-width: 992px) {
    .main .list-motcua .item-motcua .content::before {
        left: 36%;
    }
}

.main .list-motcua .item-motcua .content h2 {
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    color: #245D7C;
}

.main .list-motcua .item-motcua .content .description {
    text-align: center;
    color: #245D7C;
}

.main-form {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000;
    border-radius: 10px;
}

    .main-form h2 {
        text-align: center;
        text-transform: uppercase;
        font-weight: bold;
        margin: 32px 0;
    }

    .main-form .form__inner {
        width: 70%;
        margin: 0 auto;
        display: block;
        margin-top: 18px;
        margin-bottom: 15px;
    }

        .main-form .form__inner .form-item {
            margin-bottom: 15px;
        }

            .main-form .form__inner .form-item span {
                display: inline-block;
                padding: 10px 0;
            }

            .main-form .form__inner .form-item select {
                border: 1px solid #D9D9D9;
                border-radius: 10px;
                padding: 10px 15px;
            }

    .main-form .form-notify {
        margin-bottom: 15px;
    }

    .main-form .btn-submit-form {
        display: block;
        margin: 0 auto;
    }

.footer {
    background-color: #245D7C;
    color: #FFFFFF;
    margin-top: 150px;
}

    .footer .logo-footer {
        display: block;
        width: 80%;
        margin: 0 auto 50px auto;
    }

@media all and (max-width: 767px) {
    .footer .logo-footer {
        width: 30%;
    }
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-bootom {
    padding: 15px;
    background-color: #134156;
}

    .footer .footer-bootom p {
        margin: 0;
        font-weight: 600;
    }

.footer .uneti-address {
    margin-bottom: 50px;
}

    .footer .uneti-address h2 {
        text-transform: uppercase;
        color: #FFFFFF;
        text-align: center;
        font-weight: 700;
    }

    .footer .uneti-address .address-details {
        padding: 0 30px;
    }

        .footer .uneti-address .address-details .addr::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f3c5";
            display: inline-block;
            width: 20px;
            height: 20px;
        }

        .footer .uneti-address .address-details .uneti-contacts {
            display: flex;
        }

            .footer .uneti-address .address-details .uneti-contacts .phone-uneti:nth-child(2) {
                margin-left: 24px;
            }

            .footer .uneti-address .address-details .uneti-contacts .phone-uneti::before {
                font-family: "Font Awesome 6 Free";
                font-weight: 900;
                content: "\f095";
                display: inline-block;
                width: 20px;
                height: 20px;
            }

        .footer .uneti-address .address-details .web-uneti::before {
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f57d";
            display: inline-block;
            width: 20px;
            height: 20px;
        }
/*# sourceMappingURL=style.css.map */
