*{
    margin: 0;
    padding: 0;
}

body{
    font-family: sans-serif;
    background: #dde5ee;
    scroll-behavior: smooth;
}

:root{
    scrollbar-color: rgba(255, 12, 0) #dde5ee !important;
    scrollbar-width: thin !important;
}

::-webkit-scrollbar {
    width: 0.4rem;
}

*::-webkit-scrollbar-track {
    background-color: #dde5ee;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    background-color: rgba(255, 12, 0);
}

::-webkit-scrollbar:horizontal{
    height: 8px;
    background-color: #dde5ee;
}

::-webkit-scrollbar-thumb:horizontal{
    background: rgba(255, 12, 0);
    border-radius: 10px;    
}

::-webkit-scrollbar-button {
    display: none;
}

i{
    color: #fff;
}

.i_color {
    color: rgba(255, 12, 0);
}

.f_color {
    color: #fff;
}

a {
    text-decoration: none;
}

.tooltip-inner {
    padding: 1.3em; 
}

ul, ol {
    list-style: none;
}



/*----------------Common CSS------------------*/
.textSize {
    font-size: 13px;
}

.anchorColor {
    color: #0d6dfd;
}


/*-----------------nav-------------------*/
.logo {
    padding: 0 !important;
}

.nav-color {
    background-color: rgba(255, 12, 0);
}

.nav-item .nav-link >span {
    color: #fff;
    margin-left:2px;
}

#menu {
    position: relative;
}

#menu li {
    display: block;
    float: left;
    position: relative;
}

#menu > li:last-of-type:hover > .nav-link{
    background-color: transparent;
    color: #fff;
}

#menu li a.active {
    background: #fff;
}

#menu li a.active:not(.cart_icon) i {
    color: rgba(255, 12, 0);
}

#menu li a.active:not(.cart_icon) span{
    color: rgba(255, 12, 0);
}

#menu li a:hover > span,
#menu li a:hover > i{
    z-index: 99999;
}

#menu li ul {
    display: none;
    position: absolute;
    top: 100%;
    width: 200px;
    padding: 10px 0 10px 0;
    background: #fff;
    -webkit-box-shadow: 0 2px 7px rgba(0,0,0,0.45);
    -moz-box-shadow: 0 2px 7px rgba(0,0,0,0.45);
    box-shadow: 0 2px 7px rgba(0,0,0,0.45);
    z-index: -1;
}

#menu li ul li {
    display: block;
    width: 200px;
}

#menu li ul li a {
    display: block;
    float: none;
    color: #000;
    font-size: 15px;
    line-height: 40px;
    padding: 0 15px;
    background-color: #fff;
}

#menu li ul li a:hover {
    background-color: rgb(221, 223, 226);
    color: rgba(255, 12, 0);
}

#menu li ul .expanded {
    width: 200px;
}

#menu li ul .expanded li { 
    margin-right: 200px; 
}

#menu li ul li ul {
    display: none;
    position: absolute;
    left: 200px;
    top: 0;
    height: 100%;
    background: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

#menu li ul li ul li a { 
    color: #000; 
}

#menu li ul li.purple ul { 
    background-color: #fff;
}

.my-nav > .nav-item:hover > a {
    background-color: transparent;
}

.noti {
    background-color: rgb(78, 77, 77);
    color: rgb(255, 255, 255);
    font-size: 8px;
    font-family: sans-serif;
    top : -4.5px;
    font-weight: normal;
    padding: .4em .7em;
}


/*-------------search box---------------*/
.search-group {
    position: relative;
    width: 400px;
    margin-right: 10px;
}

.search-group > form {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.search-group form > .search {
    width: 100%;
    padding: 5px 5px;
    border: none;
    border-bottom: 1px solid #bbb;
    caret-color: #fff;
    color: #fff;
    font-size: 13px;
    background-color: transparent;
    position: absolute;
    right: -100%;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.search-group form > .search::placeholder {
    color: #dbd1d1;
    font-family: monospace;
    font-size: 15px;
    text-shadow: none;
    background-color: transparent;
}

.search-group form > .search:focus {
    outline: none;
}

.search-group #btn-search {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 0;
}

.search-group #btn-search > i {
    font-weight: 600;
    color: #fff;
    font-size: 13px;
    text-shadow: 0 -1px 2px rgba(0, 0, 0, 0.6);
}

.search-group #btn-search:hover i{
    text-shadow: 0 -1px 2px rgba(0, 0, 0, 0.3);
}

