﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');


html {
    scroll-behavior: smooth;
}
body {
    background: #f4f7ff
}
a
{
    color:#333
}
.button
{
    border-radius:30px;
}
.max-h-358
{
    max-height:358px;
    overflow:hidden
}
.gap-2px
{
    gap:2px;
}
.p5px {
    padding: 5px;
}
.p6px {
    padding: 6px;
}
.p8px {
    padding: 8px;
}
.w-100px
{
    width:100px;
}
.color0 {
    color: #000
}
.h-0\.5 {
    height: .125rem;
}
.md\:w-40 {
    width: 10rem;
}
.radius-blr-7 {
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}
.p10-15 {
    padding: 10px 15px;
}
.p-13 {
    padding: 13px;
}
.w-65per {
    width: 65%;
}
.w-35per {
    width: 35%;
}
.mx-20per {
    margin: 0 20%;
}
.right-0
{
    right:0
}
.copyright p {
    font-size: 12px !important;
}
.text-line-through {
    text-decoration: line-through
}
.bg-success {
    background: var(--color-green-5) !important
}
.bg-e6eaf9 {
    background: #e6eaf9
}
.border-1 {
    border: #f4f4f4 solid thin
}
.w-120
{
    width:120px
}
.none {
    display: none
}
.shrink-0 {
    flex-shrink: 0;
}
.shrink-1
{
    flex-shrink:1;
}
.flex-1 {
    flex: 1
}
video {
    width: 100%
}
.w-maxcontent
{
    width:max-content
}
.p-10 {
    padding: 10px
}
.p-15 {
    padding: 15px
}
.p-20 {
    padding: 20px
}
.text-5
{
    font-size:5px;
}
.text-4em {
    font-size: 4em
}
.text-9d9d9d {
    color: #9d9d9d;
}
.text-666b8d {
    color: #666b8d;
}
    .text-666b8d:hover {
        color: var(--color-purple-1);
    }
.text-success {
    color: var(--color-green-5) !important;
}
.text-primary {
    --bs-text-opacity: 1;
    color: var(--bs-primary-rgb) !important;
}
.text-danger {
    color: red;
}
.text-a7 {
    color: #a7a7a7;
}
.shadow-7 {
    box-shadow: 0 15px 20px -20px rgb(0 0 0 / 73%);
}
.radius-15
{
    border-radius:15px
}

.p5-10px
{
    padding:5px 10px
}
.p10-30px {
    padding: 10px 30px;
}
.p15-30px {
    padding: 15px 30px;
}
.p15-20px {
    padding: 15px 20px;
}
.py-14 {
    padding: 14px 0;
}
.w-45px {
    width: 45px
}
.gap-3 {
    gap: 3px
}
.gap-5 {
    gap: 5px
}
.gap-10 {
    gap: 10px
}
.gap-15 {
    gap: 15px
}
.gap-18 {
    gap: 18px
}
.gap-20 {
    gap: 20px
}
.gap-25 {
    gap: 25px
}
.fw-medium
{
    font-weight:600
}
.radius-4
{
    border-radius:4px
}
.radius-7 {
    border-radius: 7px
}
.radius-100
{
    border-radius:100%
}
.border-ddd {
    border: #ddd solid thin;
}
.flex100per {
    flex: 0 0 100%;
}
.w-100
{
    width:100%
}
.flex-column
{
    flex-direction:column
}
.alertify-notifier.ajs-right .ajs-message.ajs-visible
{
    font-size:13px;
    color:#fff;
}
.text-24
{
    font-size:24px;
}
.btn-success {
    --bs-btn-color: #fff;
    --bs-btn-bg: #2ab57d;
    --bs-btn-border-color: #2ab57d;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #249a6a;
    --bs-btn-hover-border-color: #229164;
    --bs-btn-focus-shadow-rgb: 74, 192, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #229164;
    --bs-btn-active-border-color: #20885e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #2ab57d;
    --bs-btn-disabled-border-color: #2ab57d;
}
.line-clamp-1, .line-clamp-2, .line-clamp-3, .line-clamp-4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}
.line-clamp-2 {
    -webkit-line-clamp: 2;
}
.line-clamp-3 {
    -webkit-line-clamp: 3;
}
.line-clamp-4 {
    -webkit-line-clamp: 4;
}
.tabs__controls input[type=submit]:not(:disabled) {
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-color: transparent;
    text-decoration: none;
}
.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    z-index: 2;
    width: 50px;
    height: 50px;
}

    .spinner .path {
        stroke: #879acd;
        stroke-linecap: round;
        -webkit-animation: dash 1.5s ease-in-out infinite;
        animation: dash 1.5s ease-in-out infinite;
    }

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }

    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }

    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
