﻿.nav > li > a:focus,
.nav > li > a:hover {
    background-color: transparent !important;
}

/* #region KPS-1193 */

/* #region KPS-1195 */

:root {
    --red: #c3161c;
    --green: #4cb748;
    --text-color: #414042;
}

.buy-together-sale .hidden {
    display: none !important;
}

.buy-together-sale .invisible {
    visibility: hidden !important;
}

.detail-button-control.untouchable {
    position: relative;
}

.detail-button-control.untouchable .overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    opacity: 0.5;
    background-color: white;
}

div.buy-together-sale {
    display: block;
    padding: 30px 0px;
}

div.buy-together-sale .wrapper {
    position: relative;
    border-radius: 1rem;
    border: 1px solid gray;
}

div.buy-together-sale .legend {
    clear: both;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 100;
    left: 30px;
    padding: 0 10px;
    transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

div.buy-together-sale .legend > div {
    background-color: white;
}

div.buy-together-sale .legend .left img {
    width: 50px;
    height: auto;
    padding-left: 5px;
}

div.buy-together-sale .legend .right span {
    color: #002e6d;
    font-size: 2rem;
    padding-right: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

div.buy-together-sale .product-group {
    padding: 15px 30px;
    margin: 10px;
    border-radius: 1rem;
    background: rgba(0, 46, 109, 0.15);
}

div.buy-together-sale .product-group.target .product-group-header {
    text-align: right;
}

div.buy-together-sale .product-group-header {
    margin-bottom: 20px;
}

div.buy-together-sale .product-group-header h6 {
    margin-bottom: 0;
}

div.buy-together-sale .product-group-header span {
    color: #0000ff;
}

div.buy-together-sale div.seperator {
    display: none;
    align-items: center;
    justify-content: center;
}

div.buy-together-sale .product-detail {
    padding-left: 10px;
    padding-right: 10px;
}

div.buy-together-sale .product-detail .top {
    display: flex;
    position: relative;
    margin-top: .75rem;
    align-items: flex-start;
    justify-content: center;
}

div.buy-together-sale .product-detail .top span {
    background: var(--red);
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 1px 5px;
    font-size: 10px;
    position: absolute;
    transform: rotate(270deg);
    transform-origin: 100% 5px;
    right: 10px;
    font-weight: bold;
}

div.buy-together-sale .product-detail .top img {
    display: block;
    align-self: center;
}
div.buy-together-sale .product-detail .check-group {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

div.buy-together-sale .product-detail .check-group input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}

div.buy-together-sale .product-detail .check-group .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/icons/ic_checkbox.png');
}

div.buy-together-sale .product-detail .check-group .checkmark:after {
    content: '';
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../img/icons/ic_checkbox_checked.png');
    position: absolute;
    display: none;
}

div.buy-together-sale
    .product-detail
    .check-group
    input:checked
    ~ .checkmark:after {
    display: block;
    width: 16px;
    height: 16px;
}

div.buy-together-sale .product-detail .middle span {
    color: var(--text-color);
    font-weight: bold;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

div.buy-together-sale .product-detail .middle p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #899196;
}

div.buy-together-sale .product-detail .bottom {
    /* Flex for show heart & cart icon */
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    text-align: right;
}

div.buy-together-sale .product-detail .bottom .left {
    display: none;
}

div.buy-together-sale .product-detail .bottom .left img {
    width: 20px;
    height: auto;
    cursor: pointer;
}

div.buy-together-sale .product-detail .bottom .right del {
    color: #899196;
    font-size: 1rem;
}

div.buy-together-sale .product-detail .bottom .right .price {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #002e6d;
    font-size: 2rem;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

div.buy-together-sale .product-detail .bottom .right .price em {
    font-size: 0.9rem;
    font-weight: 800;
    font-style: normal;
}
.sale-product:not(:first-child):not(:last-child) .product-detail {
    border-right: 1px solid grey;
}
div.buy-together-sale .product-quantity {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

div.buy-together-sale .product-quantity .quantity-wrapper {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    padding: 1px;
}

div.buy-together-sale .product-quantity span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    color: var(--text-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color 0.5s, color 0.5s;
    transition: background-color 0.5s, color 0.5s;
    width: 30px;
    height: 30px;
    cursor: pointer;
    user-select: none;
}

div.buy-together-sale .product-quantity span:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

div.buy-together-sale .product-quantity span:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

div.buy-together-sale .product-quantity input[type='number'] {
    background-color: #fff;
    border: 0;
    border-radius: 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    color: var(--text-color);
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
    width: 40px;
    height: 30px;
}

div.buy-together-sale .product-quantity input::-webkit-outer-spin-button,
div.buy-together-sale .product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

div.buy-together-sale .product-quantity input[type='number'] {
    -moz-appearance: textfield;
}

div.buy-together-sale .sale-footer {
    padding: 0px 30px;
}

div.buy-together-sale .sale-footer .link {
    text-align: right;
}

div.buy-together-sale .sale-footer .link a {
    display: inline-block;
    margin-bottom: 10px;
    color: grey;
}

div.buy-together-sale .sale-footer .link a span:last-child {
    color: green;
    padding: 0 2px;
    font-weight: bold;
}

div.buy-together-sale .sale-footer .save-ur-money table {
    font-size: 20px;
    margin: 10px 0 10px auto;
}
div.buy-together-sale .sale-footer .save-ur-money table tr td:first-child {
    min-width: 60px;
}
div.buy-together-sale .sale-footer .save-ur-money table tr td:last-child {
    font-weight: bold;
}

div.buy-together-sale .sale-footer .actions {
    margin: 15px 0;
    display: flex;
    justify-content: flex-end;
}

div.buy-together-sale .sale-footer .actions button {
    background-color: #505050;
    color: #fff;
    font-size: 1.5rem;
    padding: 7px 25px;
}

div.buy-together-sale .sale-footer .actions button.highlight {
    background-color: #002e6d;
}

.shock-deal-set-product {
    padding: 3px 4px;
    border-radius: 3px;
}

.shock-deal-set-product.target {
    color: white;
    line-height: 1;
    font-weight: 700;
    background-color: var(--green);
}

.shock-deal-set-product.attach {
    color: var(--green);
    font-weight: 600;
    border: 1px solid var(--green);
}

@media only screen and (max-width: 767.98px) {
    div.buy-together-sale .plus-indicator {
        display: none;
    }

    div.buy-together-sale .row > div:not(:last-child) .product-detail {
        border-right-color: transparent;
    }

    div.buy-together-sale .legend {
        left: 0;
        right: 0;
    }
}
/* #endregion KPS-1195 */

/* #region KPS-1228, deal sốc mới */

/* Define */
table.buy-together-sale {
    width: 100%;
}
table.buy-together-sale colgroup col.five-percent {
    width: 5%;
}
table.buy-together-sale colgroup col.fifteen-percent {
    width: 15%;
}
table.buy-together-sale colgroup col.twenty-percent {
    width: 20%;
}
table.buy-together-sale colgroup col.fourty-percent {
    width: 40%;
}

table.buy-together-sale img {
    max-height: 100%;
}

table.buy-together-sale > tbody tr td {
    height: 120px;
}

/* Header */
table.buy-together-sale thead tr th {
    text-align: center;
}
table.buy-together-sale thead tr:first-child th {
    font-size: 20px;
    color: #002E6D;
    font-weight: bold;
    text-transform: uppercase;
}
table.buy-together-sale thead tr:nth-child(2) th {
    color: var(--green);
}
table.buy-together-sale thead tr[role="column-name"] th {
    color: grey;
    font-style: italic;
    padding-top: 30px;
    border-bottom: 1px solid grey;
}

/* Body */

table.buy-together-sale tbody .check-group {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
table.buy-together-sale tbody .check-group input {
    position: absolute;
    opacity: 0;
    height: 0;
    width: 0;
}
table.buy-together-sale tbody .check-group .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/icons/ic_checkbox.png");
}
table.buy-together-sale tbody .check-group .checkmark:after {
    content: "";
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("../img/icons/ic_checkbox_checked.png");
    position: absolute;
    display: none;
}
table.buy-together-sale tbody .check-group input:checked ~ .checkmark:after {
    display: block;
    width: 20px;
    height: 20px;
}

table.buy-together-sale tbody .product-name span {
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
}
table.buy-together-sale tbody .product-name p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #899196;
    margin: unset;
}
table.buy-together-sale tbody .product-price {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
table.buy-together-sale tbody .product-price span.current-price {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #002E6D;
    font-size: 2rem;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: bold;
    font-family: "Montserrat",sans-serif;
}

table.buy-together-sale tbody .product-price .old-price,
table.buy-together-sale tbody .product-price .current-price {
    text-align: right;
}


table.buy-together-sale tbody .product-price span.current-price em {
    font-size: 0.9rem;
    font-weight: 800;
    font-style: normal;
}

table.buy-together-sale tbody .product-price .old-price del {
    color: #899196;
    font-size: 13px;
}
table.buy-together-sale tbody .product-price .old-price span {
    background: var(--red);
    color: white;
    text-transform: uppercase;
    border-radius: 5px;
    font-size: 10px;
    padding: 1px 3px;
}

table.buy-together-sale tbody .product-quantity {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

table.buy-together-sale tbody .product-quantity .quantity-wrapper {
    display: inline-flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    padding: 1px;
}

table.buy-together-sale tbody .product-quantity span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #fff;
    border-radius: 5px 0 0 5px;
    color: var(--text-color);
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 2rem;
    font-weight: bold;
    padding-bottom: 2px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: background-color .5s, color .5s;
    transition: background-color .5s, color .5s;
    width: 30px;
    height: 30px;
    cursor: pointer;
    user-select: none;
    font-family: monospace;
}

table.buy-together-sale tbody .product-quantity input[type="number"] {
    background-color: #fff;
    border: 0;
    border-radius: 0;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    color: var(--text-color);
    font-size: 1.6rem;
    margin: 0;
    text-align: center;
    width: 40px;
    height: 30px;
}
table.buy-together-sale tbody .product-quantity input::-webkit-outer-spin-button,
table.buy-together-sale tbody .product-quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

table.buy-together-sale tbody .product-quantity input[type=number] {
    -moz-appearance: textfield;
}

table.buy-together-sale tbody tr td:not(:nth-child(2)) {
    padding: 10px;
}
/*table.buy-together-sale tbody tr td:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
}*/
table.buy-together-sale > tbody tr {
    border-bottom: 1px solid grey;
}

table.buy-together-sale .target-product .check-group {
    visibility: hidden !important;
}

/* Footer */
.vnd {
    font-size: inherit;
}
.vnd:after {
    content: "\20AB";
    font-size: 70%;
    vertical-align: super;
}
/*table.buy-together-sale tfoot tr:first-child td {
    border-top: 1px solid grey;
}*/
/*table.buy-together-sale tfoot tr td {
    font-size: 1.5rem;
    padding-top: 2rem;
}*/
table.buy-together-sale tfoot tr.saved td span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #002E6D;
    font-size: 2rem;
    line-height: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-weight: bold;
    font-family: "Montserrat",sans-serif;
}
table.buy-together-sale tfoot tr.saved td em {
    font-size: 0.9rem;
    font-weight: 800;
    font-style: normal;
}
table.buy-together-sale tfoot button.buy-selected-product {
    /*width: 100%;
    height: 100%;*/
    padding: 10px;
    color: white;
    background-color: #002E6D;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
}
table.buy-together-sale tfoot button.buy-selected-product,
table.buy-together-sale tfoot button.buy-selected-product:focus,
table.buy-together-sale tfoot button.buy-selected-product:active {
    border: none;
    outline: none;
}

/* #endregion KPS-1228, deal sốc mới */

@media only screen and (max-width: 767.98px) {
    div.buy-together-sale .product.target-product .product-detail .middle {
        text-align: center;
    }
    div.buy-together-sale .product.target-product .product-detail .bottom {
        text-align: center;
    }
    div.buy-together-sale .product-item-wrapper {
        margin: 5px 0;
        padding: 5px 0;
        border-radius: 5px;
    }
    div.buy-together-sale .product-item-wrapper.target-product {
        background-color: rgba(0, 0, 0, .1);
    }
}

/* #endregion KPS-1193 */

.vc-header-info__col:nth-child(3) {
    width: 0;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    visibility: hidden;
}

.vc-banner .swiper-pagination-bullet {
    background-color: blanchedalmond;
}

.vc-banner .swiper-pagination-bullet-active {
    background-color: bisque;
    width: 60px;
}

.auto-resizable-iframe {
    max-width: 650px;
    margin: 0px auto;
}

.auto-resizable-iframe > div {
    position: relative;
    padding-bottom: 75%;
    height: 0px;
}

.auto-resizable-iframe iframe {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

@media only screen and (max-width: 1199.98px) {
    .vc-form--payment .vc-form__cost div {
        color: var(--text-color);
        font-size: 0.9rem;
        padding-left: 3px;
    }
}

@media only screen and (max-width: 991.98px) {
    .vc-header-info__col:first-child {
        margin-left: 200px;
    }
}

@media only screen and (max-width: 767.98px) {
    .vc-header-info__col:first-child {
        margin-left: 10px;
    }

    .vc-header-info__col:nth-child(4) {
        min-width: 100px;
    }
}

.popup-box {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.popup-box-dialog {
    width: auto;
    /*margin: 0.5rem;*/
    pointer-events: none;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-box-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 40vw;
    max-width: 70vw;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.6rem;
    outline: 0;
    justify-content: center;
    align-items: center;
}

.popup-box-content > div {
    padding: 10px 30px;
}

.popup-box-header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-bottom: 1px solid #dee2e6;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.popup-box-header .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 2rem;
}

.popup-box-title {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.3rem;
}

.popup-box-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5%;
}

.popup-box-body > img {
    height: 20%;
    width: 20%;
    margin-top: 10px;
}

.popup-box-body > p {
    margin-top: 10px;
    font-size: 90%;
}

.popup-box-body > span {
    margin-left: -100%;
    margin-right: -100%;
    text-align: center;
    width: 70%;
    font-weight: bold;
}

.popup-box-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0.75rem;
    border-top: 1px solid #dee2e6;
    border-bottom-right-radius: calc(0.3rem - 1px);
    border-bottom-left-radius: calc(0.3rem - 1px);
}

.popup-box-footer > * {
    margin: 0.25rem;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130;
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn {
    border: 1px solid transparent;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1040;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}

.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: 0.5;
}

.popup-box2 {
    background: ghostwhite;
    position: fixed;
    float: left;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    outline: 0;
    display: none;
    z-index: 2000;
    border-radius: 10px;
    width: 50%;
    height: 50%;
    overflow-y: scroll;
}

.popup-box-dialog2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (min-width: 800px) {
    .popup-box-dialog2 {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

.popup-box-header2 {
    display: flex;
    justify-content: center;
}

.popup-box-header2 .close {
    padding: 1rem 1rem;
    margin: -1rem -1rem -1rem auto;
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 2rem;
}

.popup-box-footer2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

@media (max-width: 460px) {
    .popup-box2 {
        background: ghostwhite;
        position: fixed;
        float: left;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        outline: 0;
        display: none;
        z-index: 2000;
        border-radius: 10px;
        width: 75%;
        height: 30%;
        overflow-y: scroll;
    }

    .popup-box-dialog2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .popup-box-body2 {
        display: flex;
    }

    .popup-box-title2 {
        font-size: 1.6rem;
    }

    .row:after {
        content: '';
        display: table;
        clear: both;
    }
}

.btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    color: #333333;
    background-color: #ebebeb;
    border-color: #adadad;
}

.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    background-color: #ffffff;
    border-color: #cccccc;
}

.btn-primary {
    color: #ffffff;
    background-color: #428bca;
    border-color: #357ebd;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #3276b1;
    border-color: #285e8e;
}

.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    background-color: #428bca;
    border-color: #357ebd;
}