.view-box {
    right: 0 !important;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
}

.search-view {
    display: block!important;
}

.search-data {
    position: absolute;
    content: '';
    top: 105%;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 20px 5px 10px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    display: none;
    z-index: 1000;
}

.search-data ul {
    padding-left: 0;
}

.search-data .my-card {
    justify-content:flex-start;
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 15px;
}

.search-data .header {
    margin-right: 10px;
}

.search-data .my-card:hover {
    cursor: pointer;
    background-color: rgba(229, 233, 238);
}

.my-card .body p{
    font-family: sans-serif;
    font-size: 13px;
    color: #000;
    margin-bottom: 0;
}

.search-data .my-card:last-of-type {
    margin-bottom: 0;
    border-bottom: 0px solid #ddd;
}

.profile-show {
    left: -40% !important;
}


/*---------------slider---------------*/
.carousel-inner .carousel-item::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.carousel-control-prev {
    left: 5%;
}

.carousel-control-next {
    right: 5%;
}

.carousel-control-next, .carousel-control-prev {
    top: 50%;
    height: 30px;
    width: 30px;
    opacity: 1;
}

.slider-btn {
    z-index: 999;
}

.ban-parent {
    position: relative !important;
}

.ban-child {
    position: absolute;
    background: #11010138;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ban-inner {
    position: inherit;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    -webkit-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -ms-transform:translateY(-50%);
    -o-transform:translateY(-50%);
    z-index: 800;
}

.ban-title h1{
    font-weight: 600;
    font-family: sans-serif;
    font-size: 50px;
    color: #fff;
    margin-bottom: 20px;
}

.ban-content {
    margin-bottom: 30px;
}

.ban-content p {
    font-family: sans-serif;
    color: #fff;
    font-weight: bold;
}

.ban-content p:first-of-type {
    color: rgba(255, 12, 0);
    font-size: 40px;
}

.ban-content p:last-of-type{
    padding-left: 10px;
    letter-spacing: 2.5px;
    font-weight: normal;
}