.loaddata_ {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99;
}
.pagination.-avatars .pagination__item.avt {
    width: 92px;
    height: 92px;
}
.shadow-sd-7 {
    box-shadow: 0 15px 20px -21px rgb(0 0 0 / 24%);
}
.shadow-sd-14 {
    box-shadow: 0 15px 20px -14px rgb(0 0 0 / 24%);
}
.detail-course label {
    margin: 0;
    font-size: 14px
}
.cball-course label {
    font-weight: 700;
    font-size:14px
}
.list-lesson ul li {
    padding: 10px 0;
    border-top: #e1e5f3 solid thin;
}
.list-lesson ul li:last-child {
    padding-bottom:0;
    border-bottom: none;
}
.-purple-1:hover {
    background-image: linear-gradient(to right, #00b14f 0%, #1a5b45 51%, #00b14f 100%);
    background-image: linear-gradient(to right, #00b14f 0%, #1a5b45 51%, #00b14f 100%);
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-size: 200% auto;
    border:none
}
.aspNetDisabled.button
{
    opacity:0.5
}
    .aspNetDisabled.button:hover {
        background-image: linear-gradient(to right, var(--color-purple-1) 0%, var(--color-purple-1) 51%, var(--color-purple-1) 100%);
        background-image: linear-gradient(to right, var(--color-purple-1) 0%, var(--color-purple-1) 51%, var(--color-purple-1) 100%);
    }
._viewLesson {
    border: none;
    line-height: 0.5;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    padding: 6px 5px 9px 6px !important;
}
.list-lesson span p
{
    font-size:13px
}
.list-lesson.item ul {
    border: #e1e5f3 solid thin;
    border-radius:4px;
}
.list-lesson.item ul li:first-child
{
    border:none
}
.list-lesson.item ul li
{
    padding:10px
}
.time-dot ul li {
    list-style: disc !important;
    margin-left: 30px;
}
#_copylink:hover
{
    cursor:pointer
}
.notify-copy {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    top: 0;
    color: #fff;
    left: 0;
    right: 0;
    opacity: 1;
    z-index:1
}

._icon {
    background: #33333380;
    padding: 13px;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}
.btn-transparent
{
    background:transparent;
    border:none
}
.flex-shrink0 {
    flex-shrink: 0;
}
.progress
{
    height:10px
}
.rating_ .progress .progress-bar {
    background: #FFAA33;
    box-shadow: none;
}
.contact-form, .form-select, .select2-container--default .select2-selection--single {
    border: 0;
    outline: none;
    width: 100%;
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #e1e1e1;
    font-size: 14px;
    line-height: unset;
    padding: 13px 15px;
    color: var(--color-light-1);
    transition: all 0.15s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-weight: 600;
}
    .form-select:focus{
        border: 1px solid #ffba00 !important;
        /*outline: #00b14f21 solid 3px !important;
        box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(126, 239, 104, 0.6);*/
        outline: none;
        box-shadow: none
    }
.btn-send-rating {
    display: flex;
    background: #666666;
    height: 100%;
    font-size: 14px !important;
}
    .btn-send-rating:hover {
        background-color: var(--color-purple-1)
    }
.bg-f7f7f7
{
    background:#f7f7f7
}
.bg-fff1f1 {
    background: #fff1f1
}
.avatar-cmt {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.infor_us_:before {
    content: '';
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 8px 5px 0;
    border-color: transparent #f7f7f7 transparent transparent;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    position: absolute;
    left: -7px;
}
.stt-teacher {
    position: absolute;
    top: 0;
    display: flex;
    padding: 3px 6px;
    border-radius: 4px;
    background: linear-gradient(180deg, #f5c20f, #fd9f19);
    font-size: 12px;
    color: #fff;
}
.group- div:last-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left:none !important
}
.group- div:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.course-relate-teacher img{
    object-fit: cover;
    width: 100%;
    height:100%;
    max-height:220px
}
.blinking {
    animation: 1s blink ease infinite;
    width: 10px;
    height: 10px;
    border-radius: 100%
}
@-webkit-keyframes"blink" {
    0%
    {
        opacity: 0;
        background-color: red;
    }

    25% {
        opacity: 1;
        background-color: red;
    }

    50% {
        opacity: 0;
        background-color: darkorange;
    }

    75% {
        opacity: 1;
        background-color: darkorange;
    }

    100% {
        opacity: 0;
        background-color: darkorange;
    }
}
.top0
{
    top:0
}
.top95 {
    top: 95px
}
.min-vh-100 {
    min-height: 100vh !important;
}
.type-search .toggle-element.-dropdown {
    top: 35px;
    left: 42px;
    padding: 13px;
    min-width: auto;
}
.type-search .dropdown__button {
    padding: 0 !important;
    background:transparent
}
.type-search .icon {
    position: relative !important;
    transform: unset !important;
}
#_ddlTypeSearch:focus
{
    outline:none
}
[data-anim^='slide-'].is-in-view, [data-anim-child^='slide-'].is-in-view
{
    height:100%
}
body {
}

a:hover {
    text-decoration: none;
    color: var(--color-purple-1);
}

.header.-type-3 .header-search-field input, .header.-type-3 .header-search-field input:focus, .masthead.-type-2 .masthead-search__form input:focus {
    border: none;
    outline: none
}

.css-xdds4m {
    margin: 0px;
    flex-shrink: 0;
    border-width: 0px thin 0px 0px;
    border-style: solid;
    border-color: rgba(145, 158, 171, 0.2);
    height: auto !important;
    align-self: stretch;
    opacity: 1;
    color: rgba(145, 158, 171, 0.2);
}

.css-1mr91b4:hover {
    background-color: rgba(145, 158, 171, 0.08);
}

.css-1mr91b4 {
    padding: 7px 10px;
    border-radius: 4px
}

.masthead.-type-2 .masthead-search__form input {
    width: 100%;
    height: 80px;
    border-radius: 100px;
    box-shadow: 0px 6px 15px 0px #404F680D;
    border: 1px solid #ECEDF2;
    padding: 0 40px;
}

.masthead.-type-2 .masthead-search__form .button {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    border-radius: 100%;
}

.masthead.-type-2 .masthead-search__form {
    position: relative;
    width: 600px;
}

.masthead.-type-2 .masthead-image__img1 img {
    max-width: unset;
    width: 100%;
}

.masthead__bg {
    background: linear-gradient(116deg, rgb(255, 93, 25) 10.84%, rgb(207, 39, 125) 38.64%, rgb(121, 51, 234) 68.26%, rgb(29, 160, 255) 92.1%);
}
.masthead__bg_two {
    background: linear-gradient(116deg, #ff5d19 10.84%, #f69203 38.64%, #ffb992 68.26%, #fda82c 92.1%);
}
.masthead__bg_two_img {
    /*background: linear-gradient(116deg, #ff5d19 10.84%, #f69203 38.64%, #ffb992 68.26%, #fda82c 92.1%), url(/img/bg-fastsale.png);*/
    background-size: contain;
    background-position: right;
    background-blend-mode: overlay;
}
.p18-25 {
    padding: 18px 25px;
}

.button.-purple-6 {
    background-color: var(--color-purple-6);
    border: 2px solid var(--color-purple-6);
}
.button.-purple-0 {
    background: #e6eaf9;
    border: 2px solid #e6eaf9;
    color: var(--color-purple-1);
}

.coursesCard__image img, .blogCard__image img {
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
}

.section-slider-nav.-outline-dark-1 {
    background: #fff;
    border: none
}

    .section-slider-nav.-outline-dark-1:hover {
        background-color: var(--color-purple-4) !important;
        color: white !important;
    }

.categoryCard.-type-2:hover .categoryCard__title {
    color: var(--color-purple-4);
}

.button.-purple-3 {
    background-color: var(--color-purple-5);
    border: 2px solid var(--color-purple-5);
}

    .button.-purple-3:hover {
        color: white !important;
        background-color: var(--color-purple-4) !important;
    }

.tabs.-pills .tabs__controls .tabs__button.is-active {
    color: var(--color-purple-4) !important;
    font-weight: 600;
    background-color: var(--color-purple-5);
}

.pagination.-arrows .pagination__item.is-active {
    background-color: var(--color-purple-4) !important;
}

.arrow-right-hover:hover {
    color: var(--color-purple-4);
    transform: translateX(5px) scale(1.25);
}

.arrow-left-hover:hover {
    color: var(--color-purple-4);
    transform: translateX(-5px) scale(1.25);
}

.footer a {
    font-weight: 500;
    font-size: 13px;
    color: var(--color-light-1);
}
    .footer a:hover {
        color: var(--color-purple-1);
    }

    .footer p {
        font-size: 14px;
        margin-bottom:5px;
    }

.y-gap-10 > * {
    padding-top: 5px;
    padding-bottom: 0;
}

.header .explore-content a:hover {
    color: var(--color-purple-1) !important;
}

.header .explore-content {
    min-height: 500px
}

.pagination.-avatars .pagination__item::before {
    border: 2px solid var(--color-dark-3);
}


.data_ {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
}

.cd-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgb(0 0 0 / 29%), rgba(0, 0, 0, 0));
    z-index: 0;
}

._video-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-thumb ._imgthumb {
    min-height: 363px;
    max-height: 363px;
    object-fit: cover;
    width: 100%
}

.-icon-check {
    position: absolute;
    right: 10px;
    top: 11px;
}

.list- .item {
    flex: 1;
    justify-content: center;
    display: flex;
}

.text-gradient-1 {
    background: linear-gradient(116deg, rgb(255, 93, 25) 10.84%, rgb(207, 39, 125) 38.64%, rgb(121, 51, 234) 68.26%, rgb(29, 160, 255) 92.1%);
    background-clip: text;
    color: transparent;
}
.-header-top > div ul
{
    display:flex;
    gap:20px;
    font-size:13px;
    font-weight:500
}

.aw__b1358qut {
    color: #FFFFFF;
    background-color: #f7b500;
    border-color: #f7b500;
    border-radius: 30px;
}
.header__explore a:hover, .header-right a:hover {
    color: #fff
}
.header-right__icons a
{
    line-height:0
}
.owl-dots {
    display: flex;
    gap: 4px;
    bottom: 10px;
    position: absolute;
    justify-content: center;
    width: 100%;
}
.header__logo img {
    object-fit: contain;
    object-position: 0 0;
    height: 30px;
}
.grid {
    display: grid;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
}
.grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}
.grid-cols-15 {
    grid-template-columns: repeat(15, minmax(0, 1fr));
}

.h90 {
    height: 90px;
}
.box-cate .item img {
    min-height: 90px;
    max-height: 90px;
    object-fit: cover;
    border-radius:7px
}
.hoNfzq {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.AdItem_item__1kT2X {
    background: #fff;
    padding: 10px;
    border-radius:7px;
}

.ilOvBp {
    padding: 10px;
    flex-basis: calc((100% / 4) - (20px * 3 / 4));
}
.AdItem_wrapperLink__svIE9 {
    display: block;
    height: 100%;
    position: relative;
}
.AdThumbnail_thumbnailWrapper__3VrMU {
    flex: 1;
    box-sizing: border-box;
}
    .AdThumbnail_thumbnailWrapper__3VrMU img {
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }

._avatar- img {
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 16px;
    max-height: 16px;
    border-radius: 100%;
    width:16px
}
.AdItem_item__1kT2X a:hover
{
    color:#333
}
.AdItem_item__1kT2X:hover, .AdItem_item__1kT2X {
    box-shadow: 2px 2px 8px 0px #8f8f8f40;
    z-index: 10;
}
.tag h2, .tag h3{
    font-size: 18px;
    margin: 15px 0
}
.tag h3 {
    font-size: 16px;
}
    .tag p {
        font-size: 13px;
        color: #777777;
        margin-bottom: 5px
    }
.tag h3 {
    color: #9b9b9b
}
.tag-list ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0px;
}
    .tag-list ul li a {
        font-size: 13px;
        color: #777777
    }
    .tag-list ul li {
        list-style-position: inside;
        flex-basis: 25%;
    }
.footer h3 {
    font-size: 15px;
    margin: 15px 0
}
.footer ul
{
    display:flex;
    flex-direction:column;
    gap:5px;
}
.qr-footer
{
    width:100px
}
.w-155px
{
    width:155px
}
.info-company p {
    font-size: 13px;
    margin-bottom: 5px
}
.info-company h2, .info-company h2 strong {
    font-size: 15px;
    font-weight: 600;
    margin-bottom:5px;
    margin-top:15px;
}
    .footer h3 {
        color: var(--color-light-1);
    }
.-overlay {
    position: fixed;
    z-index: 99;
    background: #333333e6;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.-menu-page img {
    width: 1.3rem;
    object-fit: inherit;
}
.aw__nrouw61 {
    border-radius: 100%;
    height: 45px;
    width: 45px;
    position: relative;
    -o-object-fit: cover;
    object-fit: cover;
}
.-menu-info a:hover
{
    color:#333
}
.vaBanner {
    padding: 8px;
    border-radius: 4px;
    background-color: #306bd9;
    color: #FFFFFF;
    font-size:12px
}

    a.vaBanner:hover
    {
        color:#fff
    }
.item-menu ul
{
    display:flex;
    flex-direction:column
}
.item-menu ul li a {
    display: flex;
    gap: 10px;
    font-size: 14px;
    align-items: center;
}
    .item-menu ul li a i {
        color: #fff;
        width: 26px;
        height: 26px;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 100%;
        padding: 6px;
        font-size: 12px;
    }
.bg-4a90e2 {
    background: #4a90e2
}
.color-4a90e2 {
    color: #4a90e2
}
.bg-589f39 {
    background: #589f39
}
.bg-fd213b {
    background: #fd213b
}
.color-fd213b {
    color: #fd213b
}
.bg-ffba00 {
    background: #ffba00
}
.color-ffba00 {
    color: #ffba00
}
.bg-9b9b9b {
    background: #9b9b9b
}
.item-menu h2 {
    background: #f5f5f5;
    padding: 15px;
}
.item-menu ul li a:hover {
    background-color: #E8E8E8;
}
.item-menu ul li a
{
    padding:6px 15px;
}
.-menu-info
{
    display:none;
}
    .-menu-info.show
    {
        display:block;
    }
.vaInfo {
    background: #efefef;
    border-radius: 4px;
    padding: 5px;
}
.w-max110 {
    max-width: 110px;
}
.w-max100 {
    max-width: 100px;
}
.avttop-default {
    width: 30px;
    border-radius: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 30px;
    max-height: 30px;
}
.dot-red {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 7px;
    transform: scale(1);
    animation: pulse 2s infinite;
    border-radius: 100%;
    line-height: 0;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(255 0 0 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 7px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}
.header.-type-3 .search-m .header-search-field .icon_search {
    right:0
}
.header.-type-3 .search-m .header-search-field input {
    padding: 10px;
    font-size:13px;
}
.w-35
{
    width:35%
}
.w-65
{
    width:65%;
}
.file-upload__input {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}
.flex-column-3 {
    flex-wrap: wrap;
    align-items: center;
}
    .flex-column-3 > * {
        flex: 0 1 calc(100%);
        min-height: 225px;
        max-height: 225px;
        object-fit: cover;
    }
    .flex-column-3 img
    {
        border-radius:4px
    }
.uploaded-image {
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
}
.box-img
{
    position:relative
}
.del-img {
    position: absolute;
    right: 7px;
    font-size: 18px;
    color: red;
    top: 0;
}
    .del-img:hover
    {
        cursor:pointer
    }
.position-arrow {
    top: 0;
    right: 10px;
    bottom: 0;
    display: flex;
    align-items: center;
}
.l12u081s {
    transition: opacity .5s ease-in;
    position: relative;
    cursor: pointer;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
}
    .l12u081s li {
        -webkit-text-decoration: inherit;
        text-decoration: inherit;
        width: 100%;
        font-size: 14px;
        padding: 15px;
        border-bottom: 1px solid #e3e3e3;
        position: relative;
        cursor: pointer;
        justify-content: space-between;
        align-items: center;
        line-height:0
    }
        .l12u081s li img {
            width: 1.8rem;
            object-fit: inherit;
        }
        .l12u081s li:last-child
        {
            border:none
        }
        .l12u081s li:hover {
            background: #e3e3e3
        }
.bg-back-log {
    position: absolute;
    left: 17px;
}
.modal-content {
    z-index: 9999;
    border:none
}
.h-maxcontent
{
    height:max-content
}
#_upAction
{
    display:flex;
    height:100%;
}
#_catePost:hover, #_closeModal:hover {
    cursor: pointer
}
#_closeModal {
    position: absolute;
    right: 19px;
    top: 10px;
    font-size:20px
}
textarea {
    resize: none;
}
#_cbWhois tbody
{
    display:flex;
    gap:15px;
}
.radio-input input[type="radio"] {
    display: none !important;
}
    .radio-input input[type="radio"] + label {
        background: #efefef;
        font-weight: 400;
        padding: 10px 15px;
        margin: 0;
        border-radius: 4px;
    }

    .radio-input input[type="radio"]:checked + label {
        background-color: #ffe9c2;
        color: #f80;
        font-weight: 600;
        
    }