/*table, tr, td, thead {
    border: none !important;
}*/
.tablePromotion > tbody > tr > td {
    border: none !important;
}

.tablePromotion > thead {
    text-align: center;
    border-bottom: none;
}

.tablePromotion > thead > tr > * {
    text-align: center;
    border-bottom: none;
    font-style: normal;
    font-weight: bold;
    font-size: 100%;
}

.tablePromotion > tbody {
    text-align: center;
}

.special-border td {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-top: medium !important;
}

.list-promotion2 input[type='radio'] {
    display: none;
}

.list-promotion2 input[type='radio'] + .radio-style {
    position: relative;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    vertical-align: middle;
    cursor: pointer;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

.list-promotion2 input[type='radio'] + .radio-style:before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    content: '';
    border: 1px solid #c0ccda;
    border-radius: 50%;
}

.list-promotion2 input[type='radio']:checked[disabled] + radio-style:after {
    background: #b0d7f5;
}

.list-promotion2 input[type='radio']:checked + .radio-style:before {
    border: 1px solid #20a0ff;
}

.list-promotion2 input[type='radio']:checked + .radio-style:after {
    display: block;
}

.list-promotion2 input[type='radio'] + .radio-style:after {
    top: 0.4em;
    left: 0.4em;
    width: 0.6em;
    height: 0.6em;
    border-radius: 50%;
    background: #20a0ff;
    position: absolute;
    display: none;
    content: '';
}