.ban-btn > a {
    padding: 10px 30px;
    font-size: 15px;
    font-family: sans-serif;
    color: #fff;
    background-color:rgba(255, 12, 0);
    border: none;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.ban-btn > a:hover {
    background-color: #fff;
    color:rgba(255, 12, 0);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}


/*-----------background image----------*/
.bg_image {
    width: 100%;
    height: 200px;
    background-image: url("../img/background-image/detail-banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 75%;
    background-attachment: auto;
    position: relative;
}


/*-------------breadcrumb-------------*/
.my-crumb {
    background-color: rgb(0 0 0 / 45%);
    position: absolute;
    width: 100%;
    height: 100%;
}

.bc-item{
    text-align: center;
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.my-bc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.link-item {
    color: #fff;
    font-weight: bold;
}

.link-item:hover {
    color: #fff;
}

.pill{
    background: #ff0c00;
    padding: 5px 15px;
    font-size: 12px;
    border: 1.5px solid #ff0c00;
    border-radius: 30px;
    font-family: monospace;
    line-height: 3;
    color: #ff0c00;
    background-color: #fff;
}

.pill:hover {
    border-color: #fff;
    background-color: #ff0c00;
    color: #fff;
    cursor: auto;
}


/*-------------product_ad------------*/
.product_ad {
    padding: 50px 0;
    display: flex;
    flex-direction: row;
}

.product_ad .ad-img {
    width: 450px;
    height: 250px;
}

.product_ad .ad-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}










/*--------------product--------------*/
.product {
    background-color: #dde5ee;
    margin: 50px 0;
}

.card {
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 8px 1px rgba(0,0, 0, 0.1);
    border: 0;
    margin-right: 30px;
    margin: 0 auto;
    width: 90%;
}

.product_card{
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 8px 1px rgba(0,0, 0, 0.1);
    background: #fff;
    border: 0;
    margin: 5px;
}

.product_card .img-frame {
    display: block;
    width: 100%;
    height: 180px;
}

.product_card .img-frame .card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_card .card-body {
    height: 200px;
    padding: 0 1rem;
}

.card:hover,
.product_card:hover {
    cursor: pointer;
    box-shadow: 0 0.15rem 0.8rem rgba(0, 0, 0, 0.4);
}

.card .buy,
.product_card .buy {
    background-color: rgb(255, 15, 0);
    position: absolute;
    content: '';
    width: 30px;
    height: 30px;
    text-align: center;
    top: -50px;
    left: 10px;
    box-shadow: 0px 0px 2px 1px rgba(31, 30, 30, 0.3);
    transition: all .1s linear;
    -webkit-transition: all .1s linear;
    -moz-transition: all .1s linear;
    -ms-transition: all .1s linear;
    -o-transition: all .1s linear;
}

.card .buy::before,
.product_card .buy::before,
.card .buy::after,
.product_card .buy::after {
    position: absolute;
    content: '';
    border-style: solid;
}

.card .buy::before,
.product_card .buy::before {
    bottom: -20px;
    left: 0;
    border-width: 0 0 20px 20px;
    border-color: transparent transparent transparent rgb(255, 15, 0);
}

.card .buy::after,
.product_card .buy::after {
    right: 0;
    bottom: -20px;
    border-width: 0 20px 20px 0;
    border-color: transparent rgb(255, 15, 0) transparent transparent ;
}

.card .buy button,
.product_card .buy button {
    box-shadow: none;
    border: none;
    background-color: transparent;
}

.card .buy button:hover,
.product_card .buy button:hover {
    opacity: 0.9;
}

.card .buy i,
.product_card .buy i {
    line-height: 30px;
    text-shadow: 1px 0px 1px rgba(0,0, 0, 0.7);
    color: #fff;
}

.card:hover .buy,
.product_card:hover .buy {
    top: 0px;
}

.card .img-frame {
    display: block;
    width: 100%;
    height: 180px;
}

.card .img-frame .card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card .card-image {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 16px;
}

.card .card-image img {
    width: 100%;
    height: 200px;
}

.p-card-body {
    height: 200px;
    padding: 0.5rem 1rem;
}

.card-body .card-title {
    font-size: 18px;
    color: #000;
    height: 50px;
    font-weight: bold;
    margin-bottom: 10px;
}

.card-body .card-title .logo-brand {
    color: #fff;
    font-size: 9px;
    margin-left: 3px;
    vertical-align: middle;
}

.card-body .card-text,
.product_card .card-text {
    font-size: 14px;
    font-family: sans-serif;
    word-break: break-all;
    margin-bottom: 0.5rem;
}

.card-body .card-text a {
    font-size: 12px;
}

.card-body .price .current_price {
    font-size: 13px;
    color: #000;
}

.card-body .price .old_price {
    font-size: 12px;
    display: block;
    color: rgb(255, 15, 0);
}

.product .order_btn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 3px 3px;
}

.loading {
    justify-content: center;
    display: flex;
    flex-direction: row;
    align-items: baseline;
}

.loading span {
    padding: 8px;
    background-color: rgb(255, 15, 0);
    border-radius: 5px;
    color: #fff;
}

.product .cart_btn,
.product_card .cart_btn {
    padding: 0.3em 0.6em;
    border: none;
    margin: 12px;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, .5);
    font-size: 13px;
    color: #fff;
    -webkit-transition: background .3s ease;
            transition: background .3s ease; 
}

.product_btn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
}

.slick-prev,
.slick-next {
    text-shadow: 0px 0px 3px rgba(0, 0, 0,0.7);
}

.slick-prev {
    left: -15px;
} 

.slick-next {
    right: 15px;
}

.slick-prev:before, 
.slick-next:before {
    opacity: 1;
    color: #ff0c00;
}



/*----------------brand------------------*/
.brand-slide{
    padding: 15px 0;
}

.brand-slide .brand-img {
    width: 100px; 
    height: 80px;
}

.brand-slide .brand-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}







/*---------------footer------------------*/
footer {
    background-color: #2c2d31;
    color: #fff;
}

