/*.................... start global style ....................*/

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet');
:root {
    --c_dark: #333333;
    --c_light: #FAFAFA;
    --c_gray: #A39393;
    --c_darkBlue: #00477C;
    --c_danger: #B84A3A;
    --c_white: #ffffff;
    --c_success: #00FF17;
    --bg_danger: #B84A3A;
    --bg_darkBlue: #00477C;
    --bg_darkBlue_2: #113149;
    --bg_light: #F7F7F7;
    --bg_body: #F1F5F8;
    --bg_white: #ffffff;
    --bg_black: #000000;
    --ff_inter: 'Poppins', sans-serif;
    --fs_xsm: 10px;
    --fs_xsm_2: 12px;
    --fs_sm: 14px;
    --fs_lg: 18px;
    --p_sm: 14px;
    --p_def: 16px;
    --m_sm: 14px;
    --m_def: 16px;
    --m_lg: 20px;
    --rounded_def: 8px;
    --shadow_def: 0px 4px 10px rgba(30, 71, 102, 0.1);
}

@media(max-width:319.98px) {
     :root {
        --fs_xsm: 6.25002px;
        --fs_xsm_2: 7.50769px;
        --fs_sm: 8.35003px;
        --fs_lg: 11.25px;
        --p_sm: 9px;
        --p_def: 10px;
        --m_sm: 6px;
        --m_def: 10px;
        --m_lg: 12.5px;
        --rounded_def: 6px;
        --shadow_def: 0px 2.50001px 6.25002px rgba(30, 71, 102, 0.1);
    }
}

html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    background-color: #fbfbfb;
}

* {
    line-height: 140%;
}

body {
    line-height: 140%;
    color: var(--c_white);
    background-color: var(--bg_black);
      font-family: 'Poppins', sans-serif;
    /*font-family: Arial, Helvetica, sans-serif;*/
    max-width: 428px;
    min-height: 100vh;
    margin: auto;
    position: relative;
    padding-bottom: 60px;
    display: flex;
    flex-direction: column;
}

.prod_actBox {
    max-width: 428px;
    margin: auto;
}


/* colors */

.c_dark {
    color: var(--c_dark);
}

.c_light {
    color: var(--c_light);
}

.c_gray {
    color: var(--c_gray);
}

.c_darkBlue {
    color: var(--c_darkBlue);
}

.c_danger {
    color: var(--c_danger) !important;
}