.changeAddress {
    font-size: 75%;
    color: #002e6d !important;
    font-style: italic;
    font-weight: 500;
}

.changeAddress:hover {
    cursor: pointer;
}

.popup-box-dialog3 {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 993px) {
    .popup-box-content2 {
        background-color: white;
        width: 55%;
        border-radius: 10px;
        padding: 70px 50px;
        margin-top: 200px;
    }

    .popup-box-header3 {
        position: relative;
        border-bottom: 1px solid;
        width: 102%;
    }

    .popup-box-title3 {
        font-style: italic;
        position: absolute;
        right: 0;
        top: 16%;
        font-weight: 600;
    }

    .closeButtonModal {
        position: absolute;
        right: -5%;
        top: -218%;
        font-size: 58px;
    }

    .popup-change-address {
        margin-top: 15px !important;
    }

    .saveButton {
        margin-top: 10px;
        text-align: right;
        position: absolute;
        right: 0px;
    }

    .popup-box-footer3 {
        position: relative;
    }
}

@media (max-width: 992px) {
    .popup-box-content2 {
        background-color: white;
        width: 55%;
        border-radius: 10px;
        padding: 70px 50px;
        margin-top: 200px;
    }

    .tableChangeAddress {
        margin: 10px 20px;
        margin-right: 0;
        width: 100%;
    }

    .popup-box-header3 {
        position: relative;
        border-bottom: 1px solid;
        width: 102%;
    }

    .popup-box-title3 {
        font-style: italic;
        position: absolute;
        right: 0;
        top: 16%;
        font-weight: 600;
    }

    .closeButtonModal {
        position: absolute;
        right: -5%;
        top: -218%;
        font-size: 58px;
    }

    .popup-change-address {
        margin-top: 15px !important;
    }

    .saveButton {
        margin-top: 10px;
        text-align: right;
        position: absolute;
    }

    .popup-box-footer3 {
        position: relative;
    }
}