.select2-container .select2-selection--single
{
    height:auto
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 13px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: unset;
}
.select2-results__option {
    font-size: 14px;
}
.select2-container .select2-selection--single .select2-selection__rendered
{
    padding:0
}
#cke_1_bottom
{
    display:none
}
.cke_chrome {
    border: 1px solid #e1e1e1 !important;
    border-radius: 4px;
}
.cke_top {
    border-bottom: none !important;
    background: #fff !important;
}
.cke_editable {
    line-height: 1 !important;
}
    .cke_editable p
    {
        margin: 5px 0
    }
.ck-editor__editable {
    min-height: 300px;
    font-weight:500
}
.ck-content, .ck-content p {
    font-size: 14px;
    margin: 5px 0
}
.contact-form:focus {
    border: 1px solid #1b4ad1 !important;
    outline: #0031da26 solid 3px;
}
.outline-null:focus {
    outline: #fde5e1 solid 3px !important;
}
.outline-null.contact-form:focus {
    border-color: Red !important
}
.breadcrumb ul {
    display: flex;
    gap: 5px;
}
    .breadcrumb ul li a::after {
        content: "•";
        display: inline-flex;
        padding-left: 5px;
    }
    .breadcrumb ul li
    {
        font-size:13px;
    }
    .breadcrumb ul li a {
        color: #1952ba;
    }
        
    #_pnData .box-control ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    #_pnData .box-control ul li a {
        font-size: 14px;
    }
        #_pnData .box-control ul li a.active {
            font-weight: 600
        }