.c_gradient {
    background: -webkit-gradient(linear, left top, right top, color-stop(37.72%, #1E4766), color-stop(54.91%, #B84A3A));
    background: -o-linear-gradient(left, #1E4766 37.72%, #B84A3A 54.91%);
    background: linear-gradient(90deg, #1E4766 37.72%, #B84A3A 54.91%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.c_success {
    color: var(--c_success);
}

.c_white {}


/* bg colors */

.bg_danger {
    background-color: var(--bg_danger);
}

.bg_darkBlue {
    background-color: var(--bg_darkBlue);
}

.bg_darkBlue_2 {
    background-color: var(--bg_darkBlue_2);
}

.bg_light {
    background-color: var(--bg_light);
}

.bg_white {
    background-color: var(--bg_white);
}


/* buttons */

.btn {}

.btn_def {
    padding: 0.7143em 1.1429em;
}

.btn:focus {
    -webkit-box-shadow: 0 0 0 .2rem rgba(0, 70, 124, 0.25);
    box-shadow: 0 0 0 .2rem rgba(0, 70, 124, 0.25);
}

.btn_darkBlue {
    color: var(--c_white) !important;
    background-color: var(--bg_darkBlue);
}

.btn_gray {
    color: var(--c_white) !important;
    background: darkslategray;
}

.btn_gold {
    color: black!important;
    background-color: gold;
}


.btn_darkBlue:hover {
    color: var(--c_white);
    background-color: #0061ac;
}

.btn_darkBlue_outline {
    color: var(--c_darkBlue) !important;
    border-color: var(--bg_darkBlue);
}

.btn_darkBlue_outline:hover {
    color: var(--c_white) !important;
    background-color: #0061ac;
}


/* fonts family*/

.ff_inter {
    font-family: var(--ff_inter);
}


/* fonts weight*/

.fw_extraLight {
    font-weight: 200;
}

.fw_light {
    font-weight: 300;
}

.fw_reg {
    font-weight: 400;
}

.fw_medium {
    font-weight: 500;
}

.fw_semiBold {
    font-weight: 600;
}

.fw_bold {
    font-weight: 700;
}

.fw_extraBold {
    font-weight: 800;
}

.fw_black {
    font-weight: 900;
}


/* font size */

.fs_xsm {
    font-size: var(--fs_xsm);
}

.fs_xsm_2 {
    font-size: var(--fs_xsm_2);
}

.fs_sm {
    font-size: var(--fs_sm);
}

.fs_lg {
    font-size: var(--fs_lg);
}


/* border */

.border_def {
    border-color: var(--c_light) !important;
}

.rounded_def {
    border-radius: var(--rounded_def);
}


/* underline */

.hover_underline {
    cursor: pointer;
    text-decoration: none;
}

.hover_underline:hover {
    text-decoration: underline;
}


/* shadow */

.shadow_def {
    -webkit-box-shadow: var(--shadow_def);
    box-shadow: var(--shadow_def);
}


/* padding */

.p_sm {
    padding: var(--p_sm);
}

.p_def {
    padding: var(--p_def);
}


/* margin */

.mb_sm {
    margin-bottom: var(--m_sm);
}

.mb_def {
    margin-bottom: var(--m_def);
}

.mb_lg {
    margin-bottom: var(--m_lg);
}

.hide_scrollbar::-webkit-scrollbar {
    display: none;
}


/* Hide scrollbar for IE, Edge and Firefox */

.hide_scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hover_unserline {
    text-decoration: none;
}

.hover_unserline:hover {
    text-decoration: underline;
}


/*.................... end global style ....................*/


/* ___________________ start profile page ___________________ */

.pfl_header {
    padding: 16px;
    background-color: var(--bg_white);
    border-radius: 0px 0px 30px 30px;
    -webkit-box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
}

.pfl_coverBox {
    position: relative;
}

.pfl_coverImg {
    width: 100%;
    height: 107px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
}

.qr_codeTglBtn {
    position: absolute;
    top: 0.6em;
    right: 0.6em;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1em;
    padding: 0.3em;
    width: 1.8em;
    height: 1.8em;
    border-radius: 50%;
    background-color: var(--bg_white);
}

.qr_codeTglBtn img {
    height: 1em;
}

.pfl_infoBox {
    margin-top: -49px;
    position: relative;
    z-index: 0;
}

.pfl_img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 6px solid var(--bg_white);
    -o-object-fit: cover;
    object-fit: cover;
    margin-bottom: 7px;
}

.pfl_infoBox {
    text-align: center;
}

.pfl_nav {
    padding: 25px 23px 0px 23px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.pfl_navItem {
    position: relative;
    display: inline-block;
    margin: 0em 0.3571em;
    padding: 0em 1.1429em 0.6429em 1.1429em;
    color: var(--c_gray);
    text-decoration: none;
}

.pfl_navItem::after {
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background: transparent;
    border-radius: 30px;
}

.pfl_navItem:hover {
    color: var(--c_darkBlue);
}

.pfl_navItem.active {
    font-weight: 700;
    color: var(--c_darkBlue);
}

.pfl_navItem.active::after {
    background: var(--bg_darkBlue);
}


/*  */

.main_sec {}

.mainSec_content {}

.info_list {
    /* margin-bottom: 0px; */
}

.info_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10px 0px;
    border-bottom: 1px solid var(--c_light);
}

.info_item:first-child {
    padding-top: 0px;
}

.info_item:last-child {
    padding-bottom: 0px;
    border-bottom: none;
}

.infoItem_iconBox {
    width: 1.6em;
    height: 1.6em;
    border: 0.1em solid #00477C;
    -webkit-box-shadow: 0.1em 0.1em 0rem #00477C;
    box-shadow: 0.1em 0.1em 0rem #00477C;
    border-radius: 0.35em;
    display: -ms-grid;
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1em;
}

.infoItem_icon {
    height: 1em;
}

.infoItem_descBox {
    padding-left: 12px;
}

.infoItem_title {}

.infoItem_desc {}

.infoItem_desc a {
    text-decoration: none;
    color: var(--c_primary);
}

.infoItem_desc a:hover {
    text-decoration: underline;
}

.map_box {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 45.15%;
}

.map_iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.text_divider {
    position: relative;
    text-align: center;
    z-index: 0;
}

.text_divider::before {
    content: "";
    display: block;
    border-top: 1px dashed #CBCBCB;
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 0px;
    width: 100%;
}

.text_divider span {
    padding: 5px 10px;
    color: var(--c_darkBlue);
    background-color: var(--bg_white);
    font-style: italic;
    text-transform: uppercase;
    font-weight: 700;
}

.def_actBtn {
    padding: 0.7143em 2.7143em;
    position: relative;
    -webkit-box-shadow: 0px 0.2857em 0px #000;
    box-shadow: 0px 0.2857em 0px #000;
    font-weight: 700;
}

.def_actBtn .iconify {
    font-size: 1.7143em;
    position: absolute;
    left: 0.4167em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#share_modal .modal-header{
    /* padding-top: 20px; */
    /* padding-bottom: 12px; */
}
.modal-dialog {
    position: absolute;
    margin: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 100%;
    max-width: 100%;
}

.modal-dialog .modal-header h6{
    font-weight: 700;
    margin-bottom: 0px;
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0px, 50px);
    -ms-transform: translate(0px, 50px);
    transform: translate(0px, 50px);
    max-width: 428px;
    margin: auto;
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
}

.modal-content {
    border-radius: 20px 20px 0px 0px;
}

.modal-header {
    padding: 24px 16px 14px 16px;
}

.qr_viewBoxWrapper {
    max-width: 290px;
    margin: auto;
    position: relative;
    margin-bottom: 38px;
}

.qr_viewBox {
    background-color: var(--bg_light);
    padding: 23px;
    position: relative;
    z-index: 2;
}

.qr_viewBoxWrapper .qr_cornar {
    width: 20px;
    height: 20px;
    background-color: var(--c_darkBlue);
    position: absolute;
}

.qr_viewBoxWrapper .qr_cornar_1 {
    left: -3px;
    top: -3px;
}

.qr_viewBoxWrapper .qr_cornar_2 {
    top: -3px;
    right: -3px;
}

.qr_viewBoxWrapper .qr_cornar_3 {
    bottom: -3px;
    right: -3px;
}

.qr_viewBoxWrapper .qr_cornar_4 {
    left: -3px;
    bottom: -3px;
}

.qr_viewBox #qr_view {
    border-radius: 10px;
}

.qr_viewBox #qr_view img {
    max-width: 100%;
}