@media (max-width: 739px) {
    .popup-box-content2 {
        background-color: white;
        width: 60%;
        border-radius: 10px;
        padding: 70px 50px;
        margin-top: 115px;
    }

    .tableChangeAddress {
        margin: 10px 20px;
        margin-right: 0;
        width: 100%;
    }

    .popup-box-header3 {
        position: relative;
        border-bottom: 1px solid;
        width: 102%;
        padding-bottom: 15px;
    }

    .popup-box-title3 {
        font-style: italic;
        position: absolute;
        left: -19px;
        top: 50%;
        font-weight: 600;
    }

    .closeButtonModal {
        position: absolute;
        right: -12%;
        top: -150%;
        font-size: 58px;
    }

    .popup-change-address {
        margin-top: 15px !important;
    }

    .saveButton {
        margin-top: 10px;
        text-align: right;
        position: absolute;
    }

    .popup-box-footer3 {
        position: relative;
    }

    .ribbon-style {
        width: 60%;
    }
}

@media (max-width: 500px) {
    .popup-box-content2 {
        background-color: white;
        width: 100%;
        border-radius: 10px;
        padding: 70px 50px;
        margin-top: 200px;
    }

    .tableChangeAddress {
        margin: 10px 20px;
        margin-right: 0;
        width: 100%;
    }

    .popup-box-header3 {
        position: relative;
        border-bottom: 1px solid;
        width: 102%;
        padding-bottom: 15px;
    }

    .popup-box-title3 {
        font-style: italic;
        position: absolute;
        left: -19px;
        top: 50%;
        font-weight: 600;
    }

    .closeButtonModal {
        position: absolute;
        right: -12%;
        top: -150%;
        font-size: 58px;
    }

    .popup-change-address {
        margin-top: 15px !important;
    }

    .saveButton {
        margin-top: 10px;
        text-align: right;
        position: absolute;
    }

    .popup-box-footer3 {
        position: relative;
    }

    .ribbon-style {
        width: 60%;
    }

    #infor-shipping .modal-body {
        overflow-y: scroll;
        /* height: 300px; */
        width: 102%;
        max-height: 175px;
        /* overflow-x: hidden; */
    }
}

