@import url("https://fonts.googleapis.com/css2?family=Inter&display=swap");
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter var, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI,
        Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji,
        Segoe UI Symbol, Noto Color Emoji;
}

li {
    list-style-type: none;
}

a {
    text-decoration: none;
    color: rgb(107 114 128);
}

:root {
    --red-color: rgb(241 107 107);
    --color-border: rgb(196, 189, 189);
}

body {
    position: relative;
    background: #fafafa;
}

.container {
    max-width: 85rem;
    margin: 0 auto;
}

/*========header pc=========*/
header {
    background: #fff;
}
.header-main header .content {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f8f9fd;
    padding: 16px 0;
}

.header-main header .content > div.logo {
    margin-right: auto;
}

.header-main header .content .search form {
    position: relative;
}
.header-main header .content .search .box__search {
    border-top: 1px solid #ccc8c8;
    position: absolute;
    width: 100%;
    background-color: #f8f9fd;
    border-radius: 0 0 5px 5px;
    box-shadow: 0px 1px 4px #e1d5d5de;
    padding: 5px 10px;
    max-height: 150px;
    overflow-y: scroll;
    display: none;
    z-index: 10;
}
.header-main header .content .search .box__search::-webkit-scrollbar {
    width: 4px;
}
.header-main header .content .search .box__search::-webkit-scrollbar-thumb {
    background: #14a1eb;
    border-radius: 5px;
}

.header-main header .content .search .box__search a {
    padding: 7px 0;
    transition: 0.3s;
    display: block;
}
.header-main header .content .search .box__search li + li {
    border-top: 1px dashed #e1d6d6;
}
.header-main header .content .search .box__search li:hover a {
    color: rgb(245, 166, 21);
}
.header-main header .content .search input[type="text"] {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    outline: none;
    box-sizing: border-box;
    transition: 0.3s;
    padding: 0 10px 0 50px;
    background-color: #f8f9fd;
    font-size: 15px;
    border: 1px solid #e1e1e1;
    color: #585555;
}

.header-main header .content .search input:focus {
    box-shadow: 0px 1px 4px #e1d5d5de;
}

.header-main header .content .search i {
    position: absolute;
    left: 10px;
    color: #999999;
    font-size: 20px;
}

.header-main header .content .search {
    position: relative;
    margin-left: 2rem;
}

.header-main header .content .search .icon__search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    cursor: pointer;
    border: 0;
    background: none;
}
.icon__search .bi-search {
    width: 20px;
    height: 20px;
}

.header-main .content .btn-account {
    display: flex;
    min-width: max-content;
    border-left: 1px solid #ccc;
    padding-left: 2rem;
    margin-left: 2rem;
}
.dropdown {
    position: relative;
}
.dropdown .dropdown-menu {
    width: 270px;
    position: absolute;
    left: -200px;
    font-size: 0.875rem;
    line-height: 22px;
    color: #5c5776;
    box-shadow: 0 10px 30px 0 rgba(31, 45, 61, 0.1);
    background-color: #ffffff;
    border-radius: 0.5rem;
    display: none;
    z-index: 100;
    animation: identifier linear 0.3s;
}
.dropdown:hover > .dropdown-menu {
    display: block;
}
.dropdown .dropdown-menu .user {
    display: flex;
    align-items: center;
    justify-content: start;
    grid-gap: 5px;
    border-bottom: 1px solid #e9e8ec;
    padding: 10px 20px;
}
.dropdown .dropdown-menu .user .name-user h5 {
    font-size: 16px;
}
.dropdown .dropdown-menu .btn-logout {
    padding: 10px 20px;
}
.dropdown .dropdown-menu .btn-logout a {
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    grid-gap: 10px;
}
.dropdown .dropdown-menu .btn-logout a i {
    color: #69696b;
    font-size: 22px;
}
.avatar {
    width: 40px !important;
    height: 40px !important;
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
}
.avatar img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    object-fit: cover;
    border-radius: 50%;
}
.avatar:before {
    content: "";
    position: absolute;
    bottom: -7px;
    right: 9%;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: green;
    display: table;
}

@keyframes identifier {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.header-main .content .btn-account .sign-in a,
.btn-account .sign-up a {
    transition: 0.2s ease-in-out;
    padding: 12px 27px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.875rem;
    font-family: "Roboto", sans-serif;
    /* border: 1px solid #00a7ff; */
    color: #fff;
    border-radius: 5px;

    background: #0066b2;
}
.header-main .content .btn-account .sign-out a {
    padding: 10px 15px;
    margin: 0px 5px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    border: 1px solid #f35555;
    color: #f35555;
    border-radius: 5px;
}

.header-main .content .btn-account .sign-out a:hover {
    box-shadow: 1px 1px 10px 1px #f35555;
    background-color: #f35555;
    color: #ffffff;
}
.header-main .content .btn-account .sign-in a:hover,
.btn-account .sign-up a:hover {
    box-shadow: 1px 1px 7px 1px #00a7ff7a;
    background-color: #00a7ff;
    color: #ffffff;
}

.header-main .navbar {
}

.header-main .navbar .navbar-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
}
.header-main .navbar .navbar-wrap > li {
    margin-left: 2rem;
}
.header-main .navbar .navbar-wrap > li > a {
    font-weight: 600;
    color: #0f172a;
    font-size: 0.875rem;
}
.header-main .navbar .navbar-wrap > li > i {
    font-size: 13px;
    color: #79797a;
    margin-left: 3px;
}
.header-main .navbar .navbar-wrap > li > a:hover {
    color: #00a7ff;
}
.header-main .navbar .navbar-wrap .dropdown-menu {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
}
.header-main .navbar .navbar-wrap .dropdown-menu .dropdown-menu-item {
    position: absolute;
    top: 34px;
    padding: 10px 0px;
    border-radius: 3px;
    box-shadow: 1px 2px 4px 1px #72747426;
    background-color: #ffffff;
    min-width: 250px;
    z-index: 100;
    visibility: hidden;
    animation: fadeInUp ease 0.5s;
    transition: all linear 0.5s;
    display: none;
    width: 100%;
}
.header-main .navbar .navbar-wrap .dropdown-menu:hover .dropdown-menu-item {
    visibility: visible;
    display: block;
    transition-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}
.header-main .navbar .navbar-wrap .nav-item-group {
    min-width: max-content;
}
.header-main .navbar .navbar-wrap .dropdown-menu .dropdown-menu-item li {
    margin: 6px;
    padding: 6px;
    border-left: 2px solid transparent;
    font-size: 14px;
    transition: 0.2s;
}
.header-main .navbar .navbar-wrap .dropdown-menu .dropdown-menu-item li:hover {
    border-left: 2px solid #00a7ff;
}

/*header-mobile*/

.header-mobile {
    display: none;
}

/*footer*/

footer {
    background-color: #13426d;
    padding: 10px;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 30% 30% 40%;
    padding: 5px;
    color: #ffffff;
}

.footer-content img {
    display: inline-block;
    width: 250px;
    height: 101px;
    padding: 10px 0px;
    margin: 15px 5px 10px 5px;
    object-fit: contain;
}

.footer-content h3 {
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    padding: 10px 0px;
    margin: 10px 5px;
}

.footer-content .contact {
    margin: 5px;
    padding: 10px;
}

.footer-content .training-facilities {
    margin: 5px;
    padding: 10px;
}

.footer-content p {
    padding: 5px;
    font-size: 14px;
}

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

.address-item i {
    padding-right: 15px;
}

/* Home page */

/*========homepage=========*/

.myslide {
    position: relative;
    width: 100%;
    background: #2c3e50;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    color: #00a7ff;
    border: none;
    z-index: 10;
    font-size: 30px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: 0.5s;
    cursor: pointer;
}

.slick-arrow:hover {
    color: #ffffff;
    background-color: #00a7ff;
}

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}
.home-page .home-content,
.home-page .slider,
.home-page .content-wrap {
    display: none;
}