.share_actBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.share_actBtn {
    display: block;
    text-decoration: none;
    font-size: 13px;
    border: none;
    padding: 0px;
    background-color: transparent;
    text-align: center;
    color: var(--c_dark);
    min-width: 59px;
}

.share_actBtn .iconify {
    font-size: 42px;
    line-height: 1em;
    margin-bottom: 7px;
}

.blog_list {}

.blog_item {
    display: block;
    text-decoration: none;
    background: var(--bg_white);
    border-radius: 8px;
    overflow: hidden;
    color: var(--c_dark);
    margin-bottom: 16px;
    box-shadow:0px 4px 10px rgba(30, 71, 102, 0.1);
}

.blog_item:hover {
    cursor: pointer;
    color: var(--c_darkBlue);
}

.blog_item_img {}

.blog_item_desc {
    font-size: 12px;
    padding: 0.8333em 1.1667em;
}

.footer_sec{
    margin-top: 16px;
    padding:16px 0px;
    text-align: center;
    /* position: absolute; */
    z-index: 0;
    left: 0px;
    bottom: 0px;
    width: 100%;
    margin-top: auto;
}
.footer_secLogoBox{}
.footer_logo{
    height: 28px;
}

@media(max-width:369.98px) {
    .share_actBtn .iconify {
        font-size: 30px;
    }
    .share_actBtn {
        font-size: 11px;
    }
    .share_actBtn{
        min-width: 52px;
    }
    .footer_logo{
        height: 24px;
    }
}
@media(max-width:319.98px) {
    .pfl_header {
        padding: 10px;
        border-radius: 0px 0px 18.7501px 18.7501px;
    }
    .pfl_coverImg {
        height: 67px;
        border-radius: 6.25px;
    }
    .qr_codeTglBtn {
        font-size: 12px;
    }
    .pfl_img {
        width: 46px;
        height: 46px;
        border-width: 4px;
        margin-bottom: 4px;
    }
    .pfl_infoBox {
        margin-top: -30px;
    }
    .pfl_nav {
        padding: 17px 0px 0px 0px;
    }
    .pfl_navItem::after {
        height: 2px;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .infoItem_iconBox {
        font-size: 13px;
    }
    .info_item {
        padding: 6.25px 0px;
    }
    .qr_viewBox {
        padding: 16px;
    }
    .qr_viewBoxWrapper {
        max-width: 200px;
        margin-bottom: 24px;
    }
    .modal-header {
        padding: 18px 12px 12px 12px;
    }
    .share_actBtn {
        min-width: 52px;
        font-size: 10px;
    }
    .share_actBtn .iconify {
        font-size: 36px;
    }
    .footer_sec{
        margin-top: 10px;
    }
    .footer_logo{
        height: 20px;
    }
}

@media(max-width:299.98px) {
    .share_actBtn {
        min-width: 40px;
        font-size: 8px;
    }
    .share_actBtn .iconify {
        font-size: 24px;
    }
    .blog_item {
        margin-bottom: 16px;
    }
    .blog_item_desc {
        font-size: 7.50769px;
    }
}


/* ___________________ end profile page ___________________ */


/* ___________________ start market page ___________________ */

.m_headerSec {
    padding-top: 22px;
    /*background-color: #1E4766;
    background-image: url("../img/market_header_bg.png");*/
    background-position: top right;
    background-repeat: no-repeat;
    border-radius: 0px 0px 10px 10px;
    margin-bottom: 32px;
    
}

.m_headerTop {}

.m_headerUserinfoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.m_headerUser_img {
    width: 23px;
    height: 23px;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid #D2E823;
    border-radius: 100px;
}

.m_headerUser_name {
    padding-left: 0.5em;
    font-size: 16px;
}

.m_headerMenuTglBtn {
    font-size: 20px;
    line-height: 1em;
    padding: 0px;
    color: var(--c_white);
}

.m_headerActBtn {
    color: var(--c_white);
    background: #113149;
    -webkit-box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    border-radius: 0.5em;
    font-size: 12px;
    margin-right: 0.8333em;
    padding: 0.6667em;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.m_headerActBtn.active{
    color: black;
    background: gold;
}

.m_headerActBtn:hover {
    color: var(--c_white);
}

.m_headerActBtn .inline_icon,
.m_headerActBtn .iconify {
    font-size: 1.6667em;
}

.m_headerActBtn .inline_icon {
    height: 1em;
}

.m_headerActBtn_title {
    margin: 0px 0.6667em;
}

.m_headerSearchBox {
    background: #F8F5FD;
    border: 1px solid #EFEFEF;
    border-radius: 6px;
    -webkit-transform: translateY(14px);
    -ms-transform: translateY(14px);
    transform: translateY(14px);
}

.m_headerSearchBox>* {
    border: none;
    font-size: 12px;
    background: #F8F5FD;
}

.m_headerSearchBox>*:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.m_blogList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* overflow: scroll; */
    padding-left: 16px;
}
.m_blogList .owl-stage{
    padding-left: 0px !important;
    padding-right: 0px !important;
}


.m_blogList_2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* overflow: scroll; */
    padding-left: 16px;
}
.m_blogList_2 .owl-stage{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.m_blogItem {
    display: block;
    margin-right: 12px;
}

.m_blogItem_img {
    width: 326px;
    height: 182px;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: drop-shadow(0px 4px 10px rgba(30, 71, 102, 0.1));
    filter: drop-shadow(0px 4px 10px rgba(30, 71, 102, 0.1));
    border-radius: 8px;
}

.sec_title {
    font-size: 16px;
    padding-left: 1em;
    padding-right: 1em;
}

.ctg_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: scroll;
    padding-left: 16px;
}