.popup-box-content3 {
    background-color: white;
    width: 55%;
    border-radius: 10px;
}

.text-overflow-center {
    margin-left: -100%;
    margin-right: -100%;
    text-align: center;
    width: 100%;
}

@media (max-width: 540px) {
    .popup-box2 {
        background: ghostwhite;
        position: fixed;
        float: left;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        outline: 0;
        display: none;
        z-index: 2000;
        border-radius: 10px;
        width: 90%;
        height: 36%;
        overflow-y: scroll;
    }
}

@media (min-width: 800px) {
    .popup-box2 {
        background: ghostwhite;
        position: fixed;
        float: left;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        outline: 0;
        display: none;
        z-index: 2000;
        border-radius: 10px;
        width: 30%;
        height: 40%;
        overflow-y: scroll;
    }
}

.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.no-select {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.font-12 {
    font-size: 12px;
}
.font-14 {
    font-size: 14px;
}
.font-16 {
    font-size: 16px;
}
.font-18 {
    font-size: 18px;
}
.font-20 {
    font-size: 20px;
}


@media (max-width: 575.98px) {
    .font-12 {
        font-size: 6px;
    }
    .font-14 {
        font-size: 7px;
    }
    .font-16 {
        font-size: 7px;
    }
    .font-18 {
        font-size: 10px;
    }
    .font-20 {
        font-size: 10px;
    }
}

@media (min-width: 576px) {
    .font-12 {
        font-size: 8px;
    }
    .font-14 {
        font-size: 10px;
    }
    .font-16 {
        font-size: 10px;
    }
    .font-18 {
        font-size: 14px;
    }
    .font-20 {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .font-12 {
        font-size: 10px;
    }
    .font-14 {
        font-size: 12px;
    }
    .font-16 {
        font-size: 14px;
    }
    .font-18 {
        font-size: 16px;
    }
    .font-20 {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .font-12 {
        font-size: 12px;
    }
    .font-14 {
        font-size: 14px;
    }
    .font-16 {
        font-size: 16px;
    }
    .font-18 {
        font-size: 18px;
    }
    .font-20 {
        font-size: 20px;
    }
}