.aspNetDisabled.contact-form {
    background: #f4f4f4;
    border: #f4f4f4 solid thin;
}
.box-card-point-basic {
    background-image: linear-gradient(to right, #ffba00 0%, #FF8800 51%, #ffba00 100%);
    -webkit-transition: all 500ms;
    transition: all 500ms;
    background-size: 200% auto;
    padding: 10px;
    border-radius: 4px;
}
.icon-point
{
    border: #fff solid thin;
    border-radius: 100%;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-overlay-allpage {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.breadcrumb a {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.group-text
{
    position:relative
}
.box-data .img- {
    height: 100%;
    min-height: 115px;
    max-height: 115px;
    object-fit: cover;
    width: 100%;
}
.btn-control-posting, .btn-control-store, .btn-control-followed, .btn-control-follow {
    padding: 5px 10px;
    border-radius: 4px;
}
.btn-control-store, .btn-control-follow, .btn-saled {
    background: #00b14f;
    border: #00b14f solid thin;
    color: #fff
}
    .btn-fast-sale, .btn-control-store:hover, .btn-control-followed {
        background: #f2f8ee;
        border: #86ba78 solid thin;
        color: #86ba78;
    }

.btn-hide-sales {
    background: #e0ebff;
    border: #1952ba solid thin;
    color: #1952ba;
}
.btn-hided-sales {
    background: #dfdfdf;
    border: #f4f4f4 solid thin;
    color: #333;
}
.edit-posting-icon {
    right: 10px;
    font-size: 17px;
}
.btn-del-posting {
    background: #f8eeee;
    border: #ff4343 solid thin;
    color: #ff4343;
}
.btn-warning-posting {
    background: #fffaeb;
    border: #ffba00 solid thin;
    color: #ffba00;
}
.count-img {
    left: 0;
    top: 0;
    background: #333;
    padding: 2px 5px;
    font-size: 12px;
    color: #fff;
}
#_upProcess {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.icon-favorite {
    right: 7px;
    width: 27px;
    height: 27px;
    top: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    line-height: 0;
    border-radius: 4px;
}
.-flash-sale .sale-off {
    left: -16px;
}
.sale-off {
    left: -18px;
    top: -18px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 0;
    background: #ff0000cc;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    position: absolute;
}
    .sale-off:before {
        content: "";
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 0 5px 5px 0px;
        border-color: transparent transparent #9f0f00 transparent;
        transform: rotate(180deg);
        position: absolute;
        top: 25px;
        left: 1px;
    }
.taginstallment {
    position: absolute !important;
    top: -20px;
    color: #000;
    right: 0;
}
.object-cover {
    -o-object-fit: cover;
    object-fit: cover;
}
.img-cover {
    min-height: 200px;
    max-height: 200px;
}
.w1jzbmdz {
    margin-top: -40px;
}
    .w1jzbmdz img {
        border-radius: 100%;
        background-color: #fff;
        padding: 2px;
        min-height: 100px;
        max-height: 100px;
        object-fit: cover;
        position:relative
    }
.about-us p
{
    font-size:13px
}
.change-cover {
    top: 10px;
    right: 10px;
}
.posting-us .item {
    border: 1px solid #e8e8e8;
}
.icons-detail-posting {
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 4px;
    color: #686868;
}
.view-page {
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    border: 1px solid #e7e7e7;
    min-width: 96px;
    font-size: 12px;
    line-height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-show-phone{
    color: #fff;
    background-color: #33a837;
}
    .bg-show-phone:hover {
        background-color: #3b8122;
        cursor:pointer
    }
.btn-chat-detail- {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #f4f4f4;
    border: 1px solid #f4f4f4;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    color: #589f39;
    font-weight: 700;
    text-align: center;
}
    .btn-chat-detail-:hover {
        background-color: #33a8372e;
        border: 1px solid #33a837;
    }
.data-content p
{
    font-size:14px
}
.slider-nav .slick-track {
    display: flex;
    gap: 10px;
}
.slider-nav.small-slides .slick-track {
    transform: translate3d(0px, 0px, 0px) !important;
}
.data-slider-slick.slider-nav .slick-arrow i {
    height: 20px;
    width: 20px;
    font-size: 10px;
}
.data-slider-slick.slider-nav .slick-arrow.slick-next {
    right: 5px;
}
.data-slider-slick.slider-nav .slick-arrow.slick-prev {
    left: 5px;
}

.slick-slide img {
    min-height: 500px;
    max-height: 500px;
    object-fit: cover;
    width: 100%;
}
.slider-index-small-two
{
    max-width:1000px;
    margin:0 auto
}
.slider-index-small-two .slick-slide img {
    min-height: 60px;
    max-height: 60px;
    object-fit: cover;
    max-width: 60px;
    width: 100%;
}
.slider-index-small-two .slick-track {
    margin: 0;
}
.slider-index-small-two .slick-dots {
    bottom: -20px;
}
    .slider-index-small-two .slick-dots li.slick-active button:before {
        color: #0031da;
        background-color: #0031da;
        border: 3px solid #0031da;
    }
    .slider-index-small-two .slick-dots li button:before {
        border: 3px solid #92b5d9;
        background: #3778b785;
    }
.control- {
    position: absolute;
    bottom: 0;
    padding: 5px 10px;
    background: #33333375;
    width: 100%;
    text-align: right;
    color: #fff;
}
.color-like- {
    color: #ff4343;
}
.top-box-info-us
{
    top: 115px;
}
.cursor-pointer:hover {
    cursor: pointer
}
._rb-item tbody {
    display:flex;
    flex-direction:column
}
._rb-item tr {
    border-bottom: 1px solid #e8e8e8;
    padding: 10px 15px;
}
    ._rb-item tr:last-child
    {
        border:none
    }
    ._rb-item td {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        flex-direction: row-reverse;
    }
    ._rb-item td label {
        margin: 0;
        display: flex;
        width: 100%;
    }
._rb-item input[type="radio"] {
    position: absolute;
}

._rb-item input[type="radio"]:before {
    content: '';
    background: #f4f4f4;
    border-radius: 100%;
    border: 1px solid #f4f4f4;
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    position: relative;
    top: -0.2em;
    margin-right: 1em;
    vertical-align: top;
    cursor: pointer;
    text-align: center;
    transition: all 250ms ease;
}

._rb-item input[type="radio"]:checked:before {
    background-color: #ffba00;
    box-shadow: inset 0 0 0 4px #f4f4f4;
}

._rb-item input[type="radio"]:focus:before {
    outline: none;
    border-color: #ffba00;
}

/*._rb-item input[type="radio"]:disabled:before {
    box-shadow: inset 0 0 0 4px #f4f4f4;
    border-color: #b4b4b4;
    background: #b4b4b4;
}*/

._rb-item input[type="radio"]:empty:before {
    margin-right: 0;
}
.max-h500
{
    max-height:500px
}
.overflow-y-auto
{
    overflow-y:auto
}
.btn-item.active {
    background: #fff7e0;
    border-radius: 4px;
}
.-box-cate a:hover, .btn-item:hover {
    background: #f6f6f6;
    border-radius: 4px;
}
.-gradient-1 {
    background: linear-gradient(to top, #ffba00, #ff9a00);
}
.w50px {
    width: 50px;
}
.w60px {
    width: 60px;
}
.borderf5f5f5 {
    border: #f5f5f5 solid thin;
}
.bgfdfdfd {
    background: #fdfdfd;
}
.bgf7f7f7 {
    background: #f7f7f7;
}
.w50per {
    max-width: 50%;
}
.btn-control-whois .active {
    border-bottom: var(--color-purple-1) solid 2px;
    font-weight: 600 !important;
    color: var(--color-purple-1) !important
}
.header-right__icons a, .header-right__buttons a {
    color: #fff
}
.-menu-info a, .-header-top a {
    color: #333
}
    .-header-top a:hover {
        color: #4a90e2
    }

    .box-list-data .owl-nav .owl-next {
        right: -35px;
    }

.box-list-data .owl-nav .owl-prev {
    left: -35px;
}
.box-list-data .owl-nav .owl-prev, .box-list-data .owl-nav .owl-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}
    .box-list-data .owl-nav .owl-prev i, .box-list-data .owl-nav .owl-next i {
        background: #f2f2f2 !important;
        height: 50px;
        width: 50px;
        border-radius: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .box-list-data .owl-nav .owl-prev:hover, .box-list-data .owl-nav .owl-next:hover, .data-slider-slick .slick-arrow.slick-prev:hover, .data-slider-slick .slick-arrow.slick-next:hover {
        opacity: 1;
    }
        .box-list-data .owl-nav .owl-prev:hover, .box-list-data .owl-nav .owl-next:hover i, .data-slider-slick .slick-arrow.slick-prev:hover i, .data-slider-slick .slick-arrow.slick-next:hover i {
            color: #0031da
        }
.owl-carousel {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
}
.list-after-sales ul
{
    display:flex;
    gap:15px;
}
.list-after-sales ul li i {
    color: #00b14f;
    font-size:15px;
}
    .list-after-sales ul li {
        padding: 10px 0;
        display: flex;
        align-items: center;
        gap: 8px;
        line-height: 1.3;
    }
.list-after-sales ul li:after {
    content: "";
    width: 1px;
    background: rgb(235, 235, 240);
    display: flex;
    height: 100%;
    margin-left: 5px;
}
    .list-after-sales ul li:last-child:after {
        display: none
    }
.product-block {
    transition: 0.3s all ease;
}
.product-block .product-img .first-image, .product-block .product-img .second-image {
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}
.product-block .product-img .second-image {
    display: block;
    position: absolute;
    top: 0;
    left: -100%;
}
.product-block:hover .product-img .second-image {
    left: 0;
}
.product-block:hover .product-img .first-image {
    -ms-transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}
.product-img:not(:has(.second-image)):hover .first-image {
    transform: scale(1, 1);
}
    .product-block .product-img {
        overflow: hidden;
        position: relative;
        text-align: center;
    }
.item-cate .item .bt-item {
    background: #0031da1f;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 14px;
}
.slick-track {
    gap: 10px;
}
.list-img-feedback .slick-track {
    display:flex
}
.item-cate .item .bt-item.active {
    background: #0031da;
}
.bg-default {
    background-color: #0031da;
}
.bg-1a2e5c {
    background: #1a2e5c
}
.item-commitment ul, .list-policy ul {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.item-commitment ul li {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.item-commitment ul li > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.item-commitment ul li h2 {
    font-size: 16px;
    color: #1a2e5c;
    background: linear-gradient(to right, #1a2e5c 0%, #0031da 100%);
    background-clip: text;
    color: transparent;
}
.item-commitment ul li p {
    font-size: 14px;
    line-height:1.3
}
    .item-commitment ul li img{
        width: 50px;
    }
.list-policy ul li h2 {
    font-size: 16px;
    color: #fff;
    text-transform:uppercase;
    font-weight:600
}
.list-policy ul li {
    display: flex;
    gap: 15px;
    align-items: center;
}
.list-policy ul li:after {
    content: "";
    width: 1px;
    height: 100%;
    background: #839df7;
}
    .list-policy ul li:last-child:after
    {
        display:none
    }
.data-slider-slick.-flash-sale .slick-track {
    display: block;
    padding-top: 20px;
    float: left;
}
.data-slider-slick.list-cate-prod .slick-track {
    display: flex;
    gap: 30px;
    margin-left: unset;
}
.data-slider-slick.-flash-sale .slick-slide img {
    min-height: 230px;
    max-height: 230px;
}
.collection-item .item img {
    min-height: 100px;
    max-height: 100px;
}
.list-policy img {
    max-height: 39px;
}
.data-slider-slick .slick-track:before, .data-slider-slick .slick-track:after {
    display: none
}
.data-slider-slick .slick-slide {
    height: auto;
	padding: 5px;
}
.data-slider-slick .slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

    .data-slider-slick .slick-arrow i {
        background: #f2f2f2 !important;
        height: 50px;
        width: 50px;
        border-radius: 100% !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .data-slider-slick .slick-arrow.slick-next {
        right: -5px;
    }

    .data-slider-slick .slick-arrow.slick-prev {
        left: -5px;
    }
.data-slider-slick .AdItem_item__1kT2X {
    height: 100%
}
.list-img-feedback .item img {
    min-height: 700px;
    max-height: 700px;
    object-fit: cover;
    width: 100%;
}
.list-img-feedback > div
{
    display:flex;
    gap:10px;
}

.list-blog .item img {
    min-height: 200px;
    max-height: 200px;
    object-fit: cover;
    width: 100%;
}
.list-blog .slick-track {
    gap: 15px;
    display:flex
}
.list-policy ul
{
    gap:30px;
}
.relate-blog ul li img {
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
    width: 100%;
}
.blogCard__content ul
{
    padding-left:30px;
}
.blogCard__content ul li{
    list-style: disc;
}
.blogCard__content img
{
    border-radius:4px;
    margin:10px 0;
    width:100%;
}
.AdItem_item__1kT2X:hover {
    transform: translateY(-10px);
    transition: 0.3s all ease;
}
.AdItem_item__1kT2X {
    transition: 0.3s all ease;
}
#_upCate .content_ h2 {
    display: flex;
    position: relative;
    gap: 10px;
    width: 100%;
}
/*#_upCate .content_ h2:before {
    content: "";
    width: 3px;
    background: #0031da
}*/
    #_upCate .content_ h2:before {
        content: "";
        border-bottom: 1px solid #ffffff;
        display: table;
        top: 45%;
        width: 100%;
        position: absolute;
        z-index: 9;
    }
    #_upCate .content_ h2::after {
        content: "";
        border-bottom: 1px solid #ffffff;
        display: table;
        top: 60%;
        width: 100%;
        position: absolute;
        z-index: 9;
    }
#_pnAboutUs tr img {
    width: 100%;
    border-radius: 4px
}

#_pnAboutUs table, #_pnAboutUs figure {
    width: 100% !important;
    padding: 0;
}
table.ck-table-resized tr td:last-child {
    padding-left: 50px;
}
#_pnAboutUs ul li {
    list-style: disc;
}

#_pnAboutUs ul {
    padding-left: 30px;
    margin: 10px 0;
}

#_pnAboutUs h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

#_pnAboutUs h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

#_pnAboutUs p {
    line-height: 1.3;
    margin-bottom: 10px;
    font-size: 14px;
}
/*detail Prod*/
.product-price__discount-rate {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    padding: 0px 4px;
    background: rgb(245, 245, 250);
    border-radius: 8px;
}
.product-list-after-sales ul li i {
    color: #00b14f;
    font-size: 15px;
}
.product-list-after-sales ul li, .product-list-specifications ul li {
    display: flex;
    gap: 5px;
    align-items: center;
    border-bottom: #f4f4f4 solid thin;
    padding: 7px 15px;
}
.product-list-specifications ul li {
    justify-content:space-between
}
.product-detail p {
    font-size: 14px;
}
.product-detail p{
    line-height: 1.5 !important;
    margin:5px 0;
}
.product-detail .image, .product-detail .media {
    text-align:center
}
.product-detail h2, .product-detail h3, .product-detail h4 {
    font-size: 16px;
    margin: 10px 0;
}
.product-detail .media {
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}
.product-detail p strong {
    margin: 10px 0;
    display: flex;
}
.other-offers ul
{
    display:flex;
    gap:5px;
    flex-direction:column
}
.other-offers ul li {
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500
}
.other-offers ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    color: #00b14f;
    align-items: center;
    padding-right:5px;
}
    .other-offers ul li a {
        color: var(--color-green-5);
        text-decoration: underline;
    }
.top-160 {
    top: 160px;
}
.top-170 {
    top: 170px;
}
.product-detail img {
    border-radius: 4px;
}
.-list-color .item input[type="radio"] {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0;
}
.-list-color .item input[type="radio"]
{

}
.-list-color .item:has(input[type="radio"]:checked) .item-color {
    border: 2px solid #e6eaf9;
    background: #e6eaf9;
}
.-list-color .item:has(input[type="radio"]:checked) .item-color:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 7px;
    background: #0031da;
    color: #fff;
    line-height: 1.3;
    border-bottom-left-radius: 30px;
    padding: 3px 3px 3px 4px;
}
.wh-15 {
    width: 15px;
    height: 15px;
}
.wh-100px {
    width: 100px;
    height: 100px;
}
.item-color {
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    padding: 6px;
}
.slider-img-prod .slick-track
{
    display:block
}
.slider-img-prod .slick-slide {
    border-radius: 4px;
    overflow: hidden;
}

.slider-img-prod .slick-slide img {
    
    min-height: unset;
    max-height: unset;
    object-fit: cover;
    width: 100%;
}
.slider-nav .slick-slide {
    border-radius: 4px;
    padding: 5px;
    border: #f4f4f4 solid 2px;
}
    .slider-nav .slick-slide img {
        border-radius: 4px;
        min-height: 63px;
        max-height: 63px;
        object-fit: cover;
        width: 100%;
    }
    .slider-nav .slick-slide.slick-current.slick-active, .slider-nav .slick-slide.slick-current.slick-center {
        border: #e6eaf9 solid 2px;
    }