.ctg_item {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

.ctg_itemLink {
    display: block;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    font-size: 12px;
    text-align: center;
    color: #44546D;
    padding: 0.6667em 0.8333em;
    background: var(--bg_light);
    border-radius: 0.5em;
    text-decoration: none;
    margin-right: 0.8333em;
}

.ctg_itemLink.active {
    color: var(--c_white);
    background-color: var(--bg_danger);
}

.prod_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: auto;
    /* padding: 10px 0px 10px 16px; */
    padding-left: 16px;
}
.prod_list .owl-stage{
    padding: 10px;
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.prod_item {
    /* width: 136px;
    min-width: 136px; */
    /* margin-right: 10px; */
}

.prod_itemCard {
    display: block;
    /*padding: 8px;*/
    /*background: var(--bg_white);*/
    -webkit-box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    border-radius: 10px;
    text-decoration: none;
}

.prod_itemImg {
    border-radius: 6px;
    margin-bottom: 6px;
    max-width: 100%;
    width: 100%;
}

.prod_title {
    color: var(--c_dark);
    margin-bottom: 6px;
}

.prod_price {
    font-weight: 700;
}

.prod_itemCard:hover .prod_title {
    text-decoration: underline;
}



/* PRODUCT TUKAR POINT */

.prod_item_tukar_point {
    width: auto;
    min-width: auto; 
    margin-right: 0px; 
}

.prod_itemCard_tukar_point {
    display: block;
    padding: 8px;
    background: rgb(62,61,78);
    background: linear-gradient(90deg, rgba(62,61,78,1) 0%, rgba(35,35,37,1) 48%, rgba(65,65,65,1) 100%);
    border-radius: 10px;
    text-decoration: none;
}

.prod_itemImg_tukar_point {
    border-radius: 6px;
    margin-bottom: 6px;
    max-width: 100%;
    width: 100%;
}

.prod_title_tukar_point {
    color: white;
    margin-bottom: 6px;
}

.prod_price_tukar_point {
    color: gold;
    font-weight: 700;
}

.prod_itemCard_tukar_point:hover .prod_title_tukar_point {
    text-decoration: underline;
}


@media(max-width:319.98px) {
    .m_headerSec {
        padding-top: 14px;
        margin-bottom: 22px;
    }
    .m_headerUser_name {
        font-size: 10px;
    }
    .m_headerActBtn {
        font-size: 7.5px;
    }
    .m_headerSearchBox>* {
        font-size: 8px;
    }
    .m_headerSearchBox {
        transform: translateY(10px);
    }
    .m_headerSec {
        margin-bottom: 16px;
    }
    .m_blogList {
        padding-left: 10px;
    }
    .m_blogItem {
        margin-right: 8px;
    }
    .m_blogItem_img {
        width: 203.96px;
        height: 113.87px;
    }
    .sec_title {
        font-size: 10px;
    }
    .ctg_list {
        padding-left: 10px;
    }
    .ctg_itemLink {
        font-size: 7.5px;
    }
    .prod_list {
        padding: 8px 0px 8px 10px;
    }
    .prod_item {
        /* width: 86px;
        min-width: 86px;
        margin-right: 6.25px; */
    }
    .prod_itemCard {
        display: block;
        padding: 5px;
        border-radius: 6px;
    }
    .prod_itemImg {
        margin-bottom: 4px;
        -webkit-box-shadow: 0px 2.50256px 6.25641px rgba(30, 71, 102, 0.1);
        box-shadow: 0px 2.50256px 6.25641px rgba(30, 71, 102, 0.1);
        border-radius: 6.25641px;
    }
    .prod_title {
        margin-bottom: 4px;
    }
}


/* ___________________ end market page ___________________ */


/* ___________________ start products page ___________________ */

.m_headerSec_2 {
    margin-bottom: 16px;
}

.m_headerSearchBox_2 {
    transform: none;
}

.m_headerSec_2 {
    padding-top: 16px;
}

.prd_ctgList {
    display: flex;
    padding: 12px 0px 16px 16px;
    overflow: scroll;
}

.prd_ctgItem {
    display: block;
    font-size: 12px;
    padding: 0.6667em 0.8333em;
    margin-right: 0.8333em;
    min-width: max-content;
    text-decoration: none;
    color: var(--c_dark);
    background-color: var(--bg_white);
    border-radius: 0.6667em;
}

.prd_ctgItem.active {
    color: var(--c_white);
    background: var(--bg_danger);
    box-shadow: 0px 2px 8px rgba(211, 41, 41, 0.34);
}

.prod_list_2 {
    overflow: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
}

.prod_list_2 .prod_item {
    width: auto;
    min-width: auto;
    margin-right: 0px;
}

.prod_list_2 .prod_itemImg {
    width: 100%;
}

.prod_list_2 .prod_itemCard {
    min-height: 100%;
}

@media(max-width:319.98px) {
    .prd_ctgList {
        padding: 10px 0px 10px 10px;
    }
    .prd_ctgItem {
        font-size: 8px;
    }
    .m_headerSec_2 {
        margin-bottom: 12px;
    }
}


/* ___________________ end products page ___________________ */


/* ___________________ start product detail page ___________________ */

.p_headerSec {
    padding: 20px 0px;
}

.p_header_title {}

.prod_imgList {
    padding-left: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* overflow: scroll; */
}
.prod_imgList .owl-stage{
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.prod_imgItem {
    width: 320px;
    height: 320px;
    border-radius: 10px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 10px;
}

.prod_title_2 {
    font-size: 16px;
    margin-bottom: 6px;
}

.prod_price_2 {
    font-size: 20px;
    font-weight: 700;
}

.p_pgDivider {
    width: 100%;
    height: 5px;
    background: #F8F5FD;
}

.variant_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: scroll;
    padding-left: 16px;
}

.variant_item {
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    cursor: pointer;
}

.variant_box {
    display: block;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
    font-size: 12px;
    text-align: center;
    color: #44546D;
    padding: 0.6667em 0.8333em;
    background: var(--bg_light);
    border-radius: 0.5em;
    text-decoration: none;
    margin-right: 0.8333em;
    border: 1px solid transparent;
}

.variant_item input:checked~.variant_box {
    color: var(--c_danger);
    border: 1px solid var(--c_danger);
    background-color: #FFE5E2;
}

.prod_actBox {
    position: fixed;
    z-index: 100;
    left: 0px;
    bottom: 0px;
    right: 0px;
    background-color: var(--bg_white);
    -webkit-box-shadow: 0px -4px 10px rgba(30, 71, 102, 0.1);
    box-shadow: 0px -4px 10px rgba(30, 71, 102, 0.1);
    padding: 16px 0px;
}

.cus_numInpBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid #F5F5F5;
    border-radius: 60px;
    max-width: 150px;
    margin-right: 14px;
}

