
.load_overlay2 {
    position: fixed;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 10000;
    display: none;
}

.load_overlay {
    position: fixed;
    background: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 9999;
    display: none;
}

.load_process {
    position: fixed;
    margin: auto;
    z-index: 99999;
    background: #fff;
    width: 400px;
    max-width: calc(90% - 10px);
    height: 100px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
    display: none;
}

.load_note {
    color: #f60;
}

.load_process_2 {
    position: fixed;
    margin: auto;
    z-index: 99999;
    background: #fff;
    width: 400px;
    max-width: calc(90% - 10px);
    height: 120px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    border-radius: 8px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    overflow: hidden;
    display: none;
}

.load_process_2 .loading {
    position: relative;
    width: 100%;
    height: 60px;
}

.load_process_2 .load_note {
    display: flex;
    color: #f60;
    justify-content: center;
    align-items: center;
    height: 20px;
}

.load_process_2 .load_note .list_dot {
    display: flex;
    color: #f60;
    justify-content: flex-start;
    align-items: flex-end;
    height: 10px;
}

.load_process_2 .load_note .loading-dot {
    width: 3px;
    height: 3px;
    background-color: #f60;
    border-radius: 50%;
    margin: 0 2px;
    animation: blinkAnimation 1.5s infinite ease-in-out;
}

.load_process_2 .load_note .loading-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.load_process_2 .load_note .loading-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes loadingAnimation {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.dot1 {
    animation-delay: 0s;
}

.dot2 {
    animation-delay: 2s;
}

.dot3 {
    animation-delay: 4s;
}

@keyframes blinkAnimation {

    0%,
    100% {
        opacity: 1;
    }

    20%,
    40% {
        opacity: 0;
    }

    60%,
    80% {
        opacity: 1;
    }
}

.loading-container {
    position: relative;
    width: 30px;
    height: 30px;
    transform: rotate(45deg);
    transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, transform 0.38s ease-in-out;
    -webkit-transition: opacity 0.38s ease-in-out, visibility 0.38s ease-in-out, transform 0.38s ease-in-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container.abslt {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
}

.loading-container .shape {
    position: absolute;
    width: 15px;
    height: 15px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container .shape.shape-1 {
    left: 0;
    background-color: #4285F4;
    opacity: 0.83;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container .shape.shape-2 {
    right: 0;
    background-color: #33A752;
    opacity: 0.83;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container .shape.shape-3 {
    bottom: 0;
    background-color: #f48a21;
    opacity: 0.83;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container .shape.shape-4 {
    bottom: 0;
    right: 0;
    background-color: #FBBC04;
    opacity: 0.83;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.loading-container .shape-1 {
    animation: shape1 2.5s infinite reverse;
}

.loading-container .shape-2 {
    animation: shape2 2.5s infinite reverse;
}

.loading-container .shape-3 {
    animation: shape3 2.5s infinite reverse;
}

.loading-container .shape-4 {
    animation: shape4 2.5s infinite reverse;
}

@keyframes shape1 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(0, 15px);
    }

    50% {
        transform: translate(15px, 15px);
    }

    75% {
        transform: translate(15px, 0);
    }
}

@keyframes shape2 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-15px, 0);
    }

    50% {
        transform: translate(-15px, 15px);
    }

    75% {
        transform: translate(0, 15px);
    }
}

@keyframes shape3 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(15px, 0);
    }

    50% {
        transform: translate(15px, -15px);
    }

    75% {
        transform: translate(0, -15px);
    }
}

@keyframes shape4 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(0, -15px);
    }

    50% {
        transform: translate(-15px, -15px);
    }

    75% {
        transform: translate(-15px, 0);
    }
}

.bold {
    font-weight: 700;
}

.bg_violet {
    background: #bd10e0 !important;
    ;
}

.bg_green {
    background-color: #8bc34a !important;
}

.bg_orange {
    background-color: #f60 !important;
}

.bg_blue {
    background-color: #04a1d4 !important;
}

.bg_red {
    background-color: #f00 !important;
}

.bg_brown {
    background-color: #c3a34a !important;
}

.bg_green_bold {
    background: #057c40 !important;
}
.border_violet {
    border-color: #bd10e0 !important;
    ;
}

.border_green {
    border-color: #8bc34a !important;
}

.border_orange {
    border-color: #f60 !important;
}

.border_blue {
    border-color: #04a1d4 !important;
}

.border_red {
    border-color: #f00 !important;
}

.border_brown {
    border-color: #c3a34a !important;
}

.border_green_bold {
    border-color: #057c40 !important;
}
.color_violet {
    color: #bd10e0 !important;
    ;
}

.color_green {
    color: #8bc34a !important;
}

.color_orange {
    color: #f60 !important;
}

.color_blue {
    color: #04a1d4 !important;
}

.color_red {
    color: #f00 !important;
}

.color_brown {
    color: #c3a34a !important;
}

.box_pop {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.box_pop .box_pop_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    padding: 15px 20px;
    padding-bottom: 25px;
    width: 430px;
    max-width: calc(100% - 20px);
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    background: #fff;
}

.box_pop .box_pop_content .pop_title {
    font-size: 20px;
    text-align: center;
    margin: 10px 0 20px 0;
    font-weight: 600;
    text-transform: uppercase;
}

.box_pop .box_pop_content .pop_content {
    width: 100%;
    display: inline-block;
}