.button.-purple-6.aspNetDisabled:hover {
    background: #f8a69a
}
.button.-purple-0.aspNetDisabled:hover {
    color:#fff
}
.slider-img-prod {
    max-height: 508px;
    overflow: hidden;
}
.icons-flash-sale {
    position: absolute;
    top: -40px;
    border-radius: 7px;
    width:140px;
    overflow:hidden
    /*padding: 10px 20px;
    background: #fc6d12;
    background: linear-gradient(116deg, #ff5d19 50%, #f69203 0%);*/
}
.count-cart {
    top: -7px;
    right: -10px;
    background: red;
    display: flex;
    padding: 3px;
    width: 17px;
    font-size: 11px;
    line-height: 1;
    border-radius: 4px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.list-cate-prod .slick-slide img {
    border-radius: 4px;
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
    width: 100%;
    overflow:hidden
}
.list-cate-prod
{
    max-height:170px;
    overflow:hidden
}
.list-item-prod-cate .ilOvBp {
    flex-basis: calc((100% / 3) - (20px * 3 / 2));
}
.style-sort li label
{
    margin:0;
    font-size:14px;
}
.style-sort li
{
    display:flex;
    gap:5px;
}
#_btnClearSort {
    height: auto;
}
.list-collection .slick-slide img {
    border-radius: 4px;
    min-height: 100px;
    max-height: 100px;
    object-fit: cover;
    width: 100%;
    overflow: hidden
}
.cart-item ul li {
    border-bottom: #f4f4f4 solid thin;
    padding: 10px;
}
    .cart-item ul li:last-child
    {
        border:none
    }
.gEpOC {
    display: inline-flex;
    flex-wrap: nowrap;
    border: 1px solid #3333331a;
    border-radius: 4px;
    align-items: center;
    line-height: 1.3;
    padding: 10px;
}
#_txtNum {
    border: none;
    font-size:13px;
}
    #_txtNum:focus
    {
        outline:none
    }
.color-c8c8c8 {
    color: #c8c8c8;
}
._form-text:focus {
    outline: none;
}

._form-text {
    width: 100%;
    padding: 10px 15px;
    border: none;
    background: #f5f5fa;
    border-radius: 4px;
}
.close-pop {
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
.bg-partner {
    background: url(/img/bg-partner.jpg) left center no-repeat;
    background-size: 100% 100%;
    background-attachment: fixed;
}

.lazyloaded.linear-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 1;
}
@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.linear-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #dddddd 18%, #eeeeee 33%);
    background-size: 1000px 104px;
    height: 237px;
    position: relative;
    display:flex;
    border-radius:7px;
}
.box-show-addcart {
    top: 35px;
    min-width: 200px;
    box-shadow: #4747471c 1px 1px 5px;
    flex-direction:column;
    display:none
}
.box-show-addcart::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 7px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent rgb(255, 255, 255);
    border-image: initial;
}
.box-show-addcart .btn-view-cart {
    display: flex;
    margin-top: 10px;
    padding: 15px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(255, 57, 69);
    border-radius: 4px;
    font-size: 13px;
}
.show-cart
{
    display:flex
}
.text-voucher {
    border: #7545f0 solid thin;
    padding: 3px;
    color: #7545f0;
    background: linear-gradient(to right, #7545f0 0%, #a480ff 100%);
    background-clip: text;
    color: transparent;
}
.radius-4left {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.radius-7left {
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}
#_pnVoucher .arrow-voucher:after {
    background: linear-gradient(-137deg, #ffc107 6px, transparent 0) 0 5px, linear-gradient(320deg, #ffc107 5px, transparent 0) 0 5px;
    background-position: left;
    background-repeat: repeat-y;
    background-size: 10px 10px;
}
.arrow-voucher:after {
    left: auto;
    right: -10px;
    top: 0;
    transform: scaleX(-1);
}

.arrow-voucher:after {
    top: 0;
    right: -8px;
    content: '';
    width: 10px;
    height: 100%;
    position: absolute;
    background-color: #fff;
    background: linear-gradient(-137deg, #eae3fd 6px, transparent 0) 0 5px, linear-gradient(320deg, #eae3fd 5px, transparent 0) 0 5px;
    background-position: left;
    background-repeat: repeat-y;
    background-size: 10px 10px;
    /* border-left: #fff dashed thin; */
}

.arrow-voucher-acc:after {
    background: linear-gradient(-137deg, #ffffff 6px, transparent 0) 0 5px, linear-gradient(320deg, #ffffff 5px, transparent 0) 0 5px;
    background-position: left;
    background-repeat: repeat-y;
    background-size: 10px 10px;
}
.btn-voucher-add:hover {
    background: linear-gradient(to right, #7545f0 0%, #a480ff 100%);
}
.radio-wrapper
{
    padding:0;
    margin:0
}
.radio-wrapper li label {
    margin: 0;
    font-size:13px;
}
    .radio-wrapper li
    {
        display:flex;
        gap:5px;
    }
.w-30per {
    width: 30%;
}
.info-method p, .info-method h1, .info-method h2, .info-method h3 {
    font-size: 13px;
    line-height: 1.5;
    font-weight: normal;
}
.qr-footer img
{
    max-height:100px;
}
.backdrop-modal-right- {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: #333333cc;
    z-index: 999;
    height: 100vh;
}
.box-data {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fff;
}
.left-0 {
    left: 0;
}
.-results-search {
    position: absolute;
    background: #fff;
    width: 100%;
    right: 0;
    left: 0;
    border-radius: 4px;
    padding: 15px;
    box-shadow: #4747471c 1px 1px 5px;
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.step-cart {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}
.-desktop-bar {
    position: fixed;
    right: 0;
    bottom: 160px;
    display: flex;
    padding: 24px 8px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 20px 0px 0px 20px;
    background: #FFF;
    box-shadow: -2px 2px 4px 0px rgba(0, 0, 0, 0.20);
    font-size: 2em;
    line-height: 1;
    z-index:9
}
    .-desktop-bar ul {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
        .-desktop-bar ul li a {
            color: #0055a6 !important;
            font-size: 34px;
        }
        .-desktop-bar ul li
        {
            text-align:center
        }
        .-desktop-bar a img {
            width: 40px;
            height: 40px;
            object-fit: contain;
        }
.-mobi-bar a {
    color: #0055a6 !important;
    font-size: 27px;
}
.-mobi-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background:#fff;
    padding:10px;
    z-index:999
}
.-mobi-bar ul {
    display: flex;
    gap: 5px;
    justify-content: space-between;
}
.-mobi-bar a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}
    .-mobi-bar a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 5px;
        height: 100%;
        flex-direction: column;
    }
.-mobi-bar a p {
    line-height:1;
    font-weight:500;
    font-size:13px;
}
.blogCard__content h2, .blogCard__content h3, .blogCard__content h4, .blogCard__content h5{
    font-size: 17px;
    margin: 10px 0
}
    .blogCard__content h2 strong, .blogCard__content h3 strong, .blogCard__content h4 strong {
        font-weight: 600
    }
.tab-prod .active
{
    border-bottom:#0031da solid 2px;
    color:#0031da !important
}
#_pnSlider .slick-track:before, #_pnSlider .slick-track:after {
    display:none
}
#_pnSlider .slick-slide img {
    border-radius: 0;
    object-fit: contain;
    width: 100%;
    min-height: 717px;
    max-height: unset;
    
}
    #_pnSlider .slick-slide img[imageLoaded='false'] {
        opacity: 0;
    }
.slider-index {
    min-height: 100%;
    min-height:717px
}
    .slider-index.data-slider-slick .slick-arrow.slick-prev {
        left: 20px;
    }
    .slider-index.data-slider-slick .slick-arrow.slick-next {
        right: 20px;
    }
#_pnBannerSmall .slick-slide img {
    object-fit: contain;
    min-height: unset;
    max-height: unset;
}
#_pnBannerSmall .slick-slide a, #_pnBannerSmallTwo .slick-slide {
    margin: 0 10px;
    float: left;
}
/*menu mobi*/
.nav-mobile {
    padding: 0;
    color: #fff;
    line-height: 1.3;
    top: 0;
    z-index: 999;
    position: absolute;
}

body .nav-mobile {
    padding-left: 15px;
    padding-right: 0;
    padding-top: 20px;
}

.nav-mobile .navbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-mobile .navbar-burger {
    width: 100%;
}

    .nav-mobile .navbar-burger i {
        font-size: 22px;
    }

.nav-mobile .navbar-cart {
    flex: 0 0 70px;
    max-width: 70px;
    display: flex;
    align-items: center;
}

.nav-mobile .navbar-cart_search {
    padding-right: 15px;
}

    .nav-mobile .navbar-cart_search i {
        font-size: 19px;
    }

.nav-mobile .input-group {
    width: 100%;
    max-width: unset;
}

    .nav-mobile .input-group input {
        margin-top: 10px;
        margin-bottom: 10px;
        border-radius: 3px !important;
    }

.nav-mobile .list-suggest-category {
    padding-bottom: 5px;
}

    .nav-mobile .list-suggest-category a {
        display: inline-block;
        padding: 0 10px;
        border-radius: 30px;
        background-color: #dfdfdf;
        margin-right: 6px;
        font-size: 12px;
        margin-bottom: 6px;
        color: #000;
    }

.nav-mobile .nav-mobile-search {
    height: 0;
    transition: height 0.25s ease-in-out;
    overflow: hidden;
}

.nav-mobile .header-left-menu {
    position: absolute;
    left: -355px;
    top: 0;
    transition: all 0.25s ease-in-out;
    z-index: 10;
    height: 100vh;
    background-color: #fff;
}

    .nav-mobile .header-left-menu > .inner {
        overflow-x: hidden;
        width: 355px;
        height: calc(100vh - 30px);
        background-color: #fff;
        padding-bottom: 150px;
        position: relative;
    }

body.menu-child-category-show .nav-mobile .header-left-menu > .inner,
body.menu-child-show .nav-mobile .header-left-menu > .inner {
    overflow: hidden;
}