.cus_numInp,
.cus_numInpBtn {
    font-weight: 300;
    padding: 0px;
    border: none;
    background-color: transparent;
    outline: none;
}

.cus_numInp {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 20px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    -moz-appearance: textfield;
    text-align: center;
    padding-left: 0.3em;
    padding-right: 0.3em;
}

.cus_numInp::-webkit-outer-spin-button,
.cus_numInp::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cus_numInp[type=number] {
    -moz-appearance: textfield;
}

.cus_numInpBtn {
    padding: 13px;
    color: var(--c_gray);
}

.form_sumitBtn {
    font-size: 16px;
    padding: 0.75em;
    font-weight: 700;
}

.prodPg_main_sec {
    padding-bottom: 130px;
}
.prodPg_main_sec_2 {
    /* padding-bottom: 100px; */
}

.mk_actBtns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mk_actBtn {
    display: block;
    text-decoration: none;
    font-size: 13px;
    border: none;
    padding: 0px;
    background-color: transparent;
    text-align: center;
    color: var(--c_dark);
    min-width: 59px;
}

.mk_actBtn .mk_actBtn_icon {
    font-size: 42px;
    line-height: 1em;
    margin-bottom: 7px;
    height: 1em;
}

.m_prodInfoBox {}

.m_prodInfoImgBox {}