.box_pop .box_pop_content .pop_content .li_input {
    width: 100%;
    display: inline-block;
    margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input label {
    width: 100%;
    display: inline-block;
    height: 20px;
    margin-bottom: 10px;
}

.box_pop .box_pop_content .pop_content .li_input input {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input select {
    margin: 0;
    width: 100%;
    height: 49px;
    font-size: 15px;
    color: #354052;
    margin-bottom: 10px;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    -o-border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #f1f1f1;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
}

.box_pop .box_pop_content .pop_content .li_input button {
    border: none;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    font-size: 13px;
    width: 100%;
    cursor: pointer;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.box_pop .box_pop_content .pop_button .text_left {
    float: left;
    line-height: 35px;
}

.box_pop .box_pop_content .pop_button .text_left a:hover {
    color: #f0564a;
}

.box_pop .box_pop_content .pop_button .text_right {
    float: right;
}

.box_pop .box_pop_content .pop_button .text_center {
    text-align: center;
}

.box_pop .box_pop_content .pop_button .text_center button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop .box_pop_content .pop_button .text_right button {
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    line-height: 35px;
    color: #fff;
    font-size: 13px;
    width: 100px;
    cursor: pointer;
    margin-left: 5px;
    background-color: #f0564a;
    font-weight: 600;
}

.box_pop_add {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.box_pop_add .box_pop_add_content {
    left: 50% !important;
    top: 50% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    width: 650px;
    max-width: calc(100% - 20px);
    background: #fff;
    max-height: calc(100vh - 10px);
}

.box_pop_add .box_pop_add_content .pop_title {
    font-size: 18px;
    background: #1374ad;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    height: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}

.box_pop_add .box_pop_add_content .pop_title h5 {
    cursor: default;
}

.box_pop_add .box_pop_add_content .pop_title span {
    font-size: 16px;
    height: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50px;
    color: #fff;
    text-align: right;
    cursor: pointer;
}

.box_pop_add .box_pop_add_content .pop_content {
    width: 100%;
    background: #fff;
    padding: 10px;
}

.box_pop_add .box_pop_add_content .pop_content .li_input {
    width: 100%;
    margin-bottom: 10px;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .rating {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    align-items: center;
    align-content: center;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .rating i {
    font-size: 30px;
    cursor: pointer;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .rating .fa-star-o {
    color: #ffb529;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .rating .fa-star {
    color: #ffb529;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .khung_mh {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}

.box_pop_add .box_pop_add_content .pop_content .li_input .khung_mh img {
    width: 200px;
}

.box_pop_add .box_pop_add_content .pop_content .col_input {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

.box_pop_add .box_pop_add_content .pop_content .col_input .col {
    width: calc(50% - 5px);
}

.box_pop_add .box_pop_add_content .pop_content .li_input label {
    width: 100%;
    display: inline-block;
    margin-bottom: 5px;
    font-weight: 700;
}

.box_pop_add .box_pop_add_content .pop_content .li_input textarea {
    width: 100%;
    display: inline-block;
    border: 1px solid #dedede;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
    height: 100px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}

.box_pop_add .box_pop_add_content .pop_content .li_input input[type=text] {
    width: 100%;
    display: inline-block;
    border: 1px solid #dedede;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
    height: 35px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}

.box_pop_add .box_pop_add_content .pop_content .li_input input[type=password] {
    width: 100%;
    display: inline-block;
    border: 1px solid #dedede;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
    height: 35px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}

.box_pop_add .box_pop_add_content .pop_content .li_input select {
    width: 100%;
    display: inline-block;
    border: 1px solid #dedede;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
    height: 35px;
    padding: 5px;
    box-sizing: border-box;
    border-radius: 5px;
}

.box_pop_add .box_pop_add_content .pop_button {
    width: 100%;
    display: flex;
    padding: 10px;
}

.box_pop_add .box_pop_add_content .pop_button .button_left {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.box_pop_add .box_pop_add_content .pop_button .button_right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.box_pop_add .box_pop_add_content .pop_button .button_center {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.box_pop_add .box_pop_add_content .pop_button button {
    padding-left: 15px;
    padding-right: 15px;
    height: 40px;
    width: 120px;
}
.block-account ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.block-account ul li{
    width: 100%;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.block-account ul li.active{
    width: 100%;
    background: #ffaa00;
    margin-bottom: 10px;
    border-radius: 10px;
    padding: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: flex-start;
}
.block-account ul li:hover{
    background: #ffaa00;
}
.block-account ul li a{
    font-weight: 700;
    font-size: 14px;
}
.block-account ul li.active a{
    color: #fff;
}
.block-account ul li:hover a{
    color: #fff;
}
.block-account ul li a i{
    width: 30px;
    height: 30px;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    background: #f60;
    color: #fff;
    margin-right: 10px;
}
.block-account ul li a:hover{
    color: #fff;
}
.li_info_account{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    align-content: center;
    margin-bottom: 10px;
}
.li_info_account label{
    width: 160px;
    font-weight: 700;
    font-size: 14px;
}
.li_info_account input{
    width: calc(100% - 170px);
    height: 40px;
    border: 1px solid #dedede;
    box-shadow: 0 0 2rem 0 rgba(136, 152, 170, .15) !important;
    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}
.li_info_account button{
    width: 160px;
    height: 40px;
    background-color: #f0564a;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.btn-mua-ngay{
    width: 160px;
    height: 40px;
    background-color: #f0564a;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.btn-mua-ngay .icon{
    width: 60px;
    font-size: 30px;
}
.btn-mua-ngay .text{
    width: calc(100% - 60px);
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}
.bottom_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.list_phantrang {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.list_phantrang .li_phantrang {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #dedede;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.list_phantrang .li_phantrang i {
    font-size: 25px;
}
.list_phantrang .li_phantrang.active {
    background: #992bf5;
    color: #fff;
}