.footer_int {
    margin: 0 5% 50px 5%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer_int > .item {
    flex: 1;
}

.footer_int > .item:last-child {
    flex: 1;
}

.footer_int .item > .title{
    font-size: 14px;
    color: rgb(255, 15, 0);
    font-family: sans-serif;
    margin-bottom: 30px;
}

.footer_int .item > p {
    font-size: 13px;
    line-height: 10px;
}

.footer_int .item p > a {
    color: #fff;
}

.footer_int .item p > a:hover {
    text-decoration: underline;
}

.footer_int > .item:last-child form {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(2, 1fr);
}

.footer_int > .item:last-child span {
    display: block;
    font-size: 12px;
    word-wrap: break-word;
    margin-top: 20px;
    color: rgb(138, 135, 135);
}

.footer_int > .item:last-child input[type="email"] {
    padding: 8px 5px;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    color: #fff;
    font-size: 13px;
    transition: .1s ease-in-out;
    -webkit-transition: .1s ease-in-out;
    -moz-transition: .1s ease-in-out;
    -ms-transition: .1s ease-in-out;
    -o-transition: .1s ease-in-out;
}

.footer_int > .item:last-child input[type="email"]:focus {
    outline: none;
    border-bottom-color: rgb(255, 15, 0);
}


.footer_int > .item:last-child input[type="submit"] {
    background-color: rgb(255, 15, 0);
    color: #fff;
    font-size: 13px;
    width: 80px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.footer_int > .item:last-child input[type="submit"]:hover {
    box-shadow: 0px 0px 2px 0px rgba(173, 171, 171, 0.7);
}


footer > .social_media {
    margin: 0 5% 50px 5%;
    text-align: center;
    overflow: hidden;
}

footer > .social_media:before,
footer > .social_media::after { 
    position: relative;
    content: "";
    display: inline-block;
    background-color: rgb(66, 66, 66);
    height: 1px;
    width: 20%;
    vertical-align: middle;
}

footer > .social_media::before {
    right: 0.5em;
    margin-left: -50%;
}

footer > .social_media::after {
    left: 0.5em;
    margin-right: -50%;
}

footer > .social_media a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 5px;
    border: 1.5px solid rgb(255, 255, 255);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

footer > .social_media a i {
    line-height: 35px;
    color: rgb(255, 15, 0);
    font-size: 12px;

}

footer > .social_media a:hover {
    transition: all .3s linear;
    border: 1.5px solid rgb(255, 15, 0);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
}

footer > .social_media a:hover > i {
    color: rgb(136, 136, 136);
}


/*---------------copyright----------------*/
.copyright {
    font-size: 12px;
    text-align: center;
}


/*-------------Bootstrap CSS----------------*/
.d-flex {
    display: flex!important;
}

.dropdown-toggle::after {
    color: #fff;
}



/*--------------signup/login page-------------*/
.login {
    height: 90vh;
}

.login .login-form {
    width: 400px;
    background-color: #fff;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}

.login-form h2 {
    text-align: center;
    font-family: monospace;
    font-size: 25px;
    color: rgb(255, 15, 0);
}

.login-form label {
    font-size: 14px;
    margin-bottom: 3px;
}

.login-form input {
    font-size: 14px;
    padding: 8px;
}

.login-form input:focus {
    box-shadow: none;
    border-color:rgb(255, 15, 0);
}

.login-form input::placeholder {
    font-size: 13px;
}

.login-form .btn-login {
    padding: 6px 15px;
    font-size: 14px;
    color: #fff;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.4);
}


/*------------profile page--------------*/
.profile {
    padding: 60px 0;
    background-color: rgba(247, 241, 241, 0.815);
}

.profile .user_profile {
    border: 0;
}

.user-info-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: -1px;
    padding-top: 90px;
    padding-bottom: 30px;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    overflow: hidden;
}

.user-info-wrapper .user-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url("../img/profile/profile2.jpg");
    background-position: center;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-size: cover;
}

.user-info-wrapper .info-label {
    display: block;
    position: absolute;
    top: 18px;
    right: 18px;
    height: 26px;
    padding: 0 12px;
    border-radius: 13px;
    background-color: #fff;
    color: #606975;
    font-size: 12px;
    line-height: 26px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.user-info-wrapper .info-label>i {
    display: inline-block;
    margin-right: 3px;
    font-size: 1.2em;
    vertical-align: middle;
    color: rgb(255, 15, 0);
}

.user-info-wrapper .user-info {
    display: table;
    position: relative;
    width: 100%;
    padding: 0 18px;
}

.user-info-wrapper .user-info .user-avatar,
.user-info-wrapper .user-info .user-data {
    display: table-cell;
    vertical-align: top;
}

.user-info-wrapper .user-info .user-avatar {
    position: absolute;
    background-color: rgb(235, 228, 228);
    width: 100px;
    height: 100px;
    top: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border: 5px solid rgb(255, 255, 255);
    overflow: hidden;
}

.user-info-wrapper .user-info .user-avatar > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info-wrapper .user-info .user-data {
    padding-top: 48px;
    padding-left: 20%;
    position: relative;
    top: 0;
    left: 22%;
}

.user-info-wrapper .user-info .user-data h4 {
    font-family: sans-serif;
    font-size: 19px;
    margin-bottom: 2px;
    color: #000;
}

.user-info-wrapper .user-info .user-data span {
    display: block;
    font-family: sans-serif;
    color: #9da9b9;
    font-size: 13px;
}

.user_profile ul li a {
    color: #000;
    font-size: 16px;
    font-family: sans-serif;
}

.user_profile ul li a i {
    color: rgb(255, 15, 0);
    margin-right: 10px;
}

.user_profile .list-group-item a:hover {
    text-decoration: underline;
}

.profile .card-header {
    color: #969696;
    font-weight: 400;
    font-size: 16px;
}

.profile .card-body > .form {
    padding-bottom: 50px;
}

.profile .card-body p {
    font-size: 16px;
    color: rgb(255, 15, 0);
}

.profile .card-body p span {
    font-size: 14px;
    color: #000;
    margin-left: 10px;
}

.profile .card-body > .form button {
    font-size: 14px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .5);
}

.profile .card-body > .form button:hover {
    box-shadow: 0 3px 5px rgba(0, 0, 0, .6);
}

.profile .card-body > .form input {
    background-color: rgb(228 230 238);
    color: rgb(131, 130, 130);
    margin-bottom: 20px;
}

.profile .card-body > .form input:focus{
    color: rgb(51, 49, 49);
}


/*-------------carts page/view wishlist------------*/
.carts {
    background-color: #dde5ee;
    padding: 30px 0;
}

.carts h1 {
    font-size: 20px;
    color: #969696;
    font-family: sans-serif;
    margin-bottom: 20px;
}

.carts .price_wrap {
    font-size: 13px;
}

.carts .text_muted {
    color: #969696 !important;
    font-size: 10px;
}

.carts .product_img {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: 5px;
}

.carts .product_img img {
    margin-right: 10px;
}

.image-name {
    padding-left: 0 !important;
}

.product_img {
    margin-left: 0 !important;
}

.cart-item {
    width: 60px;
    height: 60px;
    margin-right: 10px;
}

.cart-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carts .product_img .product_name p,
.carts .product_img .product_name span {
    margin: 0;
    font-size: 14px;
    color: #000;
}

.carts .product_img .product_name p {
    font-weight: bold;
}

.carts .product_img .product_name span small {
    color: #969696;
}

.carts .prod-cart {
    width: 100%;
    margin: 0;
}

#carts_table .minus,
#carts_table .plus {
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

#carts_table .minus {
    border: 1px solid red;
}