.m_prodInfoImg {
    width: 50px;
    height: 50px;
    border-radius: 6px;
}

.m_prodInfoDescBox {
    padding-left: 10px;
}
.prodPg_footer_sec{
    bottom:126px;
    margin-bottom: 20px;
}
.prodPg_footer_sec_2{
    margin-bottom: 70px;
}

@media(max-width:369.98px) {
    .mk_actBtn .mk_actBtn_icon {
        font-size: 30px;
    }
    .mk_actBtn {
        font-size: 11px;
    }
    .mk_actBtn{
        min-width: 52px;
    }
}
@media(max-width:319.98px) {
    .p_headerSec {
        padding: 16px 0px;
    }
    .prod_imgList {
        padding-left: 10px;
    }
    .prod_imgItem {
        width: 200px;
        height: 200px;
        border-radius: 6px;
        margin-right: 6px;
    }
    .prod_title_2 {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .prod_price_2 {
        font-size: 12px;
        margin-bottom: 9px;
    }
    .variant_box {
        font-size: 8px;
    }
    .variant_list {
        padding-left: 10px;
    }
    .cus_numInpBox {
        font-size: 12px;
        max-width: 100px;
        margin-right: 10px;
    }
    .cus_numInpBtn {
        padding: 8px;
    }
    .form_sumitBtn {
        font-size: 10px;
    }
    .m_prodInfoImg {
        width: 40px;
        height: 40px;
    }
    .mk_actBtn .mk_actBtn_icon {
        font-size: 24px;
    }
    .mk_actBtn {
        font-size: 8px;
    }
    .prodPg_main_sec {
        padding-bottom: 110px;
    }
    .prodPg_footer_sec{
        bottom:100px;
    }
    .prodPg_main_sec {
        padding-bottom: 90px;
    }
    .prodPg_footer_sec{
        bottom:60px;
    }
    
}


/* ___________________ end product detail page ___________________ */


/* ___________________ start product form page ___________________ */

.p_headerSec_2 {
    background-color: #1E4766;
    background-image: url("../img/market_header_bg.png");
    background-position: top right;
    background-repeat: no-repeat;
    padding-bottom: 30px;
}

.prd_formBox {
    padding-top: 24px;
    padding-bottom: 20px;
    border-radius: 20px 20px 0px 0px;
    margin-top: -20px;
}

.prd_infoBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.prd_imgBox {}

.prd_img {
    width: 103px;
    height: 103px;
    border-radius: 10px;
}

.prd_descBox {
    padding-left: 10px;
}

.prd_title {
    font-size: 16px;
}

.prd_selectBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    box-shadow: 0px 4px 10px rgba(30, 71, 102, 0.1);
    border-radius: 8px;
    background-color: var(--bg_white);
    margin-bottom: 10px;
    max-width: 200px;
}