.home-page .slider .myslide img {
    width: 100%;
    object-fit: cover;
}
.home-page .slider .slick-dots li button {
    background: #00a7ff;
    color: #fff;
    display: inline-block;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.home-page .slider .slick-dots .slick-active button {
    background: orange !important;
}
.home-page .slider .slick-dots {
    position: absolute;
    bottom: 15px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-content: flex-start;
    width: 100%;
    grid-column-gap: 5px;
}
.home-page .home-content {
    max-width: 85rem;
    margin: 0 auto;
    position: relative;
}

.home-content > .easy-waiting {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    border-radius: 10px;
    padding-top: 100px;
    align-items: center;
}

.easy-waiting > img {
    width: 70px;
}

.product-sub {
    margin: 0 -15px;
}

.product-sub .product-item {
    padding: 0 15px;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.product-sub .product-item .inner {
    border: 1px solid hsl(240, 4%, 91%);
    border-radius: 8px;
    min-width: 200px;
    margin-bottom: 1rem;
    overflow: hidden;
}

@media (min-width: 576px) {
    .product-sub .product-item {
        width: 50%;
    }
}

@media (min-width: 960px) {
    .product-sub .product-item {
        width: 33.3%;
    }
}

@media (min-width: 1280px) {
    .product-sub .product-item {
        width: 25%;
    }
}

.product-sub .product-item .inner:hover {
    box-shadow: 2px 2px 8px 2px #d7d1d1;
}
.product-sub .product-item .inner a > img {
    width: 101%;
    margin: -1px 0 0 -1px;
    display: block;
    border-radius: 8px;
}
.product-sub .product-item .inner a > p {
    margin: 10px 10px;
    font-size: 14px;
    color: #6e6d7a;
}

.product-sub .product-item i {
    font-size: 14px;
    color: #6e6d7a;
}

.product-sub .product-item .custom-2 {
    display: flex;
    justify-content: end;
    margin: 0px 10px 16px 10px;
}

.product-sub .product-item .custom-1 .user {
    display: flex;
    justify-content: space-between;
    margin: 16px 10px 10px 10px;
}

.product-sub .product-item .custom-1 .user p {
    width: 85%;
    margin-top: 5px;
}

.product-sub .product-item .custom-1 p {
    font-weight: bold;
    font-size: 14px;
    color: #0d0c22;
}

.product-sub .product-item .custom-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-sub .product-item .user img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #eee;
    margin-right: 5px;
}

.see-more {
    display: flex;
    justify-content: center;
    margin: 70px;
}

.see-more-v2 {
    display: flex;
    justify-content: center;
    margin: 70px;
}

.see-more button {
    font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 15px;
    border-radius: 6px;
    color: #00a7ff;
    border: 1px solid #00a7ff;
    background-color: #ffffff;
}

.see-more button:hover {
    background-color: #00a7ff;
    color: #ffffff;
    box-shadow: 1px 1px 7px 1px #00a7ff7a;
}

.home-page .content-wrap {
    max-width: 85rem;
    margin: 0 auto;
}

.home-page .content-wrap .section-filter {
    margin: 16px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    grid-column-gap: 40px;
    background: #fff;
    border: 1px solid #f4f4f4;
    padding: 0 10px;
}
.home-page .content-wrap .section-filter .select-category select {
    padding: 0 5px;
    margin: 15px 0;
}

.home-page .content-wrap .section-filter .border-bnt {
    border: 1px solid var(--color-border);
    height: 41px;
    border-radius: 5px;
    outline: none;
    transition: 0.2s;
    cursor: pointer;
}

.home-page .content-wrap .section-filter .border-bnt:hover {
    box-shadow: 1px 1px 8px 0px #d7d1d1;
}

.home-page .content-wrap .section-filter .nav-sub {
    height: min-content;
    display: flex;
    grid-column-gap: 8px;
    padding: 15px 0;
    justify-content: center;
}

.home-page .content-wrap .nav-sub-small {
    display: none;
}

.home-page .content-wrap .nav-sub-small a,
.home-page .content-wrap .section-filter .nav-sub a {
    padding: 10px 15px;
    height: 41px;
    border-radius: 5px;
    transition: 0.2s;
    min-width: max-content;
}

.home-page .content-wrap .nav-sub-small a:hover,
.home-page .content-wrap .section-filter .nav-sub a:hover {
    background-color: #00a7ff;
    color: var(--text-while-color);
}

.home-page .content-wrap .nav-sub-small .active,
.home-page .content-wrap .section-filter .nav-sub .active {
    background-color: #00a7ff;
    color: var(--text-while-color);
}

.home-page .content-wrap .section-filter .filter button {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 14px;
    justify-content: space-between;
    background: none;
    height: 41px;
    margin: 15px 0;
    padding: 0 10px;
}

.home-page .content-wrap .section-filter .filter button span {
    height: max-content;
}

.home-page .content-wrap .section-filter .filter button img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    padding-right: 5px;
}

.home-page .content-wrap .click-filter {
    display: none;
}

.home-page .content-wrap .action {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    margin: 30px 0;
}

.home-page .content-wrap .click-filter .form label {
    font-size: 16px;
    color: #2d3748;
}

.home-page .content-wrap .click-filter .form select {
    width: 100%;
    border: 1px solid var(--color-border);
    margin: 10px 0;
    height: 41px;
    border-radius: 5px;
    outline: none;
    transition: 0.2s;
    cursor: pointer;
}