#carts_table .plus {
    border: 1px solid green;
}

#carts_table .minus i {
    font-size: 10px;
    color: red;
    text-align: center;
    display: block;
    line-height: 20px;
}

#carts_table .plus i {
    font-size: 10px;
    color: green;
    text-align: center;
    display: block;
    line-height: 20px;
}



/* .carts .quantity input{
    padding: 5px 0 5px 5px;
    border: none;
    font-size: 13px;
    background-color: transparent;
}

.carts .quantity input[type="number"]::-webkit-inner-spin-button,
.carts .quantity input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
    box-shadow: none;
}

.carts .quantity input[type="number"]::-webkit-inner-spin-button:hover,
.carts .quantity input[type="number"]::-webkit-outer-spin-button:hover {
    cursor: pointer;
}

.carts .quantity input:focus {
    box-shadow: none;
    outline: none;
} */

.carts button {
    padding: 0;
}

.carts button:focus {
    box-shadow: none;
}

.carts button:hover > i{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
}

.carts button:first-child {
    margin-right: 10px;
}

.carts button i.fa-info{
    color: #0dcaf0;
}

.carts button i.fa-trash-alt {
    color: rgb(255, 15, 0);
}

.carts form label {
    font-size: 14px;
    margin-bottom: 5px;
}

.carts .card-body .dlist-align {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
}

.carts .card-body dl {
    font-size: 13px;
    font-family: sans-serif;
}

.carts .payment {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.carts .payment .btn-main {
    font-size: 13px;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}


/*--------------product details page-------------*/
.panel {
    padding: 3em 2em;
    line-height: 1.5em; 
    box-shadow: 0px 0px 8px 1px rgba(0,0, 0, 0.2);
}

.panel:hover {
    box-shadow: 0 0.15rem 0.8rem rgba(0, 0, 0, 0.4);
}

.panel img {
    max-width: 100%; 
}

.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    max-height: 330px;
}