.prd_selectBox,
.prd_selectBox .form-select {
    border: none;
    font-size: 12px;
    padding-left: 10px;
}

.prd_selectBox .form-select {
    font-weight: 700;
}

.prd_selectBox span {
    /* margin-right: 10px; */
}

.cus_numInpBox_2 {
    font-size: 16px;
    max-width: 108px;
}

.cus_numInpBtn {
    padding: 8px;
}

.cus_numInpBox {}

.prdPg_inpBox {
    position: relative;
}

.prdPg_inpBox .form-control {
    padding: 0.7143em 0.7143em 0.7143em 2.5714em;
}

.prdPg_inpIcon {
    position: absolute;
    font-size: 1.1429em;
    left: 0.625em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--c_danger);
}

.form-control {
    border: 1px solid #F8F5FD;
}

.prd_price {
    font-size: 16px;
}

@media(max-width:319.98px) {
    .prd_img {
        width: 60px;
        height: 60px;
    }
    .prd_title {
        font-size: 12px;
    }
    .prd_selectBox,
    .prd_selectBox .form-select {
        font-size: 10px;
    }
    .prd_price {
        font-size: 12px;
    }
    .cus_numInpBox_2 {
        font-size: 10px;
        max-width: 86px;
    }
}




/* ___________________ end product form page ___________________ */



.header_sec2 {
    position: fixed;
    z-index: 100;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 8px 0px;
    
}

.header_topBar2 {
    padding: 12px;
    display: -ms-grid;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 1fr auto 1fr;
    grid-template-columns: 1fr auto;
    border-radius: 72px;
    border: 1px solid transparent;
    background: rgb(62,61,78);
    background: linear-gradient(90deg, rgba(62,61,78,1) 0%, rgba(35,35,37,1) 48%, rgba(65,65,65,1) 100%);
    transition: background-color 150ms ease 0s, transform 150ms ease 0s, -webkit-backdrop-filter 150ms ease 0s;
    margin-bottom: 10px;
}

.header_sec2.active_header2 .header_topBar2 {
    border: 1px solid rgb(235, 238, 241);
    background-color: rgba(255, 255, 255, 0.5);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}

.header_actBtn2 {
    font-size: 14px;
    font-weight: 700;
    padding: 0.7143em 1.1429em;
}

.hidden_elm2 {
    visibility: hidden;
    pointer-events: none;
}

.header_logo2 {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    /*visibility: hidden;*/
}

.header_sec2.active_header2 .header_logo2 {
    visibility: visible;
}