@media (max-width: 1120px) {
    /*==========Responsive homepage============*/
    .product-sub {
        column-gap: 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .home-page .content-wrap .section-filter {
        grid-column-gap: 30px;
    }
    .home-page .content-wrap .section-filter .nav-sub {
        overflow-y: hidden;
        text-align: center;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-scrollbar {
        height: 4px;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-scrollbar-thumb {
        background: #c4c4c4;
        border-radius: 5px;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-resizer {
        width: 5px;
    }
    .home-page .content-wrap .section-filter .nav-sub a {
        min-width: max-content;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    /*==========Homepage============*/
    .home-page .content-wrap .click-filter {
        grid-template-columns: repeat(2, 1fr);
    }
    .home-page .content-wrap .nav-sub-small {
        display: flex;
        grid-gap: 10px;
        margin: 0 auto;
    }
    .home-page .content-wrap .nav-sub-small {
        overflow-y: hidden;
        text-align: center;
        padding: 15px 0;
    }
    .home-page .content-wrap .nav-sub-small a {
        min-width: max-content;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
    .home-page .content-wrap .nav-sub-small::-webkit-scrollbar {
        height: 4px;
    }
    .home-page .content-wrap .nav-sub-small::-webkit-scrollbar-thumb {
        background: #c4c4c4;
        border-radius: 5px;
    }
    @-webkit-keyframes posi3 {
        from {
            top: 20%;
        }
        to {
            top: 40%;
        }
    }
    @keyframes posi3 {
        from {
            top: 20%;
        }
        to {
            top: 40%;
        }
    }
}

@media (max-width: 500px) {
    /*==========Homepage============*/
    .product-sub {
        column-gap: 20px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }
    .home-page .home-content .product-sub {
        columns: 1;
        column-gap: 20px;
    }
    .home-page .content-wrap .click-filter {
        grid-template-columns: repeat(1, 1fr);
    }
    @-webkit-keyframes posi3 {
        from {
            top: 30%;
        }
        to {
            top: 40%;
        }
    }
    @keyframes posi3 {
        from {
            top: 30%;
        }
        to {
            top: 40%;
        }
    }
    .prev,
    .next {
        font-size: 20px;
    }
}

/* == END == */

/*==========================DETAIL==========================*/

.detail .detail__product .detail__product__view {
    display: grid;
    grid-template-columns: 50% auto;
    grid-gap: 30px;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product_img
    .slideshow_gallery
    .mySlides
    img {
    vertical-align: middle;
    object-fit: cover;
    height: 550px;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product_img
    .slideshow_gallery
    .mySlides
    iframe {
    width: 100%;
    height: calc(0.5625 * 100vw);
    height: 550px;
    outline: none;
    border: none;
    vertical-align: middle;
    object-fit: cover;
}
.detail .detail__product .detail__product__view .detail__product_img .slideshow_gallery .img-small {
    display: flex;
    margin: 5px 0;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product_img
    .slideshow_gallery
    .img-small
    .column {
    display: flex;
    height: 100px;
    margin: 0 5px;
    cursor: pointer;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product_img
    .slideshow_gallery
    .img-small
    .column
    img {
    object-fit: cover;
}

.detail .detail__product {
    background-image: linear-gradient(180deg, hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 100%, 0));
    margin-top: 30px;
    padding: 20px;
    background: #fff;
    border: 1px solid #f4f4f4;
}

.detail .detail__product .detail__product__view .detail__product__infor p {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #363434;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__name h4 {
    font-size: 1.875rem;
    color: #2d3748;
    font-weight: 500;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__appraise {
    display: flex;
    grid-gap: 10px;
    margin: 20px 0;
    align-items: center;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__star,
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__info {
    border-right: 1px solid #e1e1e1;
    padding: 5px 15px 5px 0;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__star
    i {
    color: #e81224;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__info
    span {
    text-decoration: underline;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__info
    p {
    font-size: 16px;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__appraise
    .detail__product__appraise__view {
    padding: 5px 15px 5px 0;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__scores {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 20px !important;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__scores p,
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__scores
    span {
    font-size: 1rem;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__scores
    span {
    color: #f35555;
}
.detail .detail__product .detail__related__product .detail__related__product__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    grid-gap: 20px;
}
.detail .detail__product .detail__related__product .detail__related__product__heading .line {
    border-top: 1px solid #e1e1e1;
    width: 25%;
}
.detail .detail__product .detail__related__product .detail__related__product__heading h4 {
    font-size: 20px;
    color: #2d3748;
    width: 50%;
    text-align: center;
}
.detail__product__member p {
    margin-bottom: 12px;
}
.teams {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    margin-bottom: 20px;
    list-style-position: inside;
}
.teams__member {
    color: rgb(107 114 128);
    font-size: 0.85rem;
    line-height: 30px;
    list-style-type: disc;
}
.evaluation-criteria p {
    margin-bottom: 12px;
}
.evaluation-criteria table {
    width: 100%;
    font-size: 0.85rem;
    text-align: left;
}
.evaluation-criteria th {
}
.evaluation-criteria th {
    font-weight: 500;
    border-radius: 2px 2px 0 0;
    background: #f1f1f1;
    padding: 12px 20px;
}
.evaluation-criteria td {
    padding: 12px 20px;
}

@media (max-width: 960px) {
    .detail .detail__product .detail__product__view {
        display: block;
    }
    .detail .detail__product .detail__product__view .detail__product__infor {
        margin: 20px 0;
    }
}
@media (max-width: 600px) {
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        img {
        max-height: 450px;
        min-height: 400px;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        iframe {
        max-height: 500px;
        min-height: 450px;
    }
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__scores,
.detail .detail__product .detail__product__view .detail__product__infor .detail__product__course,
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__specialized,
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__subject-code,
.detail .detail__product .detail__product__view .detail__product__infor .detail__product__semester,
.detail .detail__product .detail__product__view .detail__product__infor .detail__product__teacher,
.detail .detail__product .detail__product__view .detail__product__infor .detail__product__share,
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__published {
    margin: 15px 0;
    font-size: 18px;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__teacher {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
}
.detail__product__teacher {
    margin-bottom: 20px !important;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__teacher
    button {
    background: #13426d;
    border: 1px black;
    color: #fff;
    border-radius: 5px;
    width: 100px;
    height: 25px;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
}

.btn-view-document {
    background: #13426d;
    border: 1px black;
    color: #fff;
    border-radius: 5px;
    width: 100px;
    height: 25px;
    cursor: pointer;
    position: relative;
    margin-left: 10px;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__teacher
    button:hover {
    opacity: 0.9;
}
.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__teacher
    button::before {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 1px rgba(0, 0, 0, 0.25);
    content: "";
    height: 6px;
    left: 10px;
    position: absolute;
    width: 6px;
    top: 10px;
}

.detail .detail__product .detail__product__view .detail__product__infor .detail__product__document {
    margin-top: 20px;
}

.detail
    .detail__product
    .detail__product__view
    .detail__product__infor
    .detail__product__share
    a
    i {
    font-size: 16px;
    margin: 0 5px;
}

.detail .detail__product .detail__product__custom .btn-slide {
    display: flex;
    justify-content: flex-start;
}

.detail .detail__product .detail__product__custom .btn-slide h4 {
    font-size: 20px;
    margin: 20px;
    cursor: pointer;
    color: #2d3748;
}
.detail .detail__product .detail__product__custom .btn-slide .active {
    background: #00a7ff;
    color: #fff;
    transition: 0.3s;
}
.detail .detail__product .detail__product__custom .btn-slide .active:hover {
    opacity: 0.9 !important;
}
.detail .detail__product .detail__product__custom .btn-slide h4 {
    font-size: 20px;
    margin: 5px;
    cursor: pointer;
    color: #2d3748;
    padding: 10px 15px;
    border-radius: 5px;
    transition: 0.3s;
}

.detail .detail__product .detail__product__custom .btn-slide h4:hover {
    background: #00a7ff;
    color: #fff;
}

.detail .detail__product .detail__product__custom .detail__product__slides {
    line-height: 25px;
    color: #606060;
}

.detail .detail__product .detail__product__custom {
    margin: 40px 0;
    padding: 40px 0;
}

.detail .detail__product .detail__product__custom .tab_comments {
    grid-template-columns: 40% auto;
    margin: 30px;
}

.detail .detail__product .detail__related__product .detail__related__product__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    grid-gap: 20px;
}

.detail .detail__product .detail__related__product .detail__related__product__heading .line {
    border-top: 1px solid #e1e1e1;
    width: 25%;
}

.detail .detail__product .detail__related__product .detail__related__product__heading h4 {
    font-size: 25px;
    color: #2d3748;
    width: 50%;
    text-align: center;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment {
    padding-right: 10px;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment h5,
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment__form h5 {
    font-size: 14px;
    color: #79797a;
}
/* ----------- box comment ----- */
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment {
    padding-right: 10px;
}
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment h5,
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment__form h5 {
    font-size: 14px;
    color: #79797a;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user {
    margin: 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid #c4c4c4a3;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user {
    display: flex;
    align-items: center;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name {
    font-weight: bold;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name
    .user__rating {
    margin-top: -5px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name
    .user__rating
    i {
    color: #e81224;
    font-size: 13px !important;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .comment {
    margin: 10px 0 0 40px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .box-detail__product__comment {
    max-height: 400px;
    overflow-y: scroll;
    border: 1px solid #d9dee1;
    border-radius: 5px;
    padding: 0 20px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .box-detail__product__comment::-webkit-scrollbar {
    width: 4px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .box-detail__product__comment::-webkit-scrollbar-thumb {
    background: #14a1eb;
    border-radius: 5px;
}

/* .detail
  .detail__product
  .detail__product__custom
  .comments
  .detail__product__comment
  .animate_drop_down {
    animation: animate_drop_down ease 1.4s;
    transition: all linear 0.4s;
}
@keyframes animate_drop_down {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .box-show-rating
    .heart
    i {
    color: #e81224;
    font-size: 20px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .box-show-rating
    .heart
    i
    + i {
    padding-left: 2px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account {
    text-align: center;
    margin: 30px 0;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account
    p {
    font-size: 18px;
    margin: 20px 0;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account
    a {
    text-align: center;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account
    .sign-in
    a {
    letter-spacing: 1px;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    color: #00a7ff;
    border: 1px solid #00a7ff;
    background-color: #ffffff;
}
.detail
    .detail__product
    .detail__product__custom
    .comments
    .detail__product__comment__form
    .btn-account
    .sign-in
    a:hover {
    box-shadow: 1px 1px 7px 1px #00a7ff7a;
    background-color: #00a7ff;
    color: #ffffff;
}
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment p {
    font-size: 14px;
    color: #606060;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination {
    display: flex;
    justify-content: end;
    align-items: center;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    i {
    font-size: 16px;
    border: 1px solid #e1e1e1;
    padding: 6px;
    margin: 0 5px;
    cursor: pointer;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    .number {
    width: 120px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 10px;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    .number
    span {
    font-size: 16px;
    padding: 5px 8px;
    /* background-color: #f35555; */
    color: #606060;
    border-radius: 5px;
    cursor: pointer;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .rating {
    margin: 20px 0;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item {
    margin: 20px 0;
}
.detail
    .detail__product
    .detail__product__custom
    .comments
    .detail__product__comment__form
    .comment-form-item
    textarea {
    width: 100% !important;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    padding: 10px;
    outline: none;
    transition: 0.2s;
}
.detail
    .detail__product
    .detail__product__custom
    .comments
    .detail__product__comment__form
    .comment-form-item
    textarea:focus {
    box-shadow: 0px 2px 8px #b3b3b38c;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button {
    letter-spacing: 1px;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    color: #00a7ff;
    border: 1px solid #00a7ff;
    background-color: #ffffff;
    cursor: pointer;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button:hover {
    background-color: #00a7ff;
    color: #ffffff;
    box-shadow: 1px 1px 8px 0px #00a7ff;
}
/*  */

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user {
    margin: 20px 0;
    padding: 10px 0;
    border-bottom: 1px solid #c4c4c4;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user {
    display: flex;
    align-items: center;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 5px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name {
    font-weight: bold;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name
    .user__rating {
    margin-top: -5px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name
    .user__rating
    i {
    font-size: 13px !important;
    color: #e81224;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .user
    .user__name
    .user__rating
    .rating_empty {
    color: #8f8f8f;
    font-size: 14px;
    font-weight: 400;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .animate_drop_down {
    animation: animate_drop_down ease 1.4s;
    transition: all linear 0.4s;
}

@keyframes animate_drop_down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* .detail .detail__product .detail__product__custom .tab_comments .detail__product__comment .box-detail__product__comment {
    height: 500px;
    overflow-y: scroll;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment .box-detail__product__comment::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment .box-detail__product__comment::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px #00a7ff;
    background-color: #00a7ff;
} */

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .rating-item
    i {
    color: #e81224;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .box-rating
    .heart
    i {
    color: #e81224;
    font-size: 20px;
    padding-left: 7px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .detail__product__comment__user
    .comment {
    margin: 10px 0 0 40px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account {
    text-align: center;
    margin: 30px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account
    p {
    font-size: 18px;
    margin: 20px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .btn-account
    a {
    text-align: center;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment p {
    font-size: 14px;
    color: #606060;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination {
    display: flex;
    justify-content: end;
    align-items: center;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    i {
    font-size: 16px;
    border: 1px solid #e1e1e1;
    padding: 6px;
    margin: 0 5px;
    cursor: pointer;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    .number {
    width: 120px;
    height: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-top: 10px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment
    .pagination
    .number
    span {
    font-size: 16px;
    padding: 5px 8px;
    /* background-color: #f35555; */
    color: #606060;
    border-radius: 5px;
    cursor: pointer;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .rating {
    margin: 20px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item {
    margin: 20px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    textarea {
    width: 100% !important;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
    padding: 10px;
    outline: none;
    transition: 0.2s;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    .error {
    border: 1px solid #f9303075;
    box-shadow: 0px 0px 7px #ff000069 !important;
}
.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    #messger_error {
    color: #e81224;
    font-style: italic;
    font-size: 13px;
    display: block;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    textarea:focus {
    box-shadow: 0px 2px 8px #b3b3b38c;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button {
    letter-spacing: 1px;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    color: #00a7ff;
    border: 1px solid #00a7ff;
    background-color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button:hover {
    background-color: #00a7ff;
    color: #ffffff;
    box-shadow: 1px 1px 8px 0px #00a7ff;
}

.detail .detail__product .detail__related__product .detail__related__product__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    grid-gap: 20px;
}

.detail .detail__product .detail__related__product .detail__related__product__heading .line {
    border-top: 1px solid #e1e1e1;
    width: 25%;
}

.detail .detail__product .detail__related__product .detail__related__product__heading h4 {
    font-size: 25px;
    color: #2d3748;
    width: 50%;
    text-align: center;
}

@media (max-width: 960px) {
    .detail .detail__product .detail__product__view {
        display: block;
    }
    .detail .detail__product .detail__product__view .detail__product__infor {
        margin: 20px 0;
    }
}

@media (max-width: 600px) {
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        img {
        max-height: 450px;
        min-height: 400px;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        iframe {
        max-height: 500px;
        min-height: 450px;
    }
}

@media (max-width: 350px) {
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        img {
        max-height: 250px;
        min-height: 200px;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product_img
        .slideshow_gallery
        .mySlides
        iframe {
        max-height: 300px;
        min-height: 250px;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product__infor
        .detail__product__appraise {
        display: flex;
        flex-wrap: wrap;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product__infor
        .detail__product__appraise
        .detail__product__appraise__star {
        width: 100%;
        border: none;
    }
    .detail .detail__product .detail__product__custom .btn-slide h4 {
        font-size: 20px;
        margin: 5px !important;
        padding: 5px !important;
    }
}

.detail .detail__product .detail__product__custom .detail__product__slides {
    line-height: 25px;
    color: #606060;
}

.detail .detail__product .detail__product__custom {
    margin: 40px 0;
    padding: 40px 0;
}

.detail .detail__product .detail__product__custom .tab_description {
    margin-top: 30px;
}

.detail .detail__product .detail__product__custom .tab_comments {
    grid-template-columns: 40% auto;
    margin: 30px;
    display: none;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment h5,
.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment__form h5 {
    font-size: 16px;
    color: #79797a;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment p {
    font-size: 14px;
    color: #606060;
}

.detail .detail__product .detail__product__custom .tab_comments .detail__product__comment__form {
    font-size: 14px;
    padding-top: 20px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .rating {
    margin: 20px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item {
    margin: 20px 0;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    textarea {
    width: 100% !important;
    border: 1px solid #e1e1e1;
    border-radius: 3px;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button {
    letter-spacing: 1px;
    padding: 12px 15px;
    margin: 10px 0;
    border-radius: 6px;
    color: #00a7ff;
    border: 1px solid #00a7ff;
    background-color: #ffffff;
}

.detail
    .detail__product
    .detail__product__custom
    .tab_comments
    .detail__product__comment__form
    .comment-form-item
    button:hover {
    background-color: #00a7ff;
    color: #ffffff;
    box-shadow: 1px 1px 8px 0px #00a7ff;
}

.detail .detail__product .detail__related__product .detail__related__product__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    grid-gap: 20px;
}

.detail .detail__product .detail__related__product .detail__related__product__heading .line {
    border-top: 1px solid #e1e1e1;
    width: 25%;
}

.detail .detail__product .detail__related__product .detail__related__product__heading h4 {
    font-size: 25px;
    color: #2d3748;
    width: 50%;
    text-align: center;
}

@media (max-width: 960px) {
    .detail .detail__product .detail__product__view {
        display: block;
    }
    .detail .detail__product .detail__product__view .detail__product__infor {
        margin: 20px 0;
    }
}

@media (max-width: 350px) {
    .detail
        .detail__product
        .detail__product__view
        .detail__product__infor
        .detail__product__appraise {
        display: flex;
        flex-wrap: wrap;
    }
    .detail
        .detail__product
        .detail__product__view
        .detail__product__infor
        .detail__product__appraise
        .detail__product__appraise__star {
        width: 100%;
        border: none;
    }
    .detail .detail__product .detail__product__custom .btn-slide h4 {
        font-size: 20px;
        margin: 5px !important;
        padding: 5px !important;
    }
}

.custom-detail .comment .user .appraise i {
    font-size: 14px;
}

.custom-detail .comment .form-comment {
    box-sizing: border-box;
    margin: 5px 0 20px;
}

.custom-detail .comment .form-comment textarea {
    width: 100%;
    margin: 10px 0;
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 20px;
}

.custom-detail .comment .form-comment .btn-comment {
    display: flex;
    justify-content: end;
}

.custom-detail .comment .form-comment .btn-comment button {
    background-color: #ffffff;
    border: 1px solid #f26f21;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.custom-detail .comment .form-comment .btn-comment button:hover {
    color: #ffffff;
    background-color: #f26f21;
    transition: 0.3s;
}

.custom-detail .information .owner {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 10px 15px 10px 30px;
    margin: 10px 0 20px 0;
}

.custom-detail .information .owner h4 {
    font-size: 18px;
}

.custom-detail .information .owner .owner-name {
    display: flex;
    margin: 10px 0 0;
}

.custom-detail .information .owner .owner-name h6 {
    font-size: 15px;
    margin-bottom: 5px;
}

.custom-detail .information .owner .owner-name p {
    font-size: 14px;
}

.custom-detail .information .owner .owner-name .img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.custom-detail .information .owner .owner-name img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.custom-detail .information .project {
    border: 1px solid #c4c4c4;
    border-radius: 5px;
    padding: 15px 15px 15px 30px;
    margin: 10px 0;
}

.custom-detail .information .project h6 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.custom-detail .information .project p,
span {
    font-size: 0.85rem;
    color: rgb(107 114 128);
}

@media (max-width: 1120px) {
    .detail-page .detail {
        display: block;
    }
    .content-detail {
        margin: 50px 0 0 0 !important;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .custom-detail {
        display: block;
    }
    .custom-detail .information {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
    }
    .custom-detail .information .owner {
        margin: 10px 0;
    }
    .custom-detail .information .project {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .custom-detail .information {
        display: block;
    }
}

@media (max-width: 500px) {
    .content-detail {
        margin: 30px 0 0 0 !important;
        display: block;
    }
}

/* rating hand   */

.detail .rating {
    margin: 50px auto;
    width: 200px;
}

.detail .rating > * {
    float: right;
}

@keyframes pulse {
    50% {
        text-shadow: 0 0 15px #fffb09b6;
    }
}

.detail .rating label {
    height: 40px;
    width: 20%;
    display: block;
    position: relative;
    cursor: pointer;
}

.detail .rating label:nth-of-type(5):after {
    animation-delay: 0.25s;
}

.detail .rating label:nth-of-type(4):after {
    animation-delay: 0.2s;
}

.detail .rating label:nth-of-type(3):after {
    animation-delay: 0.15s;
}

.detail .rating label:nth-of-type(2):after {
    animation-delay: 0.1s;
}

.detail .rating label:nth-of-type(1):after {
    animation-delay: 0.05s;
}

.detail .rating label:after {
    transition: all 0.4s ease-out;
    -webkit-font-smoothing: antialiased;
    position: absolute;
    content: "🤍";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 30px;
    animation: 1s pulse ease;
}

.detail .rating label:hover:after {
    text-shadow: 0 0 15px #fffb09b6;
}

.detail .rating input {
    display: none;
}

.detail .rating input:checked + label:after,
.detail .rating input:checked ~ label:after {
    content: "❤️";
    text-shadow: 0 0 10px #c6bdffab;
}

/*  */

/* == end == */

/*ADD NEW PROJECT*/

.main-content {
    margin: 100px 0px;
}

.add-project {
    display: grid;
    grid-template-columns: 50% 50%;
}

.main-content h2 {
    font-weight: bold;
    font-size: 30px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 40px;
}

.form-add {
    margin: 10px 20px;
}

.form-add label {
    color: #53575a;
    margin: 0px 2px;
}

.student-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.student-item .student-name {
    width: 60%;
}

.student-item .student-code {
    width: 30%;
    margin: 0px 10px;
    color: #6c757d;
}

.student-item button {
    width: 60px;
    height: 38px;
    background: #0066b2;
    color: #ffffff;
    padding: 11px 20px;
    border-radius: 5px;
    border: none;
}

.show-img {
    margin: 10px;
}

.show-img .notify-warning {
    font-style: italic;
    font-size: 13px;
    color: #eb3a3a;
    padding: 5px 10px;
}

.show-img input[type="file"]::file-selector-button {
    padding: 10px 18px;
    height: 38px;
    border-radius: 5px;
    border: 1px solid #ed8936;
    color: #ed8936;
    cursor: pointer;
    transition: 0.2 all;
    background-color: #ffffff;
}

/* định sửa file */

.create-project-page .form-add input:disabled {
    background-color: #dbdbdb;
    color: #383636;
    border: none !important;
    box-shadow: none;
}

.main-content .btn-add,
.create-project-page .student-item .bnt-delete-student-sub:hover {
    text-shadow: 1px 1px 1px #b96636bd;
}

.main-content .btn-add,
.create-project-page .student-item #bnt_add_member {
    cursor: pointer;
    transition: 0.2s;
}

.main-content .btn-add:hover,
.create-project-page .student-item #bnt_add_member:hover {
    opacity: 0.9;
    box-shadow: 0px 1px 3px rgb(156 155 155);
}

.create-project-page .student-item {
    animation: slideInLeft ease 0.3s, slideOutRight linear 1s 4s forwards;
    transition: all linear 0.4s;
    margin: 10px 0;
}

@keyframes slideInLeft {
    from {
        transform: translateX(calc(100% + 32px));
        opacity: 0;
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 1;
    }
    to {
        transform: translateX(-calc(100% + 32px));
        opacity: 0;
        transform: translateX(0);
    }
}

.create-project-page .add-project .form-group {
    margin-bottom: 5px;
    position: relative;
}

.create-project-page .add-project .form-group .char_count {
    position: absolute;
    top: 0;
    right: 0;
}

.create-project-page .add-project .form-group .form-message,
.create-project-page .student .form-message,
.create-project-page .show-img .upload_document .form-message {
    color: #eb3a3a;
    font-size: 13px;
    font-style: italic;
    padding-left: 10px;
}
.create-project-page .show-img .upload_document .show_document {
    display: block;
    border: 2px dashed #cbd5e0;
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
    height: 38px;
    color: #2b2d2e;
    outline: none;
    transition: 0.2s;
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.create-project-page .show-img .upload_document .show_document span {
    flex: 1;
    transition: 0.3s;
    cursor: pointer;
}
.create-project-page .show-img .upload_document .show_document span:hover {
    color: orange;
}
.create-project-page .show-img .upload_document .show_document button {
    background: none;
    border: none;
    cursor: pointer;
}
.create-project-page .show-img .upload_document .show_document button i {
    padding: 2px;
    font-size: 20px;
    color: #db3333;
    transition: 0.3s;
}
.create-project-page .show-img .upload_document .show_document button :hover i {
    text-shadow: 1px 1px 3px #816f6fab;
}
.create-project-page .form-add input,
.create-project-page .form-add select {
    display: block;
    border: 1px solid #cbd5e0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    margin-top: 5px;
    color: #2b2d2e;
    outline: none;
    transition: 0.2s;
}

.create-project-page .form-add input:hover,
.create-project-page .form-add .tox-tinymce:hover,
.create-project-page .form-add select:hover {
    border: 1px solid #21b4e7bd;
}

.create-project-page .form-add .invalid {
    border: 1px solid #f38282;
}

.create-project-page .form-add input:focus,
.create-project-page .form-add .tox-tinymce:hover,
.create-project-page .form-add select:focus {
    box-shadow: 0px 1px 3px #f2712561;
}

.create-project-page .form-add .tox-tinymce {
    margin: 10px 0;
}

.create-project-page .student .notification {
    color: var(--red-color);
    font-size: 15px;
    font-style: italic;
}

.create-project-page .student-sub .student-item button {
    background: none !important;
    color: var(--red-color);
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.create-project-page .inp-choose-file input {
    margin: 10px 0px;
}

.create-project-page .inp-choose-file label {
    display: block;
    color: #53575a;
    margin: 0 2px;
}

.create-project-page .inp-choose-file label i {
    font-size: 15px;
}

.create-project-page .upload__img-wrap .image-empty {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    text-align: center;
    line-height: 300px;
    border: 2px dashed rgba(192, 190, 190, 0.933);
    display: block;
    cursor: pointer;
    color: #a39a9a;
}

.create-project-page .box-over-right {
    color: #f38282;
    font-size: 15px;
    margin-top: 5px;
}

.create-project-page .over-right {
    right: 0;
    bottom: 0;
    left: 0;
    top: 0;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #6464641f;
    z-index: 1000;
}

.create-project-page .over-right .over-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgb(0, 0, 0);
}

.create-project-page .over-right p {
    display: inline;
    padding-left: 10px;
    text-shadow: 0px 1px 4px #2e2758;
    color: #fff;
}

.create-project-page .form-add .tox-tinymce {
    border-radius: 10px;
    transition: 0.2s;
}

.create-project-page .over-right img {
    width: 60px;
}

.create-project-page .show-img .notification-image {
    color: var(--red-color);
    font-size: 15px;
    font-style: italic;
    padding-top: 7px;
}

.create-project-page .show-img .box-img-item {
    display: inline-block;
    position: relative;
}

.create-project-page .upload__img-box .loading-delete {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.create-project-page .upload__img-box .loading-delete span {
    color: #fff;
    padding-top: 10px;
    text-shadow: -1px 0px 1px #242424;
}

.create-project-page .upload__box {
    margin: 20px 0px;
    display: grid;
}

.create-project-page .upload__inputfile {
    display: none;
}

.create-project-page .upload__btn {
    display: inline-block;
    border: 1px solid #ed8936;
    text-align: center;
    padding: 10px 18px;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 5px;
    font-size: 13px;
    color: #ed8936;
}

.create-project-page .upload__btn:hover {
    box-shadow: 0px 1px 5px #ed89367a;
    transition: all 0.3s ease;
}

.create-project-page .upload__btn-box span {
    font-size: 14px;
}

.create-project-page .upload__img-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 40px -10px 0 -10px;
}

.create-project-page .upload__img-box {
    width: calc(100% / 3);
    padding: 0 10px;
    margin-bottom: 12px;
}

.create-project-page .upload__img-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.create-project-page .upload__img-close:after {
    content: "\2716";
    font-size: 14px;
    color: white;
}
.create-project-page .show-img .upload_document {
    margin-bottom: 5px;
}
.create-project-page .show-img .upload_document input {
    margin-top: 5px;
    display: block;
}
.create-project-page .show-img .upload_document label {
    display: block;
}

.create-project-page .img-bg {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-bottom: 100%;
    height: 150px;
    border-radius: 10px;
}

.create-project-page .loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 35px;
    height: 35px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-left: 21px;
}

.create-project-page #box_load {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    grid-column-gap: 10px;
}

.create-project-page .box-bnt-submit .btn-add {
    display: flex;
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 14px;
    transition: 0.2s;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 5px;
}

.create-project-page .box-bnt-submit .bnt-history-back {
    display: flex;
    padding: 15px;
    border: none !important;
    font-size: 14px;
    transition: 0.2s;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    grid-column-gap: 5px;
}

.create-project-page .box-bnt-submit .bnt-history-back:hover {
    text-shadow: 0px 1px 2px rgb(177 170 170);
}

.create-project-page .box-bnt-submit .bnt-history-back i,
.create-project-page .box-bnt-submit .btn-add i {
    font-size: 20px;
}

.main-content .btn-add {
    background: #0066b2;
    color: #ffffff;
}

.create-project-page .box-bnt-submit {
    display: flex;
    grid-column-gap: 10px;
}

/* Safari */

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* modal */

/* CSS Document */

.box-modal section.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
}

.box-modal section.modalWindow {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    z-index: 999 !important;
}

.box-modal section.modal.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    z-index: 997;
    cursor: pointer;
    background: none !important;
}

.box-modal section.modalWindow section.modalWrapper {
    padding: 10px;
    text-align: left;
    line-height: 20px !important;
    width: 500px;
    min-height: 200px;
    margin-left: -300px;
    cursor: default;
    border-radius: 10px;
    background-color: #f5f5f5;
    box-shadow: 3px 5px 4px 0px #b9b0b042;
}

.box-modal section.modalWindow section.modalWrapper h2 {
    border-bottom: 1px solid #cfcfcf;
    font-size: 17px;
    text-align: left;
    margin: 0;
    padding: 10px 0px;
    line-height: unset;
}

.box-modal section.modalWindow section.modalWrapper p {
    padding: 10px 0;
    line-height: 30px;
    font-size: 15px;
}

.box-modal section.modalWindow section.modalWrapper .content-rating {
    text-align: center;
    margin-top: 20px;
}

.box-modal section.modalWindow section.modalWrapper .content-rating p {
    font-size: 24px;
    text-align: center;
}

.bnt-close-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: center;
    line-height: 24px;
    z-index: 1;
    cursor: pointer;
}

.bnt-close-img::after {
    content: "\2716";
    font-size: 14px;
    color: white;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    grid-column-gap: 20px;
    align-items: center;
    margin: 20px 0;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-danger {
    background-color: #ed5656;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-success {
    background-color: #0066b2;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-close-modal {
    background-color: #363738;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-close-modal {
    position: unset !important;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-modal {
    padding: 10px 15px !important;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px !important;
}

.box-modal section.modalWindow section.modalWrapper .box-bnt-modal .bnt-modal:hover {
    opacity: 0.9;
}

.box-modal .closeBtn {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    padding: 10px;
    font-size: 25px;
}

.box-modal .modalWrapper .success-notify img {
    width: 65px;
}

.box-modal .modalWrapper .success-notify {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.box-modal .modalWrapper .success-notify span {
    margin: 10px;
    font-size: 15px;
}

/*  */

.main-successful .main-successful-grid {
    display: flex;
}

.main-successful .main-successful-grid .main-successful-content {
    flex: 1;
}

.main-successful .main-successful-grid .aside-left {
    position: relative;
    width: calc(100% / 2);
    min-width: 320px;
    max-width: 350px;
}

.main-successful .main-successful-grid .aside-left img {
    width: 100%;
    height: 768px;
    object-fit: cover;
}

.main-successful .main-successful-grid .aside-left h3 {
    position: absolute;
    top: 20px;
    font-size: 28px;
    padding: 20px 65px;
    line-height: 60px;
    font-family: "Inter", sans-serif;
    color: #ffffff;
    width: 100%;
    text-shadow: 0px 2px 4px #484747;
}

.main-successful .main-successful-grid .main-successful-content-box {
    margin: 50px 20px;
}

.main-successful .main-successful-grid .main-successful-content-box img {
    width: 100px;
    display: block;
    margin: auto;
}

.main-successful .main-successful-grid .main-successful-content-box .notify-success {
    text-align: center;
    padding: 20px 50px;
}

.main-successful .main-successful-grid .main-successful-content-box .notify-success p {
    margin-top: 30px;
    line-height: 40px;
    font-size: 14px;
}

.main-successful .main-successful-content-box .bnt-direction {
    display: flex;
    justify-content: center;
    grid-column-gap: 20px;
}

.main-successful .main-successful-content-box .bnt-direction a {
    padding: 13px 20px;
    border-radius: 5px;
    transition: 0.2s;
    color: #fff;
}

.main-successful .main-successful-content-box .bnt-direction a:hover {
    opacity: 0.9;
}

.main-successful .main-successful-content-box .bnt-direction .bnt-direction-edit {
    background-color: rgb(238, 162, 22);
}

.main-successful .main-successful-content-box .bnt-direction .bnt-direction-home {
    background-color: rgb(20, 130, 219);
}

/*  */

/* 404 page */

.main-successful .main-error-content .notify-error {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.main-successful .main-error-content .notify-error img {
    width: 65%;
    min-width: 250px;
    margin-bottom: 50px;
}

/*  */

@media (max-width: 768px) {
    .main-successful .main-successful-grid .aside-left {
        display: none;
    }
    .main-successful .main-successful-grid .main-successful-content-box .notify-success {
        padding: 20px;
    }
}

.copy-right-page {
    line-height: 45px;
}

.copy-right-page {
    margin-top: 50px !important;
}

/*Responsive*/

/*PC*/

@media (max-width: 1200px) {
    .copy-right-page {
        width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .header-main .navbar nav a {
        font-size: 13px;
    }
    .nav-pc {
        display: none;
    }
    .mobile {
        display: block;
        position: relative;
    }
    .mobile .logo {
        display: inline-block;
    }
    .mobile .navbar-mobile {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 300px;
        max-width: 100%;
        background-color: #ffffff;
        transform: translateX(100%);
        opacity: 0;
        transition: transform linear 0.2s, opacity linear 0.2s;
    }
    .close-mobile {
        margin: 20px;
        display: flex;
        justify-content: end;
    }
    .close-mobile > i:hover {
        color: rgb(238, 42, 42);
        transition: 0.3s;
    }
    .icon-bars {
        font-size: 22px;
        color: #2d3748;
        display: block;
        position: absolute;
        top: 10px;
        right: 0;
    }
    .icon-bars:hover {
        color: #ed8936;
        transition: 0.3s;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.2);
        animation: fadeIn linear 0.2s;
    }
    .input-check {
        position: absolute;
        top: 0;
        right: 20px;
    }
    .input-check:checked ~ .overlay {
        display: block;
    }
    .input-check:checked ~ .navbar-mobile {
        transform: translateX(0%);
        opacity: 1;
    }
    .mobile nav > ul > li > a {
        display: block;
        padding: 8px 2px;
        margin: 8px 2px;
        font-size: 13px;
    }
    .mobile nav > ul > li {
        display: flex;
        align-items: center;
    }
    .mobile nav > ul > li > a:hover {
        color: #ed8936;
        transition: 0.3s;
    }
    .mobile nav > ul > li > i {
        display: block;
        padding: 5px;
        margin: 5px 5px 5px 15px;
        font-size: 18px;
    }
    .search-mobile {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin: 10px 18px;
    }
    .search-mobile input[type="text"] {
        width: 100%;
        border: 1px solid #edf2f7;
        border-radius: 5px;
        outline: none;
        box-sizing: border-box;
        transition: 0.3s;
        padding: 10px 8px 10px 40px;
        background-color: #edf2f7;
        color: #999999;
    }
    .search-mobile input[type="text"]:focus {
        border-color: #3b82f6;
        box-shadow: #3b82f6;
    }
    .search-mobile button {
        position: absolute;
        left: 10px;
        color: #999999;
        font-size: 18px;
        cursor: pointer;
        background: none;
        border: none;
    }
}
@media (max-width: 1200px) {
    /*==========header============*/
    .header-main {
        display: none;
    }
    .header-mobile {
        display: block;
        margin: 5px 0;
        padding: 5px 0;
    }
    .header-mobile .nav-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }
    .header-mobile .logo {
        display: inline-block;
    }
    .header-mobile .navbar-mobile {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 330px;
        max-width: 100%;
        background-color: #ffffff;
        transform: translateX(-100%);
        opacity: 0;
        transition: transform linear 0.2s, opacity linear 0.2s;
        z-index: 100;
        overflow-y: scroll;
    }
    .header-mobile .navbar-mobile.active {
        transform: translateX(0%);
        opacity: 1;
    }
    .close-mobile {
        margin: 20px;
        display: flex;
        justify-content: end;
        font-size: 26px;
    }
    .close-mobile > i:hover {
        color: #f35555;
        transition: 0.3s;
        cursor: pointer;
    }
    .header-mobile .nav-mobile .group-btn {
        display: flex;
        align-content: center;
        flex-direction: row;
        align-items: center;
    }
    .group-btn .navbar-main {
        margin-left: 15px;
    }

    .group-btn .navbar-main i {
        color: #6c757d;
        cursor: pointer;
        font-size: 25px;
    }
    .group-btn .navbar-main > i:hover {
        color: #00a7ff;
        transition: 0.3s;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.2);
        animation: fadeIn linear 0.5s;
        z-index: 10;
    }

    .header-mobile .navbar-mobile .search-mobile {
        width: 90%;
        display: flex;
        align-items: center;
        position: relative;
        margin: 30px auto;
    }
    .header-mobile .navbar-mobile .search-mobile input[type="text"] {
        width: 100%;
        height: 40px;
        border: none;
        border-radius: 5px;
        outline: none;
        box-sizing: border-box;
        transition: 0.3s;
        padding: 5px 8px 5px 40px;
        background-color: #f8f9fd;
        color: #999999;
    }

    .header-mobile .navbar-mobile .navbar-mobile-warp .link-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 10px 0;
        font-size: 15px;
        display: flex;
        align-items: center;
        letter-spacing: 1px;
        color: #000000;
        font-weight: bold;
        padding: 10px 20px;
        cursor: pointer;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .bd-top {
        border-top: 1px solid #d5cfcf;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .dropdown-menu {
        cursor: pointer;
    }

    .header-mobile .navbar-mobile .navbar-mobile-warp > a:hover {
        background-color: #f8f9fd;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .dropdown-menu .dropdown-menu-item {
        padding: 10px 0;
        background-color: #69696b;
        transition: 1s all;
        display: none;
        /* transform: translateY(0px); */
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .active .dropdown-menu-item {
        display: block !important;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .dropdown-menu .dropdown-menu-item li {
        padding: 10px 5px;
        margin: 0 15px;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .dropdown-menu .dropdown-menu-item li:hover {
        border-left: 3px solid #00a7ff;
    }
    .header-mobile .navbar-mobile .navbar-mobile-warp .dropdown-menu .dropdown-menu-item li a {
        color: #ffffff;
    }
}
@media (min-width: 960px) and (max-width: 1180px) {
    .img-item img {
        width: 210px;
        height: auto;
        padding: 10px;
        border-radius: 25px;
    }
}

@media (max-width: 960px) {
    /*menu nav-sub*/
    .home-page .content-wrap .section-filter {
        grid-column-gap: 30px;
    }
    .home-page .content-wrap .section-filter .nav-sub {
        overflow-y: hidden;
        text-align: center;
        justify-content: start;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-scrollbar {
        height: 4px;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-scrollbar-thumb {
        background: #c4c4c4;
        border-radius: 5px;
    }
    .home-page .content-wrap .section-filter .nav-sub::-webkit-resizer {
        width: 5px;
    }
    .home-page .content-wrap .section-filter .nav-sub a {
        min-width: max-content;
        box-sizing: border-box;
        flex-wrap: wrap;
    }
    @-webkit-keyframes posi2 {
        from {
            top: 20%;
        }
        to {
            top: 40%;
        }
    }
    @keyframes posi2 {
        from {
            top: 20%;
        }
        to {
            top: 40%;
        }
    }
    .product-sub {
        column-gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    /* ====== */
    .add-project {
        display: block;
        margin: 16px;
    }
    .img-item img {
        width: 380px;
        height: auto;
        padding: 10px;
        border-radius: 25px;
    }
    .footer-content {
        display: block;
        padding: 20px 5px;
        color: #ffffff;
    }
    .footer-content img {
        text-align: center;
        width: 250px;
        height: 101px;
    }
}

/* @media (max-width: 940px) {

    .img-item img{
        width: 100%;
        height: auto;
        padding: 10px;
        border-radius: 25px;
    }
} */

/*Mobile*/

@media (max-width: 840px) {
    .img-item {
        display: block;
        max-width: 100%;
    }
    .img-item img {
        width: 100%;
        height: auto;
        border-radius: 25px;
    }
}

@media (min-height: 1366px) {
    /* body{
        height: 95vh;
    } */
    /* .main-content{
        width: 100%;
        height: 100%;

    } */
    .add-project {
        display: block;
        margin: 16px;
    }
    .show-img {
        margin: 30px 0px;
    }
    .img-item {
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .img-item img {
        width: 100%;
        height: auto;
        padding: 10px;
        border-radius: 25px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.pagination li {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
}
.pagination li.disabled {
    color: #fff;
}
.pagination li.active {
    background-color: #4caf50;
    color: white;
}

#overlay {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.cv-spinner {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*loader css*/

/* .loader {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000000000;
  display: block;
  overflow: hidden;
} */

.home-page .loader {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000000;
    display: block;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.home-page .loader .center {
    width: 60px;
}

.home-page .loader .vertical-center {
    text-align: center;
}

/* ============ majoin page ==========*/

.major__page {
    margin: 60px 0;
}

.major__page .loader {
    width: 100%;
    height: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000000;
    display: block;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.major__page .loader .center {
    width: 60px;
}

.major__page .loader .vertical-center {
    text-align: center;
}

.major__page .major__content__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 15px;
    color: #878787;
    grid-gap: 10px;
}
.img-notfound {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.major__page .major__content__title .content__title__left {
    display: flex;
    align-items: center;
}
.major__page .major__content__title .content__title__left .title__home {
    font-weight: 500;
    font-size: 32px;
    margin-right: 5px;
}
.major__page .major__content__title .content__title__left i {
    font-size: 14px;
}
.major__page .major__content__title .content__title__left .title__item {
    font-size: 14px;
    margin-left: 5px;
}

.major__page .show__filter__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
}

.major__page .major__content__title .filter__right .filter__right___icon button {
    border: none;
    background-color: #ffffff;
    font-size: 16px;
    color: #605e5e;
    transition: 0.3s;
    cursor: pointer;
}
.major__page .major__content__title .filter__right .filter__right___icon button:hover {
    color: #00a7ff;
}
.major__page .major__content__title .filter__right .filter__right___icon button span {
    font-size: 15px;
}
.major__page .show__filter__right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-gap: 10px;
}
.major__page .show__filter__right.action {
    display: none !important;
}
.major__page .show__filter__right .filter__right__item {
    width: 25%;
}
.major__page .show__filter__right .filter__right__item label {
    display: inline-block;
    color: #4e4141;
    margin: 5px 0;
}
.major__page .show__filter__right .filter__right__item select {
    width: 100%;
    padding: 7px 0;
    border-color: #cdc9c9;
    border-radius: 5px;
    outline: none;
    color: #878787;
    transition: 0.3s;
    padding-left: 10px;
    cursor: pointer;
}
.major__page .show__filter__right .filter__right__item select:focus {
    box-shadow: 1px 4px 7px 0px #006ca314;
}

.flex-width-100 {
    display: flex;
    width: 100%;
}
#wrap_content {
}

#wrap_content .product__filter--left {
    flex: 1;
}
#wrap_content .product__filter--left .product__filter--left__icon button {
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #605e5e;
    transition: 0.3s;
    cursor: pointer;
    display: block;
    margin-bottom: 10px;
}
#wrap_content .product__filter--left .product__filter--left__icon button:hover {
    color: #00a7ff;
}
#wrap_content .product__filter--left .product__filter--left__icon button span {
    font-size: 15px;
}
.major__page .product__filter--left .product__filter--left__item label {
    display: inline-block;
    color: #4e4141;
    margin: 10px 0;
    font-weight: 700;
}
.major__page #wrap_content {
    margin: 50px 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    padding: 0 15px;
}
@media (min-width: 768px) {
    .major__page #wrap_content {
        grid-template-columns: 350px 1fr;
    }
}
.product__filter--left__item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
}
.major__page .product__filter--left .product__filter--left__sub-items {
    /* margin-left: 24px; */
}
.major__page .product__filter--left .product__filter--left__sub-items label {
    font-size: 12px;
}
.major__page .product__filter--left .product__filter--left__item select {
    width: 100%;
    padding: 10px 0;
    border-color: #cdc9c9;
    border-radius: 5px;
    outline: none;
    color: #878787;
    transition: 0.3s;
    padding-left: 15px;
    cursor: pointer;
}
.major__page .product__filter--left .product__filter--left__item select:focus {
    box-shadow: 1px 4px 7px 0px #006ca314;
}
#wrap_content .product__list--right {
}

#wrap_content .product__list--right .response-message {
    margin-bottom: 16px;
}

#wrap_content .product_list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 32px;
    align-items: center;
}

#wrap_content .product_list .product-item {
    box-shadow: 0 0 4px #e6e6e6;
}
#wrap_content .product_list .product-item .inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, -webkit-transform 0.2s;
}
#wrap_content .product_list .product-item .inner:hover {
    transform: translateY(calc(2px * -1));

    box-shadow: 0 0 16px #e6e6e6;
    /* background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0, transparent 80px); */
}
#wrap_content .product_list .product-item .inner a > img {
    width: 101%;
    height: 165px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
#wrap_content .product_list .product-item .inner a > p {
    font-weight: bold;
    padding: 15px 10px 0 10px;
    font-size: 14px;
    color: #4d4d4d;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-top: 1px solid #eeeeee;
}
#wrap_content .product_list .product-item i {
    font-size: 14px;
    color: #6e6d7a;
}
#wrap_content .product_list .product-item .custom-2 {
    display: flex;
    justify-content: end;
    margin: 0px 10px 16px 10px;
}
#wrap_content .product_list .product-item .custom-2 .fa-eye {
    display: none;
}
#wrap_content .product_list .product-item .custom-1 .user {
    display: flex;
    margin: 5px 10px 20px 10px;
}
#wrap_content .product_list .product-item .custom-1 .user p {
    width: 100%;
    margin-top: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
#wrap_content .product_list .product-item .custom-1 p {
    font-size: 12px;
    color: #6e6d7a;
}
#wrap_content .product_list .product-item .custom-2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#wrap_content .product_list .product-item .user img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid #eee;
    margin-right: 5px;
}

@media (min-width: 300px) {
    #wrap_content .product_list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        grid-gap: 16px;
    }

    #wrap_content .product_list .product-item {
    }
}

@media (min-width: 576px) {
    #wrap_content .product_list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 16px;
    }

    #wrap_content .product_list .product-item {
    }
}
@media (min-width: 960px) {
    #wrap_content .product_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 16px;
    }

    #wrap_content .product_list .product-item {
    }
}
@media (min-width: 1280px) {
    #wrap_content .product_list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-gap: 24px;
    }

    #wrap_content .product_list .product-item {
    }
}
@media (max-width: 768px) {
    .major__page .show__filter__right {
        display: block;
    }
    .major__page .show__filter__right .filter__right__item {
        width: 100%;
    }
}

/* ======== end ====== */