.tab-content {
    overflow: hidden; 
}

.tab-content img {
    width: 100%;
    object-fit: contain;
    -webkit-animation-name: opacity;
            animation-name: opacity;
    -webkit-animation-duration: .3s;
            animation-duration: .3s; 
}

.preview-thumbnail.nav-tabs {
    border: none;
    margin-top: 15px; 
}

.preview-thumbnail.nav-tabs li {
    width: 18%;
    margin-right: 2.5%; 
}

.preview-thumbnail.nav-tabs li img {
    max-width: 100%;
    display: block; 
}

.preview-thumbnail.nav-tabs li a {
    padding: 0;
    margin: 0; 
}

.preview-thumbnail.nav-tabs li:last-of-type {
    margin-right: 0; 
}

.preview-thumbnail.nav-tabs:hover{
    cursor: pointer;
}

.panel .details {
    padding-left: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; 
}

.details .product-title {
    margin-top: 0; 
    font-size: 25px;
    font-family: sans-serif;
    text-transform: capitalize;
}

.details .product-title, 
.details .rating, 
.details .product-description,
.details .price,
.details .vote, 
.details .sizes {
    margin-bottom: 20px; 
}

.details .stars .fa-star{
    font-size: 10px;
}

.details .rating .review-no {
    font-size: 13px;
}

.details .product-description,
.details .vote {
    font-family: sans-serif;
    font-size: 14.5px;
    letter-spacing: 0.8px;
}

.details .vote {
    font-size: 13px;
    color: #969696;
}

.details .image-box{
    width: 500px;
    height: 400px;
}

.details .price, 
.details .sizes, 
.details .colors {
    text-transform: capitalize;
    font-family: sans-serif; 
    font-size: 18px;
}

.details .price span {
    font-size: 16px;
    color: rgb(255, 15, 0);
}

.rating .checked{
    color: #ff9f1a; 
}

.details .size {
    text-transform: uppercase;
    margin-right: 10px; 
    font-size: 16px;
}

.details .size:hover {
    cursor: pointer;
}

.details .size:first-of-type {
    margin-left: 30px; 
}

.details .colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; 
}

.details .colors .color {
    display: inline-block;
    vertical-align: middle;
    box-shadow: 0 3px 8px rgba(0, 0, 0, .4);
    margin-right: 10px;
    height: 1.2em;
    width: 1.2em;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.details .colors .color:hover {
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .5);

}

.details .color:first-of-type {
    margin-left: 20px; 
}

.details .add-to-cart, 
.details .buy-now {
    padding: 0.6em;
    border: none;
    box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
    text-transform:capitalize;
    font-size: 13px;
    color: #fff;
    -webkit-transition: background .3s ease;
            transition: background .3s ease; 
    margin-right: 15px;
}

.details .buy-now{
    /* color: rgb(95, 94, 94); */
    color: rgb(255, 15, 0);
}


.orange {
    background: #ff9f1a; 
}

.green {
    background: #85ad00; 
}

.blue {
    background: #0076ad; 
}

@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
                transform: scale(3); }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1); } 
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
                transform: scale(3); }
    100% {
        opacity: 1;
        -webkit-transform: scale(1);
                transform: scale(1); } 
}



/*-------------------prodect details------------------*/
.preview .image-box {
    height: 250px;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 30px;
}

.preview .image-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* .product_card .img-frame {
    width: 100%;
    height: 200px;
} */











/*-------------view cart---------------*/
.modal-header .modal-title {
    font-size: 17px;
    text-transform: capitalize;
    font-family: sans-serif;
    color: #969696;
}

.modal-header .close {
    outline: none;
    border: none;
    background: transparent;
}

.modal-header .close span {
    font-size: 30px;
}

.modal-body .preview-pic {
    max-height: 250px;
}

.modal-body .details {
    padding-left: 1em;
}

.modal-body .details .qty span {
    margin-right: 20px;
}