.header_sec2.active_header2 .header_actBtn2 {
    padding: 10px 13px;
    width: 43px;
    height: 43px;
    color: var(--c_white);
    border-color: var(--c_black);
    background-color: var(--bg_black);
}

.header_sec2.active_header2 .header_actBtn_text2 {
    display: none;
}


.custom-btn {
  width: 130px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  padding: 10px 25px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 900;
  font-style: normal;
  text-shadow: 0px -1px 0px rgba(0,0,0,0.4);
    text-decoration: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  display: inline-block;
  box-shadow: inset 0px 1px 0px rgba(255,255,255,1),0px 1px 3px rgba(0,0,0,0.3);
  outline: none;
  border: 1px solid #ba6;
}
.custom-btn:active{
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

/* 1 */
.btn-1{
  backface-visibility: hidden;
  position: relative;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  background: linear-gradient(180deg,#fea 0%,#dc8 49%,#a95 51%,#dc8 100%);
  border-radius: 5px;
}


/*nav{*/
/*  z-index: 9999;*/
/*  display: flex;*/
/*  justify-content: space-around;*/
/*  background-color: #333;*/
/*  padding: 2px;*/
/*  position: fixed;*/
/*  bottom: 0;*/
/*  width: 428px;*/
/*}*/


/*@media(max-width:375px)*/
/*{*/
/*    nav{*/
/*        width: 375px;*/
/*    }*/
/*}*/

/*@media(max-width:320px)*/
/*{*/
/*    nav{*/
/*        width: 320px;*/
/*    }*/
/*}*/







/*.nav-item.active{*/
/*  color:gold;*/
/*}*/

/*.nav-item{*/
/*  display: inline-block;*/
/*  text-align: center;*/
/*  align-items: center;*/
/*  text-decoration: none;*/
/*  color: white;*/
/*  padding: 12px 16px;*/
/*  border-radius: 50px;*/
/*  background-color: rgba(255, 255, 255, 0);*/
/*}*/

nav {
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px; /* Adjust this max-width as needed */
    margin: 0 auto; /* Center the navbar */
}

.nav-item.active {
    color: gold;
}

.nav-item {
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 10px;
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0);
    flex: 1; /* Distribute the space evenly among items */
    max-width: 33%; /* Adjust the max-width as needed for the number of items */
}

@media(max-width: 480px) {
    .nav-item {
        max-width: 100%; /* Full width for smaller screens */
    }
}

.caption{
    margin-top: 5px;
    display: block;
}


/*** Body ***/

.card {
    position: relative;
    flex-direction: column;
    max-width: 400px;
    margin-left:15px;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #00000020;
    border-radius: 0.8rem;
}

.card-text{
    color: white;
}
.card-body{
    border-bottom-right-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
    background: linear-gradient(90deg, rgba(62,61,78,1) 0%, rgba(35,35,37,1) 48%, rgba(65,65,65,1) 100%);
}
.card-footer,
.card-img {
    border-bottom-right-radius: 0.8rem;
    border-bottom-left-radius: 0.8rem;
}

.card-smooth-caption, .card-img-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}

.card-smooth-caption {
    background: linear-gradient(#00000000, #000000fa) #00000000;
    padding: 2rem 1.5rem 1.5rem;
}

.card-footer {
    padding: 1.5rem;
    background-color: transparent;
    border-top: 0;
}
.card-img-overlay.three {
    content: " ";
    height: 140px;
    width: 100%;
    display: block;
    position: relative;
    background-size: cover;
    border-radius: 12px 12px 2px 2px;
    background-position: 50% 50%;
}


.owl-carousel .owl-dots.disabled, .owl-carousel{
    display: block;
}


.point-title{
    color: #ffc107;
    margin-left: 25px;
    font-weight: 700;
}



.card-timnas{
    overflow: auto;
    width: 400px;
    height: 200px;
    background: linear-gradient(90deg, rgba(62,61,78,1) 0%, rgba(35,35,37,1) 48%, rgba(65,65,65,1) 100%);
}

.timnas-text{
     float: right;
     margin-right: 20px;
     margin-top: 20px;
}

.timnas-username{
     float: left;
     margin-left: 20px;
     margin-top: 155px;
}

.swal-footer{
    text-align: center;
}

.swal-button {
    padding: 23px 24px;
}

.swal-button.swal-button--confirm {
    background-color: gold;
    color: #000;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    cursor: pointer;
}