body.menu-show .nav-mobile .header-left-menu {
    left: 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.nav-mobile .header-title {
    height: auto;
    border: 0;
    padding: 16px 16px;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid #f3f3f3;
    background-color: #f3f3f3;
    color: #333;
    display: flex;
    align-items: center;
}

.nav-mobile .mobile-button-header {
    width: 100%;
    display: block;
    background-color: #50ad4e;
    color: #fff;
    border-radius: 3px;
    border: 2px solid #50ad4e;
    padding: 4px 12px;
    min-width: 102px;
    text-align: center;
}

.nav-mobile .mobile-button-header__outline {
    background-color: #ff7818;
    color: #fff;
    border-color: #ff7818;
}

.nav-mobile .mobile-button-header__outline-green {
    background-color: #fff;
    color: #50ad4e;
    border-color: #50ad4e;
}

.nav-mobile .navbar-bottom {
    justify-content: center;
    padding-top: 10px;
}

.nav-mobile .mobile-button-wrap {
    flex: 0 0 50%;
    max-width: 50%;
}

    .nav-mobile .mobile-button-wrap:first-child {
        padding-right: 10px;
    }

    .nav-mobile .mobile-button-wrap:last-child {
        padding-left: 10px;
    }

.nav-mobile .list-category {
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #dfdfdf;
}

.nav-mobile .list-category .item {
    display: flex;
    padding: 10px 16px;
    color: #434343;
    width: 100%;
    gap:5px;
    justify-content:space-between;
    flex-direction:column;
}

.nav-mobile .list-category .child-item {
    display: none;
    flex-direction: column;
    background: #f4f7ff;
    margin-top: 5px;
}

.nav-mobile .list-category .child-item .item-child {
    padding: 10px;
}
.nav-mobile .list-category .child-item .item-child a {
    padding: 0;
    text-transform: uppercase;
}
.nav-mobile .list-category .child-item .item-child .child-icon-end {
    padding-left: 15px;
}
.nav-mobile .list-category .child-item .item-child .data-child-end a {
    display: flex;
    width: 100%;
    padding: 5px 10px;
    text-transform: uppercase;
}

    .nav-mobile .list-category a {
        display: flex;
        color: #434343;
        width: 100%;
        font-size: 14px;
        text-transform: uppercase;
        font-weight: 600;
    }
    .nav-mobile .list-category .child-item.active, .nav-mobile .list-category .data-child-end.active {
        display: flex;
    }
.nav-mobile .list-category .data-child-end {
    display:none;
    flex-direction:column
}

.nav-mobile .list-category .item img {
    width: 16px;
    height: auto;
}

.nav-mobile .list-category .item .name {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
}

    .nav-mobile .list-category .item .child-icon {
        font-size: 14px;
        color: #d5d5d5;
        padding-left: 10px;
    }
    .nav-mobile .list-category .item .fa-chevron-right {
        background: #edf2fa;
        padding: 5px;
        border-radius: 2px;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.3;
    }

.nav-mobile .head-direction {
    flex-direction: column;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-mobile .nav-item {
    padding: 0;
    width: 100%;
}

.nav-mobile .nav-link {
    color: #000;
    padding: 10px 16px;
    font-weight: 400;
}

.nav-mobile .user-login img {
    border-radius: 50px;
    width: 32px;
    height: 32px;
}

.nav-mobile .user-login .text {
    font-size: 14px;
    padding-left: 10px;
    line-height: 1.3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

    .nav-mobile .user-login .text i {
        margin-left: 10px;
    }

.nav-mobile .header-child-category {
    overflow: auto;
    position: absolute;
    width: 260px;
    height: 100%;
    left: 260px;
    background-color: #fff;
    top: 0;
    transition: left 0.25s ease-in-out;
}

body.menu-child-show .nav-mobile .header-user {
    left: 0;
}

.nav-mobile .header-child-category .list-category {
    border: 0;
}

body.menu-child-category-show .nav-mobile .header-child-category {
    left: 0;
}

.nav-mobile .go-back i {
    margin-right: 10px;
}

.nav-mobile .btn-close {
    position: absolute;
    right: -50px;
    top: 7px;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.25s ease-in-out;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    opacity:1
}

    .nav-mobile .btn-close i {
        font-size: 22px;
        color: #333;
    }

body.menu-show .nav-mobile .btn-close {
    transform: scale(1);
}

.nav-mobile .nav-header {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    min-height: 54px;
    background-color: #f4f7ff;
    font-size: 15px;
    font-weight: 700;
    color: #0031da;
}

body.menu-show {
    overflow: hidden;
}
.fb-page, .fb-page span, .fb-page.fb_iframe_widget span iframe {
    width: 100% !important;
}
footer tr
{
    border:none
}
footer tr td figure {
    margin: 0
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fff;
    background-color: #fff;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-size: 30px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    content: '';
    text-align: center;
    opacity: .5;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border: 3px solid #fff;
    border-radius: 100%;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 12px;
    height: 12px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    bottom: 15px;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        width: 12px;
        height: 12px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
    }

.nav-item {
    padding: 0.5rem 0px;
}

.navbar-nav li {
    padding-right: 25px;
}

    .navbar-nav li:last-child {
        padding-right: 0;
    }

.dropdown-menu.-main {
    border-bottom: 1px solid #e1e1e1 !important;
}

.dropdown-menu {
    padding: 0;
    background: #f9f9f9
}

    .dropdown-menu.-child.active {
        display: inline-block;
    }

    .dropdown-menu.-main .dropdown-menu, .navbar-nav .dropdown-hover:hover > .dropdown-menu {
        left: 0;
        right: 0;
        top: 53px;
        border: none;
        border-radius: 0;
    }

.navbar-nav .dropdown-hover:hover > .dropdown-menu {
    display: inline-block;
}

.dropdown-menu.-main .dropdown-menu {
    padding: 20px 0;
    box-shadow: 0 6px 6px -7px #c1c1c1;
    top: 56px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding: 15px 0;
    border-bottom: transparent solid 1px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    color: #20315c;
    display: flex;
    align-items: center;
}

.dropdown-hover > .dropdown-toggle:active {
    pointer-events: none;
}

.dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    display: inline-block;
    margin: 0;
    border: none;
    vertical-align: unset;
    font-size: 10px;
    padding-left: 7px;
}

.nav-item.dropdown:hover > .nav-link, .navbar-nav .nav-link:hover {
    color: #0031da
}

.dropdown-menu.-main a.active {
    border-bottom: #0031da solid 1px !important;
    color: #0031da
}

.navbar-expand-lg, .nav-item {
    padding: 0;
}

.list-group- {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .list-group- a {
        font-size: 13px;
        text-transform: uppercase;
        color: #333333cc;
        display: flex;
        align-items: center;
        gap: 6px;
        line-height: 1.3;
        transition: 0.3s all ease;
    }

        .list-group- a:hover {
            color: #0031da;
            transition: 0.3s all ease;
        }

        .list-group- a:before {
            content: "\f054";
            font-family: "Font Awesome 6 Pro";
            font-weight: 900;
            opacity: 0;
            transform: translateX(-5px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            font-size: 10px;
            margin-right: 5px;
        }

        .list-group- a:hover:before {
            opacity: 1;
            transform: translateX(0);
        }

    .list-group- .item a {
        text-transform: uppercase;
        font-weight: 600;
        color: #0031da;
        position: relative;
        flex-direction: column;
        justify-content: start;
        text-align: left;
        align-items: start;
    }

        .list-group- .item a:before {
            display: none
        }

        .list-group- .item a:after {
            content: "";
            width: 55px;
            height: 1px;
            background: #0031da;
        }

.navbar-nav .dropdown-menu.other {
    background: #fff;
    border-radius: 0 0 4px 4px;
    border: none;
    overflow: hidden;
    padding: 15px 0;
    margin: 0
}

    .navbar-nav .dropdown-menu.other li {
        padding: 0
    }

    .navbar-nav .dropdown-menu.other .dropdown-item:focus, .navbar-nav .dropdown-menu.other .dropdown-item:hover {
        color: #0031da;
        background: #fff;
    }

    .navbar-nav .dropdown-menu.other li a {
        font-size: 13px;
        text-transform: uppercase;
        padding: 0 15px;
    }

.nav-item.dropdown.other:hover .dropdown-menu.other,
.nav-item.dropdown.other:hover .nav-link.dropdown-toggle {
    display: flex;
}

.nav-mobile .nav-item.other a {
    justify-content: space-between
}

.nav-mobile .nav-item.dropdown.other {
    flex-direction: column
}

    .nav-mobile .nav-item.dropdown.other .dropdown-menu.other {
        border: none;
        border-radius: 0;
        width: 100%;
        display: none
    }

        .nav-mobile .nav-item.dropdown.other .dropdown-menu.other.show {
            transform: unset !important;
            position: relative !important;
            display: flex;
            padding-left: 15px;
        }

        .nav-mobile .nav-item.dropdown.other .dropdown-menu.other li {
            width: 100%;
            display: flex
        }

            .nav-mobile .nav-item.dropdown.other .dropdown-menu.other li a {
                padding: 15px;
            }

.child-iteam-cate ul {
    display: flex;
    gap: 5px;
    flex-direction: column
}

._title-sort {
    border-radius: 4px;
    background: #f4f7ff;
    border: #0031da solid thin;
    padding: 5px 20px;
    text-align: center;
}

.list-sort .active, .sort-other .active {
    background: #0031da;
    color: #fff
}

.clear-sort {
    background-color: var(--color-purple-6);
    border: 2px solid var(--color-purple-6);
    border-radius: 4px;
    padding: 5px 20px;
    text-align: center;
}

.list-sort, .sort-other {
    overflow-x: auto;
}

#_pnFastSale .slick-list {
    margin: 0 -15px;
}

#_pnFastSale .data-slider-slick .AdItem_item__1kT2X {
    height: 100%;
    margin: 0 10px;
}

.title-cate {
    background: #0031da;
    padding: 15px;
    display: flex;
    width: 100%;
}

    .title-cate .name-cate {
        background: #0031da;
        z-index: 99;
        padding-right: 10px;
    }

#_upCate .image {
    margin: 0;
    border-radius: 7px;
    overflow: hidden
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    border-radius: 4px;
    background: var(--Bg-white, #FFF);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.12);
    color: #0031da;
    font-weight: 600
}

.nav-pills .nav-link {
    display: flex;
    min-width: 160px;
    padding: 6px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.6);
    color: #333;
    font-size: 14px;
}

#_pnPartner .tab-content {
    max-width: 700px;
    margin: 0 auto;
}

    #_pnPartner .tab-content .tab-pane {
        padding: 0;
        gap: 15px;
        grid-template-columns: repeat(6, 1fr);
    }

        #_pnPartner .tab-content .tab-pane p {
            margin: 0
        }

        #_pnPartner .tab-content .tab-pane img {
            border-radius: 7px;
        }
        #_pnPartner .tab-content > .active {
            display: grid;
        }