.modal-body .btn_qty {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.modal-body .btn_qty .qty {
    margin-bottom: 0;
}

.modal-body .btn_qty .btn {
    border: none;
}

.modal-body .btn_qty .btn:focus {
    box-shadow: none;
}

.modal-body .btn_qty .btn-danger {
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -ms-border-radius: 3px 0 0 3px;
    -o-border-radius: 3px 0 0 3px;
}

.modal-body .btn_qty .btn-success {
    border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -ms-border-radius: 0 3px 3px 0;
    -o-border-radius: 0 3px 3px 0;
}

.btn-group-sm>.btn, .btn-sm {
    padding: .15rem 0.8rem;
    font-size: 1em;
}

.modal-body .btn_qty .counting {
    border: 1px solid rgb(214, 211, 211);
    padding: .1rem 0.8rem;
    min-width: 3rem;
}


.modal-footer .close {
    border: none;
    box-shadow: none;
}

.modal-footer .close,
.modal-footer .btn_wishlist,
.modal-footer .btn_cart {
    box-shadow: none;
    font-size: 14px;
    box-shadow: 0 5px 8px rgba(0, 0, 0, .5);
}

.modal-footer .btn_wishlist {
    margin-left: auto;
}

.modal-footer .btn_wishlist i {
    color: rgb(95, 94, 94);;
}

.modal-footer .btn_wishlist i:hover {
    color: rgb(255, 15, 0);
}


/*----------------order--------------------*/
.order {
    padding: 0;
    border: none;
}

.order .card-body {
    padding: 0;
}

.order .accordion-header button {
    padding: 16px 20px;
}

.order button.info {
    padding: 0;
}

.order button.info:focus {
    box-shadow: none;
}

.order button.info:hover > i{
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .5);
}

.order button.info i.fa-info{
    color: #0dcaf0;
}

.accordion-item .accordion-header button {
    font-size: 14px;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item {
    border-width: 0 0 auto 0;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.accordion-item:last-of-type {
    border-bottom: 0;
}

.accordion-button:focus {
    box-shadow: none;
}


/*--------------view wishlist---------------*/
.view_wishlist{
    padding: 0;
    border: none;
}

.view_wishlist .card-body {
    padding: 0;
}

.view_wishlist .accordion-header button {
    padding: 16px 20px;
}

.view_wishlist tbody .fa-cart-arrow-down {
    color: #0d6efd;
}

.view_wishlist tbody button:first-of-type {
    margin-right: 0;
}


/*--------------ticket---------------*/
.ticket thead .text-muted {
    font-size: 15px;
    font-family: sans-serif;
}

.ticket tbody tr {
    font-size: 14px;
    font-family: sans-serif;
}


/*--------------contact---------------*/
.login-form textarea{
    font-size: 14px;
    padding: 8px;
    resize: none;
}

.login-form textarea:focus {
    box-shadow: none;
    border-color:rgb(255, 15, 0);
}

.login-form textarea::placeholder {
    font-size: 13px;
}



/*------------media query---------------*/
@media screen and (min-width: 997px) {

    /*---------product details----------*/
    .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex; 
    } 
}


@media screen and (max-width: 992px) {

    /*---------index----------*/
    .navbar-nav .nav-item {
        margin-left: 0;
    }

    .navbar-nav.mb-2 {
        margin-bottom: 0 !important;
    }

    .navbar-light .navbar-nav .nav-link {
        padding: 1rem 1rem !important;
    }

    .navbar-toggler {
        border: none;
        font-size: 1rem;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }


    /*-----------nav--------------*/
    .carousel-item {
        height: 100%;
    }

    .carousel-item .w-100 {
        height: 100%;
    }


    /*---------product details----------*/
    .panel .preview {
        margin-bottom: 50px; 
    } 

    .details .colors {
        margin-bottom: 40px;
    }


    /*---------Modal dialog----------*/
    .modal-body .preview {
        /* margin-bottom: 3em; */
    }

}


@media screen and (max-width: 769px) {

    /*-----------index--------------*/
    .navbar-nav .nav-item {
        margin-left: 0;
    }

    .d-flex {
        flex: 1;
    }

    .navbar-toggler {
        border: none;
        padding: .25rem .5rem;
    }

    .navbar-toggler i {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }


    /*----------search box------------*/
    #menu li ul {
        top: 105%;
        width: 100%;
        z-index: 9999;
    }

    .search-group {
        width: 100%;
    }

    .search-group #btn-search{
        border: none;
        position: unset !important;
        right: 0;
        left: 0;
        padding: 16px;
    }

    .view-box {
        right: -5% !important;
    }


    /*-----------nav--------------*/
    .carousel-item {
        height: 100%;
    }

    .carousel-item .w-100 {
        height: 100%;
    }

    .carousel-control-next-icon, 
    .carousel-control-prev-icon {
        width: 1rem;
        height: 1rem;
    }


    /*-----------product--------------*/
    .card .img-frame {
        height: 160px;
    }

    .prod-cart {
        width: 100% !important;
    }


    /*-----------product ad--------------*/
    .product_ad .ad-img {
        height: 200px;
    }

    /*----------------brand------------------*/
    .brand-slide .brand-img {
        height: 70px;
    }


    /*-----------footer--------------*/
    .footer_int {
        margin: 0 5%;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .footer_int .item {
        margin-bottom: 3rem;
    }


    /*---------product details----------*/
    .preview-pic {
        height: 200px;
    }

    /*---------latest----------*/
    .late-card:hover img{
        left: 0 ;
        top: 50%;
        height: 300px;
        width: 400px;
    }

    .my-btn {
        width: 200px;
    }




    /*-----------profile--------------*/
    .profile .user_profile {
        width: 100%;
    }


    /*---------Modal dialog----------*/

    .my-model {
        max-width: 690px;
    }

    .modal-body .preview-pic {
        height: 210px;
    }


    .accordion-body {
        padding: 0;
    }

    .panel {
        padding: 2em 1em;
    }

}