.tab-content > .tab-pane {
    display: none;
}
#_pnJournalism .data-journalism {
    padding: 0;
    gap: 15px;
    grid-template-columns: repeat(5, 1fr);
    display: grid;
    max-width: 700px;
    margin: 0 auto;
}
#_pnImgFeedback h2 p
{
    font-size:18px;
}
.data-branch a {
    color: #4A90E2;
    text-decoration: underline;
}
.data-branch .slick-slide img {
    min-height: 247px;
    max-height: 247px;
    object-fit: cover;
    width: 100%;
    border-radius:7px;
}
.show-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    text-align: center;
    gap: 10px;
    padding: 10px 15px;
    border: var(--color-purple-1) solid thin;
    margin: 0 auto;
}
.product-detail.active:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 78%;
    background: #fff;
    bottom: -10px;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.42) 74.48%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-180deg);
    z-index: 99;
}
.product-detail {
    max-height: initial;
    overflow: hidden;
    position: relative;
}
    .product-detail.active {
        max-height: 800px;
    }
.alinkfs {
    border: 2px solid #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
}
._title-box a {
    z-index: 10;
    font-size: 20px;
    position: relative;
    color: #0031da;
    text-transform: uppercase;
    display: block;
    
}
._title-box h2 a::before {
    content: "";
    border-bottom: 1px solid #0031da;
    border-top: 0 solid #0031da;
    display: table;
    top: 55%;
    width: 100%;
    position: absolute;
    z-index: 9;
}
._title-box h2 a::after {
    content: "";
    border-bottom: 1px solid #0031da;
    display: table;
    top: 63%;
    width: 100%;
    position: absolute;
    z-index: 9;
}
._title-box a span {
    background: #f4f7ff;
    z-index: 999;
    position: relative;
    padding: 20px;
    font-weight: 700
}

.list-video .item img {
    width: 100%;
    min-height: 165px;
    max-height: 165px;
    object-fit: cover;
}
.list-video .item-first img {
    width: 100%;
    min-height: 407px;
    max-height: 407px;
    object-fit: cover;
}
.list-cate-index .item {
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
}
    .list-cate-index .item h2
    {
        background:#0031da;
        padding:10px;
        text-align:center;
        color:#fff;
        font-size:13px !important;
    }
figure.media {
    width: 100%;
    margin:0
}
.btn-action-pop {
    width: max-content;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #db2121;
    background-color: #ffffff;
    border: 1px solid #db2121;
    letter-spacing: 0;
    padding:10px 30px;
    font-weight:600
}
    .btn-action-pop:hover {
        background: #db2121;
        color: #ffffff;
    }
.pop-cart .content- .item {
    border-bottom: 1px solid #dddddd;
    padding: 10px 0;
}
.btn-action-addcart-detail {
    width: max-content;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    background-color: #db2121;
    border: 1px solid #db2121;
    letter-spacing: 0;
    padding: 10px 20px;
    font-weight: 600
}
#_txtNumDetailPop {
    width: 50px;
    text-align: center;
    border: 2px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}
.loading-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999
}
.-img-promotionframe {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    text-align: left;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}
    .-img-promotionframe img {
        width: 100%;
        min-height: unset;
        max-height: 100%;
    }
.btn-paginationpage
{
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:4px;
}
    .btn-paginationpage:disabled, .btn-paginationpage:hover {
        background: #0031da;
        color: #fff
    }
.list-news .item img {
    max-height:100px;
    min-height:100px;
    object-fit:cover;
    width: 100%;
}
.list-cate-blog {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}
/*.list-cate-blog .item:first-child {
    grid-column: span 2;
}*/
.news-hot .first-img img {
    aspect-ratio: 1 / 1.027;
    object-fit: cover;
    width: 100%;
}
.news-hot .first-item:after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.flexland {
    position: absolute;
    bottom: 15px;
    z-index: 999;
    left: 0;
    width: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding:0 15px;
    font-weight:600
}
    .flexland:hover
    {
        color:#fff
    }
.news-hot .seccond-img img {
    aspect-ratio: 2 / 1;
    object-fit: cover;
    width: 100%;
}
.border-lr {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}
.box-content-rating {
    min-width: 950px;
    max-width: 950px;
}
    .box-content-rating img {
        min-height: 623px;
        max-height: 623px;
        object-fit: cover;
    }
.list-img img {
    min-height: 104px;
    max-height: 104px;
    object-fit: cover;
	width: 100%;
}
.list-img-attach img {
    min-height: 65px;
    max-height: 65px;
    object-fit: cover;
	width: 100%;
}
.section-bg {
    background: url("/img/bg-about-footer.jpg");
    background-size: cover;
}
.row-about-home {
    background: #000000a6;
}
.col-left-about:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    opacity: .3;
}
.divider {
    max-width: 60px;
    background-color: #fff205;
    height:3px
}
.col-right-about .item:after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    position: absolute;
    right: 0;
    top: 0;
    opacity: .3;
}

.col-right-about .col-get::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -.5px;
    opacity: .3;
}
.banner-sidebar-cate {
    position: sticky;
    top: 130px;
}









@media (min-width: 768px) {
    .header__logo img {
        height: 35px;
    }
    .aw__m1n72bce {
        position: absolute;
        width: 300px;
        height: auto;
        max-height: 80vh;
        top: 78px;
        right: 0;
        left: auto;
        background: #FFFFFF;
        padding: 8px 0px;
        -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        border-top: none;
        border-radius: 7px;
        overflow-y: auto;
    }
    .lg\:pt-15 {
        padding-top: 15px !important
    }
    
}

@media (max-width: 768px) {
    .list-img img {
        min-height: 70px;
        max-height: 70px;
        object-fit: cover;
    }
    .border-lr
    {
        border:none !important
    }
    .list-cate-blog .item {
        grid-column: span 2;
    }
    .list-cate-index .item h2 {
        font-size: 10px !important;
    }
    .list-video .item img {
        width: 100%;
        min-height: unset;
        max-height: 100%;
        object-fit: cover;
    }
    .footer ul {
        flex-direction: unset;
        flex-wrap: wrap;
    }
    .footer ul > li {
        width: calc(100% / 2 - 5px);
    }
    table.ck-table-resized tr td:last-child {
        padding-left: 0;
    }
    .slider-index.data-slider-slick .slick-arrow.slick-next {
        right: 5px;
    }
    .slider-index.data-slider-slick .slick-arrow.slick-prev {
        left: 5px;
    }
    .slider-index {
        min-height: auto;
    }
    #_pnSlider .slick-slide img {
        width: 100%;
        min-width: 100%;
    }
    .md\:layout-pb-lg {
        padding-bottom: 80px !important;
    }
    .md\:gap-2 {
        gap: 10px !important;
    }
    .md\:mb-15 {
        margin-bottom: 15px;
    }
    .md\:w-100 {
        width: 100% !important
    }
    .md\:p-0 {
        padding: 0 !important
    }
    .md\:mt-0 {
        margin-top: 0 !important
    }
    .md\:radius-0 {
        border-radius:0
    }
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
    .md\:grid-cols-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .md\:p-01015 {
        padding: 0 10px 15px;
    }
    .md\:flex-basis-50 {
        flex-basis: calc(50% - 10px) !important;
    }
    .md\:flex-column {
        flex-direction:column
    }
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .size-180 {
        flex-shrink: 0;
        width: 133px;
        height: 133px;
    }

    .sm\:text-14 {
        font-size: 14px;
    }

    .sm\:flex-column {
        flex-direction: column
    }

    .sm\:px-0 {
        padding: 0
    }


    .list- .item {
        flex: 1 1 calc(50% - 20px);
        padding: 10px;
        background-color: #eae3fd;
        box-sizing: border-box;
        border-radius: 7px;
    }

        .list- .item h4 {
            font-size: 16px !important;
        }

        .list- .item span {
            font-size: 13px;
            line-height: 1.3 !important;
            display: flex
        }
    #_pnData .breadcrumb{
        padding: 0 15px;
    }
    #_pnData .block-info {
        display: block !important;
    }
    #_pnData .w-35, #_pnData .w-65, #_pnData .info- > * {
        width: 100%
    }
    #_pnData .info- {
        flex-direction: column;
    }
    .breadcrumb ul li:last-child {
        display: none
    }
    .box---chat
    {
        flex-direction:column
    }
    .manager_containerchat__
    {
        position:unset
    }
    #_pndatachat {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        background: #fff;
        z-index: 999;
    }
    .height100vh_71
    {
        height:100%
    }
    
    .w50per {
        max-width: 100%
    }
    .w50px
    {
        flex-shrink:0
    }
    ._myms ._messenger, ._cusms ._messenger, #_pnInfo .w-50 {
        width: 100% !important
    }
    .md\:text-12 {
        font-size:12px !important;
    }
    #_pnCateProd .AdThumbnail_thumbnailWrapper__3VrMU img, .data-slider-slick.-flash-sale .slick-slide img {
        min-height: 160px;
        max-height: 160px;
    }
    .data-slider-slick .slick-arrow i {
        height: 40px;
        width: 40px;
    }
    .item-commitment ul, .list-policy ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .list-after-sales
    {
        display:none
    }
    .list-policy ul li {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        border-right: #839df7 solid thin;
        border-bottom: #839df7 solid thin
    }
        .list-policy ul li:nth-child(3), .list-policy ul li:nth-child(4) {
            border-bottom: none
        }
        .list-policy ul li:nth-child(2), .list-policy ul li:nth-child(4) {
            border-right: none
        }

    .list-policy ul
    {
        gap:0;
    }
    .list-policy ul li:after
    {
        display:none
    }
    .mx-20per
    {
        margin:0
    }
    .icons-flash-sale, ._box-timer {
        position: relative !important;
        top: 0
    }
    .md\:my-5 {
        margin: 0 5px
    }
    .md\:my-15 {
        margin: 0 15px
    }
    .md\:grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .box-show-addcart {
        top: 35px;
        right: 0;
        z-index: 9;
    }
        .box-show-addcart::before {
            right: 7px;
            left: unset;
        }
    .masthead__bg_two_img {
        background: linear-gradient(116deg, #ff5d19 10.84%, #f69203 38.64%, #ffb992 68.26%, #fda82c 92.1%);
    }
    .sm\:w-32 {
        width: 7rem;
    }
    .-desktop-bar {
        display: none
    }
    .-mobi-bar
    {
        display:block;
    }
    #_pnSlider .linear-background {
        max-height: 242px !important;
    }
    .tab-prod input[type=submit]
    {
        padding:10px !important;
    }
    #_pnAboutUs tr {
        display: flex;
        flex-direction: column;
    }
    #_pnAboutUs tr img
    {
        width:100%;
        border-radius:4px
    }
    #_pnAboutUs .table > :not(caption) > * > *
    {
        width:100% !important;
    }
    .list-sort, .sort-other {
        padding-bottom: 15px;
    }
    .slider-index-small .slick-track
    {
        display:block
    }
    #_pnFastSale .slick-list {
        margin: -8px !important;
    }
    #_pnBannerSmall .slick-slide a{
        margin: 0
    }
    #_pnBannerSmallTwo .slick-slide {
        margin: 0 5px
    }
    .slider-index-small-two .slick-track {
        margin: 0
    }
    .slider-index-small-two .slick-dots {
        bottom: 0;
        position: relative
    }
        .slider-index-small-two  .slick-dots li button:before
        {
            width:7px;
            height:7px;
        }
    #_pnPartner .tab-content .tab-pane {
        grid-template-columns: repeat(3, 1fr);
    }
    #_pnBannerSmallTwo .slick-slide a {
        padding: 10px 5px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .col-right-about:before {
        content: "";
        display: block;
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        left: 0;
        top: 0;
        opacity: .3;
    }
    .masthead.-type-2 {
        margin-top: 80px;
    }
    .-sort > .row {
        justify-content: space-between;
    }
    .info-course {
        padding-left: 0 !important
    }
    #_pnData .grid-cols-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .md\:mb-15 {
        margin-bottom:15px
    }
    .md\:flex-direction-col-reverse {
        flex-direction: column-reverse;
    }
    .container
    {
        max-width:100%
    }

    .box-list-data .owl-nav .owl-next, .-flash-sale .slick-arrow.slick-next {
        right: 15px;
    }

    .box-list-data .owl-nav .owl-prev, .-flash-sale .slick-arrow.slick-prev {
        left: 15px;
    }
    #_pnSlider .linear-background {
        max-height: 215px;
    }
    .header__logo {
        margin-left: 40px;
    }
    .owl-carousel .owl-item img {
        height: 100%;
        object-fit: cover;
    }
    .slider-index .slick-slide img {
        border-radius: 0 !important;
        min-width: 100% !important;
    }
    .slider-index
    {
        min-height:auto
    }
    .slider-index .slick-track {
        display: block;
    }
    #_pnSlider .slick-slide img {
        object-fit: contain;
    }
}
@media (max-width: 1200px) 
{
    .box-content-rating {
        min-width: 100%;
        max-width: 100%;
    }
    .box-content-rating img {
        min-height: unset;
        max-height: 100%;
        object-fit: cover;
    }
}
@media (min-width: 1200px) {
    .header .header-menu .menu__nav > li:hover > a {
        color: var(--color-purple-4);
        background-color: rgba(255, 255, 255, 0.15);
    }

    .header .header-menu .menu .subnav > li > a:hover {
        color: var(--color-purple-4);
    }
    
}

@media (max-width: 1670px) {
    .header.-type-3 .search-m .header-search-field {
        display: block;
    }
    #_pnSlider .slick-slide img
    {
        min-height:unset
    }
}
@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait) {
    .box-chat .w-35 {
        width: 50% !important;
    }
    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .box-list-data .owl-nav .owl-next {
        right: 5px;
    }

    .box-list-data .owl-nav .owl-prev {
        left: 5px;
    }
    .slider-index .slick-slide img {
        min-width: 100% !important;
    }

    .slider-index {
        min-height: auto
    }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape) {
    .grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .box-list-data .owl-nav .owl-next {
        right: 5px;
    }

    .box-list-data .owl-nav .owl-prev {
        left: 5px;
    }
    .data-slider-slick.-flash-sale .slick-slide img {
        min-height: 150px;
        max-height: 150px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }
    
}
@media only screen and (min-device-width: 740px) and (max-device-width: 992px) and (orientation:portrait) {
    .md\:flex-column {
        flex-direction: row !important
    }

    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .md\:flex-basis-50 {
        flex-basis: 25% !important;
    }
    .list-policy ul li h2 {
        font-size: 14px;
    }
    body .nav-mobile {
        padding-top: 55px;
    }
}

@media only screen and (min-device-width: 740px) and (max-device-width: 992px) and (orientation:landscape) {
    .lg\:flex-row {
        flex-direction: row !important
    }

    .lg\:flex-column {
        flex-direction: column !important
    }
    .md\:flex-basis-50 {
        flex-basis: 25% !important;
    }
    .list-policy ul li h2
    {
        font-size:14px;
    }
    body .nav-mobile {
        padding-top: 55px;
    }
}
@media only screen and (min-device-width: 800px) and (max-device-width: 1180px) and (orientation:portrait) {

    .AdThumbnail_thumbnailWrapper__3VrMU img {
        min-height: 150px;
        max-height: 150px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }
    body .nav-mobile {
        padding-top: 55px;
    }
    .data-slider-slick.-flash-sale .slick-slide img {
        min-height: 150px;
        max-height: 150px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:portrait) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
    .md\:flex-basis-50 {
        flex-basis: 25% !important;
    }
    .AdThumbnail_thumbnailWrapper__3VrMU img {
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }

    .lg\:p-0 {
        padding: 0
    }
    body .nav-mobile {
        padding-top: 55px;
    }
    .linear-background {
        max-height: 254px
    }

}
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (orientation:landscape) {
    .AdThumbnail_thumbnailWrapper__3VrMU img {
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }

    .lg\:p-0 {
        padding: 0
    }
    body .nav-mobile {
        padding-top: 55px;
    }
    .linear-background
    {
        max-height:305px
    }
    .data-slider-slick.-flash-sale .slick-slide img {
        min-height: 200px;
        max-height: 200px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }
}
@media only screen and (min-device-width: 800px) and (max-device-width: 1180px) and (orientation:landscape) {

    .AdThumbnail_thumbnailWrapper__3VrMU img {
        min-height: 150px;
        max-height: 150px;
        object-fit: cover;
        width: 100%;
        border-radius: 4px;
    }
    body .nav-mobile {
        padding-top: 55px;
    }
    .linear-background {
        max-height: 255px
    }
}

@media (min-width: 1200px) {
    #navMobile {
        display: none;
    }
    .product-block:hover .actionss {
        left: 0;
    }

    .product-block .actionss {
        width: 100%;
        position: absolute;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: top;
        bottom: 0;
        left: 100%;
        transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        margin-left: 0 !important;
        margin-bottom: 0 !important;
        padding-left: 0 !important;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: flex;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-flow: row wrap;
        -moz-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        justify-content: center;
        -moz-justify-content: center;
        -ms-justify-content: center;
        -webkit-justify-content: center;
        list-style: none;
        z-index:9
    }

    .product-block .actionss > div {
        float: left;
        text-align: center;
        margin-bottom: 0;
        margin-left: 10px;
        cursor: pointer;
    }

        .product-block .actionss a, .product-block .actionss button {
            display: block;
            width: 43px;
            height: 43px;
            border-width: 1px;
            border-style: solid;
            color: #acacac;
            background-color: #fff;
            border-color: #acacac;
            line-height: 41px;
        }

        .product-block .actionss a, .product-block .actionss button {
            border: 0px solid transparent !important;
            -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
            box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1) inset;
            background-color: #ffffff;
            border-radius: 0 !important;
            -webkit-border-radius: 0 !important;
            -moz-border-radius: 0 !important;
            -ms-border-radius: 0 !important;
            -o-border-radius: 0 !important;
            position: relative;
            border: none;
            width: 32px;
            height: auto;
            text-align: center;
            line-height: 32px;
            -webkit-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
            padding: 0;
            display: inline-block;
            vertical-align: top;
            color: #0031da;
        }
        .product-block .actionss a:hover, .product-block .actionss button:hover {
            background-color: #0031da;
            -webkit-box-shadow: 0 0 0 30px #000 inset;
            box-shadow: 0 0 0 30px #0031da inset;
            color: #ffffff;
            -webkit-transition: all 0.3s ease-in-out 0s;
            -o-transition: all 0.3s ease-in-out 0s;
            transition: all 0.3s ease-in-out 0s;
        }

    .btn-cart-products .icon-cart {
        fill: #0031da;
        width: 20px;
        height: 20px;
        display: inline-block;
        transition: all 0.2s ease-in-out;
        font-size: 0;
        vertical-align: middle;
    }

    .product-block .actionss a:hover .icon-cart, .product-block .actionss button:hover .icon-cart {
        fill: #ffffff;
    }

    .product-block.actionss i {
        line-height: 41px;
    }
}
@media (max-width: 1180px) {
    .lg\:w-100 {
        width: 100% !important;
    }

    .min-vh-100 {
        min-height: auto !important
    }
}
@media (max-width: 1199px) {
    .actionss {
        display: none;
    }
}