@media screen and (max-width: 577px) {

    /*-------------search----------------*/
    .view-box {
        right: -8% !important;
    }


    /*-------------slider----------------*/
    .ban-inner {
        right: 10%;
    }

    .ban-title h1{
        font-size: 2rem;
        margin-bottom: 3px;
    }
    
    .ban-content {
        margin-bottom: 0;
    }
    
    .ban-content p:first-of-type {
        font-size: 1.5rem;
        margin-bottom: 5px !important;
    }
    
    .ban-content p:last-of-type{
        padding-left: 10px;
        font-size: 0.8rem;
        letter-spacing: 1px;

    }
    
    .ban-btn > button {
        padding: 8px 20px;
        font-size: 12px;
        border-radius: 30px;
    }



    /*-------------product--------------*/
    .set-p {
        padding: 0 1rem !important;
    }

    .card {
        width: 80%;
    }

    .slick-prev {
        left: 4px;
    } 

    .slick-next {
        right: 35px;
    }

    .card .card-image {
        width: 100%;
        height: auto;
        overflow: hidden;
        padding: 16px 50px;
    }

    .card .card-image img {
        width: 100%;
        height: 300px;
    }

    #carts_table .minus {
        display: block;
    }

    .quantity {
        padding-left: 2px;
    }

    #carts_table .plus {
        display: block;
    }


    .minus > span {
        display: block;
    }



    /*-------------latest-----------*/
    .late-card:hover img{
        left: 0 ;
        top: 50%;
        height: 200px;
        width: 300px;
    }

    .my-btn {
        width: 150px;
        font-size: 14px;
    }

    .my-content {
        min-width: 100%;
    }


    /*----------model box-----------*/
    .preview .image-box {
        height: 150px;
        margin-bottom: 0rem;
    }


    /*-----------product ad--------------*/
    .product_ad .ad-img {
        height: 150px;
    }


    /*-----------brand-----------*/
    .brand-slide {
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }


    /*--------breadcrumb--------*/
    .bc-item {
        font-size: 25px;
    }


}


@media screen and (max-width: 376px) {

    /*---------login page----------*/
    .login {
        padding-top: 3rem;
    }
    .login .login-form {
        padding: 1.5rem !important;
    }


    /*-------------slider sec-------------*/
    .ban-inner {
        right: 10%;
    }

    .ban-title h1{
        font-size: 1.5rem;
        margin-bottom: 3px;
    }
    
    .ban-content {
        margin-bottom: 0;
    }
    
    .ban-content p:first-of-type {
        font-size: 1rem;
        margin-bottom: 5px !important;
    }
    
    .ban-content p:last-of-type{
        padding-left: 10px;
        font-size: 0.6rem;
        letter-spacing: 1px;

    }
    
    .ban-btn > button {
        padding: 6px 15px;
        font-size: 10px;
        border-radius: 3s0px;
        -webkit-border-radius: 3s0px;
        -moz-border-radius: 3s0px;
        -ms-border-radius: 3s0px;
        -o-border-radius: 3s0px;
}


    /*--------------brand sec-------------*/
    .brand-slide {
        padding: 0;
        width: 90%;
        margin: 0 auto;
    }

    .product .slick-slide img{
        width: 60%;
        height: auto;
    }

}



/* .navbar,
.slider, 
.product,
footer,
.brand,
.product_ad {
    display: none;
} */





















