body{
    font-family: 'Montserrat', sans-serif;
}
a:hover {
    color: #111;
    text-decoration: none;
}
/* .wrapper{
    padding-top:48px;
} */

/* Preloder */

.preloader {
    background-color:#00000080;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}
.preloader .preloader-circle {
    width: 100px;
    height: 100px;
    position: relative;
    border-style: solid;
    border-width: 4px;
    border-top-color: #ff9d00;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(255, 157, 0, 0.15);
    box-shadow: 0 1px 5px 0 rgba(255, 157, 0, 0.15);
    background-color: #fff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-circle2 {
    border-top-color: #0078ff;
}
.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-img img {
    max-width: 75px;
}
.preloader .pere-text strong {
    /*font-weight: 800;*/
    color: #dca73a;
    text-transform: uppercase;
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
/***THEME SPECIFIC STYLES***/
.theme-yellow-txt{color:rgba(255,157,0,1);}
.light-yellow-txt{color: #f6de7f;}
.light-grey-txt{color: #999999;}
.blue-txt{color: #0047b2;}
.green-txt{color: #75c30d;}
.txt-success{color: rgb(50, 171, 0);}
.txt-error{color:rgb(255, 70, 70);}
.txt-warn{color: #ff7d13;}
.bg-darkblue{background: #0047b2;}
.bg-yellow{background: #edbe00;}
.bg-darkblue{background-color: #2b2f4c;}
.mx-wdth{max-width:768px;}
.shadow-1{
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
}
.shadow-2{
    box-shadow: 0px 3px 5px 0px rgba(210, 210, 210, 0.5);
}
.bg-theme-gradient{
    background: linear-gradient(90deg, rgba(237,190,0,1) 0%, rgba(255,157,0,1) 100%);
}
button{
    position: relative!important;
    overflow: hidden!important;
    transition: background 400ms !important;
    padding: 0;
    background: transparent;
    /* color: #fff;
    background-color: #6200ee;
    padding: 1rem 2rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem; */
    outline: 0!important;
    border: 0!important;
    /* border-radius: 0.25rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.3); */ /* black with 30% opacity */
    cursor: pointer!important;
}

span.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 600ms linear;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  @keyframes ripple {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }
.btn-theme-white{
    background-color: #FFF;
    padding: .75rem 1.5rem;
    border: 0;
    color: #111;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
}
.btn-theme-gradient{
    background: linear-gradient(90deg, rgba(237,190,0,1) 0%, rgba(255,157,0,1) 100%);
    padding: .85rem 1.5rem;
    border: 0;
    color: #FFF;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0px 6px 10px 0px rgba(255, 157, 0, 0.75);
}
/***SPLASH SCREEN CSS + SPLASH LOGIN START***/
section.splash{
    min-height: calc(100vh - 48px);
    padding: 10px;
    display: flex;
    align-items: center;
}
.splash-card, .splash-loginsignup-card{
    position: relative;
    z-index: 1;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 300px;
    max-width: 425px;
    border-radius: 24px;
    background: rgba(255,255,255,.75);
    box-shadow: 0 0 15px rgba(255,255,255,.75);
    padding: 20px 0;
    margin: 0 auto;
}
.splash-card h1{
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 2rem;
}
.splash-card h4{
    font-size: 24px;
}
.splash .linebar{
    background-color: #ebebeb;
    height: 6px;
    width: 168px;
    border-radius: 4px;
    margin: 0 auto;
}
.paw-thumb-bg{
    max-width: 425px;
    margin:0 auto;
    position: fixed;
    z-index: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
}
.splash-loginsignup-card h1{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1.25rem;
}
.splash-loginsignup-card h4{
    font-size: 18px;
    font-weight: 300;
}
/***SPLASH SCREEN CSS + SPLASH LOGIN END***/

/***LOGIN SIGNUP SCREEN CSS START***/
.loginsignup{
    min-height: calc(100vh - 48px);
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.loginsignup-card{
    min-width: 300px;
    max-width: 480px;
    padding: 0 0 20px;
    margin: 0 auto;
}
.loginsignup-card h1{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 2rem;
}
.loginsignup-card .form-group{
    margin-bottom: 1.25rem;
}
.loginsignup-card label, .loginsignup-card a{
    font-size: .9rem;
}
.loginsignup-card input.form-control{
    height: auto;
    border-radius: 0;
    border: 0;
    background: #FFF;
    border-bottom: 1px solid #eee;
    padding: .6rem 0;
    color: #111;
    font-size: 1rem;
    font-weight: 600;
}
/***LOGIN SIGNUP SCREEN CSS END***/

/***STEP SCREENS CSS START***/
.kotapets-navbar-top{
    background: #0047b2;
    padding: .25rem;
}
.kotapets-headnav-btn{
    background: none;
    border: 0;
}
.kotapets-navbar-top h4.page-name{
    margin-bottom: 0;
    font-size: 1.25rem;
    color:#FFF;
    font-weight: 400;
}
.modal.left .modal-dialog {
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content, .modal.right .modal-content {
	overflow-y: auto;
}

.modal.left.fade .modal-dialog {
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	-o-transition: opacity 0.3s linear, left 0.3s ease-out;
	transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.show .modal-dialog {
	left: 0;
}

.modal.right .modal-dialog {
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.right.fade .modal-dialog {
	right: -320px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	-o-transition: opacity 0.3s linear, right 0.3s ease-out;
	transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.show .modal-dialog {
	right: 0;
}

/* ----- MODAL STYLE ----- */
.modal-content {
	border-radius: 0;
	border: none;
}
.modal-header {
	border-bottom-color: #eeeeee;
	background-color: #fafafa;
}
/* header.masthead{
    margin-top: 48px;
} */
.carousel-item {
    /* height: 268px; */
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
.steps-sec{
    padding: 2rem 0;
}
.steps-sec h1{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 1rem;
}
.steps-sec input.form-control{
    height: 57px;
    border-radius: 0;
    border: 0;
    background: #FFF;
    border-bottom: 1px solid #eee;
    padding: .6rem 0;
    color: #111;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
}
.pet-image-card{
    position: relative;
    display: inline-block;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
    margin: 15px 0 30px;
}
.pet-image-card input {
    position: absolute;
    z-index: 1;
    width: 128px;
    height: 128px;
    left: 0;
}
.pet-image-card img{
    border-radius: 4px;
}
/***STEP SCREENS CSS END***/

/***SIDEBAR NAV CSS START***/
.sidebar-nav a.nav-item.nav-link{
    color: #999999;
    font-size: .9rem;
    padding: .75rem 1rem;
    border-top: 1px solid #f5f5f5;
}
.sidebar-nav a.nav-item.nav-link i{
    color:rgba(255,157,0,1);
}
.sidebar-nav a.nav-item.nav-link:focus,
.sidebar-nav a.nav-item.nav-link:active,
.sidebar-nav a.nav-item.nav-link.active{
    font-weight: 600;
    color: #111;
}
/***SIDEBAR NAV CSS END***/

/***PETS DASHBOARD CSS START***/
.pets-sec{
    padding: 15px 0;
}
.pet-card{
    margin: 0 auto;
    text-align: center;
    position: relative;
    max-width: 273px;
}
.pet-card-details{
    display: inline-block;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
    padding: 10px;
}
.pet-card-content{
    text-align: center;
    margin-top: 15px;
}
.pet-card-content .petcard-petname{
    font-weight: 700;
    font-size: 1rem;
    color: #111;
}
.pet-card-content .petcard-petage{
    color: #edbe00;
    font-weight: 600;
    font-size: .85rem;
}
.petcard-order-status, .petcard-memoryorder-status{
    font-size: .825rem;
    line-height: 1.75;
}
.pet-card-action{
    max-width: 278px;
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    text-align: right;
    padding: 20px 20px 0;
    z-index: 1;
}
.pet-card-action ul{
    margin-bottom: 0;
}
.pet-card-action li{
    border-radius: 4px;
}
.pet-card-action li img{
    background-color: #FFF;
    width: 24px;
    height: 24px;
    padding: 4px;
    border-radius: 4px;
}
.add-button{
    position: fixed;
    bottom: 15px;
    right: 15px;
}
.add-button button{
    background: #0047b2;    
    width: 48px;
    height: 48px;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0px 6px 10px 0px rgb(38 72 178 / 50%);
}
.category-slide{
    max-width: 100%;
    margin: 0 auto;
}
.category-slide .carousel-item{
    /* max-height: calc(204px + 1rem); */
    max-height: 450px;
    overflow: hidden;
    padding: .5rem;
    border-radius: 4px;
}
.category-slide .carousel-item img{
    max-height: 450px;
    object-fit: cover;
    width: 100%;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.75);
}
.category-slide .carousel-caption{
    left: .5rem;
    right: .5rem;
    justify-content: left;
    /* display: grid;
    justify-content: center; */
    bottom: .5rem;
    /* padding-bottom: 30px; */
    padding: 10px;
    border-radius: 4px;
    background-color: rgb(0 71 178 / 20%);
}
.category-slide .carousel-caption a span{
    color: #111;
    font-size: .85rem;
    font-weight: 700;
}
.category-slide .category-name{
    margin: 0;
    display: initial;
    font-size: .85rem;
    border-radius: 4px;
    padding: .5rem 0;
    color: #FFF;
    
}
.category-slide .carousel-indicators{
    display: none;
    margin-bottom: 15px;
}
.category-slide .carousel-indicators li{
    width: 8px;
    height: 8px;
    margin-right: 3px;
    margin-left: 3px;
    border-radius: 4px;
    border: 0;
    background-color: #fff;
    opacity: 1;
}
.category-slide .carousel-indicators li.active{
    background-color: #edbe00;
}
.modalbtnImagecard{
    display: inline-block;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
    margin: 0 5px;
    padding: 15px;
}
/***PETS DASHBOARD CSS END***/

/***PETS APP CATEGORY CSS START***/
.category-sec{
    padding: 15px 0;
    /* margin-top: 48px; */
}
.head-txt{
    color: #111;
    font-size: 18px;
    font-weight: bold;
}
.category-list{
    margin: 15px 0;
}
.category-image-card{
    display: inline-block;
    border-radius: 4px;
    background-color: #FFF;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.75);
    margin: 0 0 5px;
}
.category-image-card img{
    border-radius: 4px;
}
.category-name{
    color: #111;
    font-size: .9rem;
}
/***PETS APP CATEGORY CSS END***/

/***STORED MEMORY CSS START***/
.listPet-img{
    width: auto;
    height: 248px;
    margin: 0 auto;
}
.stored-memory{
    padding: 15px 0;
    /* margin-top: 48px; */
}
/***STORED MEMORY CSS END***/

/***PRODUCT SEC CSS START***/
.product-sec{margin-top: 110px;}
.product-card{
    margin: 0 auto;
    text-align: center;
    position: relative;
    max-width: 273px;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0px 6px 10px 0px rgba(210, 210, 210, 0.5);
}
.category-slide-list .btn.btn-light2.fetchProductsByTag.active .category-name{
    color: #0047b2;
    font-weight: 700;
}
.product-categoryname{
    margin-top: 15px;
    font-size: .8rem;
}
.product-itemname{
    font-size: .95rem;
}
.product-card .product-itemname{
    margin-top: 10px;
    color: #212529;
    /* height: 40px; */
    height: auto;
}
.addcartbtn{
    height: 33px;
    font-size: .8rem;
    padding: .35rem 1rem;
    border-radius: 4px;
    color: #FFF;
    font-weight: bold;
    margin-top: 10px;
}
/* -- QUANTITY BOX -- */
.quantity {
    display: inline-block;
}

.quantity .input-text.qty {
    height: 33px;
    width: 56px;
    padding: .35rem .5rem;
    text-align: center;
    background-color: transparent;
    border: 0;
    /* margin-left: -4px;
    margin-right: -4px; */
    background: #fff;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 0;
}

.quantity .input-text.qty.white-bg-input {
    border: 1px solid #efefef;
}

.quantity.buttons_added {
    text-align: center;
    position: relative;
    white-space: nowrap;
    vertical-align: top; 
}

.quantity.buttons_added input {
    display: inline-block;
    margin: 0;
    vertical-align: top;
    box-shadow: none;
}

.quantity.buttons_added .minus,
.quantity.buttons_added .plus {
    height: 33px;
    width: 36px;
    line-height: .9;
    font-size: 1.5rem;
    padding: .35rem .5rem;
    border-radius: 4px;
    color: #FFF;
    font-weight: bold;
    background-color: #2b2f4c;
    border: 0;
    cursor: pointer;
}

.quantity.buttons_added .minus-btn {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.quantity.buttons_added .plus-btn {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.quantity.buttons_added .minus {
    border-right: 0;	
}

.quantity.buttons_added .plus {
    border-left: 0; 
}

.quantity.buttons_added .minus:hover,
.quantity.buttons_added .plus:hover {
    background: rgba(255,157,0,1);
    color: #fff !important;
    transition: all .2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    margin: 0;
}

.quantity.buttons_added .minus:focus,
.quantity.buttons_added .plus:focus {
    outline: none; 
}
.product-description li{
    padding: .25rem 0;
}
.pet-selection-btn{
    padding: .5rem;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
}
.pet-selection-btn.dropdown-toggle::after{
    border: 0;
}
.pet-selection-dropdown .dropdown-menu{
    width: 100%;
}
.pet-selection-dropdown .dropdown-item{
    padding: .5rem;
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    font-weight: 600;
}
.pet-selection-dropdown .dropdown-item:hover{
    background: linear-gradient(90deg, rgba(237,190,0,1) 0%, rgba(255,157,0,1) 100%);
    color: #FFF;
}
.pet-selection-dropdown .dropdown-item:active{
    color: #fff;
    text-decoration: none;
    background-color: #2b2f4c;
}
.product-head-fixed{
   position: fixed;
   z-index: 9;
   width: 100%;
}
.category-slide-list .item{text-align: center;}
.category-slide-list .btn.btn-light2{padding-left: 0;padding-right: 0;}
.category-slide-list .category-image-card{margin-bottom: 0;}
.category-slide-list img{width: 30px!important; height: 30px!important;}
.category-slide-list .category-name{font-size: .75rem; height: 15px; margin-bottom: 0; overflow:hidden;}
.filter-details-sec{background-color: #FFF; box-shadow: 0px 2px 8px 0px rgb(210 210 210 / 75%);}
.filter-details-sec .badge{font-size: .85rem; padding: .5rem;font-weight: 400;}
/***PRODUCT SEC CSS END***/

/*** PET PROFILE CSS START***/
.pet-profile{
    padding: 15px 0;
    position: relative;
}
.pet-card-profile-bg{
    background: #0047b2 url(../img/profile-bg.png) center center;
    background-size: cover;
    width: calc(100% - 2rem); 
    height: 100%;
    position: absolute;
    top: 0;
    border-radius: 30px;
}
.past-order li{
    padding: .5rem;
}
.medical-card{
    border-radius: 8px;
    background: #edbe00 url(../img/medical-paw-bg.png) center no-repeat;
    background-size: cover;
    padding: 20px 25px;
}
.profile-feature-card{
    border-radius: 8px;
    width: 100px;
    height: 100px;
    padding: 15px;
    margin: 0 auto;
}
.past-order-card{
    background: #ffae56;
}
.nutrition-card{
    background: #a2dc50;
}
.consult-card{
    background: #bb89ed;
}
.story-card{
    background: #ff8596;
}
/*** PET PROFILE CSS END***/






/*** CART AREA ***/

/*---------------------
  Shopping Cart
-----------------------*/

.shopping-cart {
	padding-top: 80px;
	padding-bottom: 60px;
}

.cart-table {
	margin-bottom: 40px;
}

.cart-table table {
	width: 100%;
	min-width: 480px;
	border: 1px solid #ebebeb;
}

.cart-table table tr th {
	font-size: 16px;
	color: #252525;
	font-weight: 700;
	border-bottom: 1px solid #ebebeb;
	text-align: center;
	padding: 18px 0 19px;
	text-transform: uppercase;
}

.cart-table table tr th.p-name {
	text-align: left;
}

.cart-table table tr td {
	text-align: center;
	padding-bottom: 34px;
}

.cart-table table tr td.first-row {
	padding-top: 30px;
}

.cart-table table tr td.cart-pic {
	width: 21%;
}

.cart-table table tr td.cart-title {
	text-align: left;
}

.cart-table table tr td.cart-title h5 {
	color: #252525;
}

.cart-table table tr td.p-price {
	width: 16%;
}

.cart-table table tr td.p-price,
.cart-table table tr td.total-price {
	color: #cda557;
	font-size: 16px;
	font-weight: 700;
}

.cart-table table tr td.qua-col {
	width: 16%;
}

.cart-table table tr td.qua-col .quantity {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.cart-table table tr td.qua-col .pro-qty {
	width: 123px;
	height: 46px;
	border: 2px solid #ebebeb;
	padding: 0 15px;
	float: left;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn {
	font-size: 24px;
	color: #b2b2b2;
	float: left;
	line-height: 38px;
	cursor: pointer;
	width: 18px;
}

.cart-table table tr td.qua-col .pro-qty .qtybtn.dec {
	font-size: 30px;
}

.cart-table table tr td.qua-col .pro-qty input {
	text-align: center;
	width: 52px;
	font-size: 14px;
	font-weight: 700;
	border: none;
	color: #4c4c4c;
	line-height: 40px;
	float: left;
}

.cart-table table tr td.total-price {
	width: 12%;
}

.cart-table table tr td.close-td {
	font-size: 16px;
	color: #252525;
	width: 8%;
}

.cart-table table tr td.close-td i {
	cursor: pointer;
}

.cart-buttons {
	margin-bottom: 34px;
}

.cart-buttons .continue-shop {
	color: #b2b2b2;
	border: 2px solid #ebebeb;
	background: #ffffff;
	margin-right: 8px;
	padding: 12px 20px 12px 20px;
	margin-bottom: 10px;
}

.cart-buttons .up-cart {
	color: #252525;
	background: #f3f3f3;
	border: 2px solid #ebebeb;
	padding: 12px 20px 12px 20px;
}

.discount-coupon {
	margin-bottom: 30px;
}

.discount-coupon h6 {
	color: #232530;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.discount-coupon .coupon-form {
	position: relative;
}

.discount-coupon .coupon-form input {
	width: 100%;
	height: 46px;
	border: 2px solid #ebebeb;
	color: #b2b2b2;
	font-size: 14px;
	padding-left: 20px;
}

.discount-coupon .coupon-form .coupon-btn {
	position: absolute;
	right: 0;
	top: 0;
	color: #252525;
	background: transparent;
	border: 1px solid transparent;
	padding: 13px 25px 10px 35px;
}

.proceed-checkout ul {
	border: 2px solid #ebebeb;
	background: #f3f3f3;
	padding-left: 25px;
	padding-right: 25px;
	padding-top: 16px;
	padding-bottom: 20px;
}

.proceed-checkout ul li {
	list-style: none;
	font-size: 16px;
	font-weight: 700;
	color: #252525;
	text-transform: uppercase;
	overflow: hidden;
}

.proceed-checkout ul li.subtotal {
	font-weight: 400;
	text-transform: capitalize;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 14px;
}

.proceed-checkout ul li.subtotal span {
	font-weight: 700;
}

.proceed-checkout ul li.cart-total {
	padding-top: 10px;
}

.proceed-checkout ul li.cart-total span {
	color: #cda557;
}

.proceed-checkout ul li span {
	float: right;
}

.proceed-checkout .proceed-btn {
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: #252525;
	text-transform: uppercase;
	padding: 15px 25px 14px 25px;
	display: block;
	text-align: center;
}

/*---------------------
  Check Out
-----------------------*/

.checkout-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

.checkout-content {
	margin-bottom: 50px;
}

.checkout-content .content-btn,
.checkout-content input {
	color: #252525;
	font-size: 16px;
	border: 2px solid #ebebeb;
	padding: 14px 20px;
	background: #f3f3f3;
	text-align: center;
	display: block;
}

.checkout-content input {
	height: 56px !important;
}

.checkout-form h4 {
	color: #252525;
	font-weight: 700;
	margin-bottom: 30px;
}

.checkout-form label {
	color: #252525;
	font-size: 16px;
	margin-bottom: 5px;
}

.checkout-form label span {
	color: #d85d5c;
}

/* .checkout-form input {
	width: 100%;
	height: 46px;
	border: 2px solid #ebebeb;
	margin-bottom: 25px;
	padding-left: 15px;
} */

.checkout-form input.street-first {
	margin-bottom: 20px;
}

.create-item {
	padding-top: 15px;
}

.create-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}

.create-item label input {
	position: absolute;
	visibility: hidden;
}

.create-item label input:checked~span {
	background: #cda557;
	border-color: #cda557;
}

.create-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.create-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.place-order .order-total {
	border-top: 1px solid #ebebeb;
	padding: 0;
}

/* .checkout-form .place-order .order-total .order-table {
	margin-bottom: 64px;
} */
.order-head-title{font-size: 1.1rem; font-weight: 600; padding: 14px 15px;margin: 0;}
.order-table,.order-table-footer{padding-left: 0; margin: 0;}
.place-order .order-total .order-table li,
.place-order .order-total .order-table-footer li{
	list-style: none;
	color: #252525;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 5px;
	padding-top: 30px;
}
.order-table-footer li{display: flex; align-items: center; justify-content: space-between;}
.place-order .order-total .order-table-footer li:last-child{
	border: 0 !important
}

.place-order .order-total li.fw-normal {
    border: 0;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px;
    border-bottom: 1px solid #e5e5e5;
    /* border: 1px solid #e5e5e5;
    margin-top: -1px; */
}

.place-order .order-total li.fw-normal h5{
	font-weight: 500;
    font-size: .8rem;
}
.place-order .order-total li.fw-normal .quantity .input-text.qty {
    height: 28px;
    width: 36px;
    padding: .25rem .5rem;
    font-size: .9rem;
}
.place-order .order-total li.fw-normal .quantity.buttons_added .minus,
.place-order .order-total li.fw-normal .quantity.buttons_added .plus {
    height: 28px;
    width: 28px;
    line-height: 1.1;
    font-size: 1rem;
    padding: .25rem .5rem;
}
/* .productQtyVal{
    width: 60px;
} */
.place-order .order-total li .item-price{
    font-weight: 600;
    font-size: .85rem;
}
.place-order .order-total li.total-price {
	color: #ff9d00;
	padding: 20px 10px;
}
.order-tbl-ft-lft-txt{font-size: .8rem;}
.order-tbl-ft-rgt-txt{float: right;}
.order-total-btn-area{
    display: flex;
    align-items: center;
    flex-direction: column;
    /* padding: 10px; */
}
.filter-head-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    border-bottom: 1px solid #e5e5e5;
}
.filter-head-title h4{
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}


.place-order .order-total .payment-check {
	margin-bottom: 50px;
}
.place-order .order-total .payment-check .pc-item label {
	position: relative;
	cursor: pointer;
	padding-left: 32px;
	margin-bottom: 0;
	font-size: 14px;
	color: #252525;
}
.place-order .order-total .payment-check .pc-item label input {
	position: absolute;
	visibility: hidden;
}

.place-order .order-total .payment-check .pc-item label input:checked~span {
	background: #cda557;
	border-color: #cda557;
}

.place-order .order-total .payment-check .pc-item label .checkmark {
	position: absolute;
	left: 0;
	top: 3px;
	height: 13px;
	width: 13px;
	border: 2px solid #B2B2B2;
	border-radius: 2px;
}

.place-order .order-total .payment-check .pc-item label .checkmark:after {
	left: 0;
	top: 0;
	width: 9px;
	height: 6px;
	border: solid #ffffff;
	border-width: 2px 2px 0px 0px;
	-webkit-transform: rotate(127deg);
	-ms-transform: rotate(127deg);
	transform: rotate(127deg);
}

.place-order .order-total .order-btn {
	text-align: center;
}

.place-order .order-total .order-btn .place-btn {
	padding: 13px 40px 11px;
	background: #000000;
	border-color: #000000;
}


/***ORDER STATUS CSS***/
.pdpt-bg {
    margin-top: 30px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 2px 0 #e9e9e9;
}
.pdpt-title h6 {
    border-bottom: 1px solid #efefef;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 0;
}
.order-dtsll {
    padding: 10px;
}
.order-dtsll li {
    display: inline-block;
    vertical-align: top;
}
.order-dt-img {
    background: #f9f9f9;
    padding: 8px;
    border: 1px solid #efefef;
    border-radius: 5px;
}
.order-dt-img img {
    width: 68px;
}
.order-dt47 {
    margin-left: 15px;
}
.order-dt47 h4 {
    font-size: 18px;
    color: #111;
    margin-bottom: 5px;
    line-height: 24px;
    text-align: left;
    font-weight: 700;
}
.order-dt47 p {
    font-size: 16px;
    font-weight: 400;
    text-align: left;
    color: #111;
    margin-bottom: 7px;
}
.order-title {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}
.track-order {
    padding: 20px 0;
}
.track-order h6 {
    margin-left: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #111;
    text-align: left;
}
.progress {
    background-color: #efefef!important;
}
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline > li {
    position: relative;
    margin: 25px 0;
    padding-left: 15px;
    line-height: 1.75;
}
ul.timeline > li:before {
    content: ' ';
    background: rgba(255,157,0,1);
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 8px solid #f6de7f;
    left: -25px;
    width: 30px;
    height: 30px;
    z-index: 400;
}
ul.timeline > li:after {
    content: ' ';
    display: inline-block;
    position: absolute;
    left: -12px;
    top: 30px;
    width: 4px;
    height: calc(100% - 5px);
    z-index: 400;
}
ul.timeline > li.completed:after{
    background: #f6de7f;
}
ul.timeline > li.active:after{
    background: #efefef;
}
ul.timeline > li.disabled:before{
    background: #efefef;
    border: 0;
}
ul.timeline > li.disabled:after{
    height: 0;
}
ul.timeline > li.finished:after{
    height: 0;
}
.alert-offer {
    padding: 15px 10px;
    border-top: 1px solid #efefef;
    font-weight: 400;
    color: #111;
    text-align: left;
    line-height: 24px;
}
.call-bill {
    padding: 15px 20px;
    display: flex;
    border-top: 1px solid #efefef;
    align-items: center;
}
.delivery-man a {
    margin-left: 5px;
    color: rgba(255,157,0,1);
}
.order-bill-slip {
    margin-left: auto;
}
/* 
.bill-btn5 {
    display: block;
    background: rgba(255,157,0,1);
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
} */


/************LANDING PAGE*****************/
  .landing-sec{
      margin-top: 135px;
  }
  .landing-hd-txt{
      position: absolute;
      top: 0;
      width: calc(80% - 30px);
      padding: 60px 30px;
      margin: 0 10%;
  }
  .landing-hd-txt h1{
      font-weight: 600;
  }
  .landing-hd-txt img{
      margin-left: 80px;
      width: 300px;
  }
  .landing-next h2{font-size: 38px; font-weight: 400;}
  .landing-card{
    padding: 30px;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0px 6px 10px #9fc5ff25;
    transition: all ease-in-out 200ms;
    margin-bottom: 15px;
    margin-top: 35px;
  }
  .landing-card:hover{
    box-shadow: 0px 6px 15px #9fc5ff50;
  }

  .landingFeature{
    /* padding: 0 30px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .landingFeature span {
    background: #0063f8;
    box-shadow: 0px 6px 10px #9fc5ff;
    font-size: 24px;
    padding: 20px;
    margin-bottom: 15px;
    color: #FFF;
    border-radius: 50px;
    float:left;
    width: 72px;
    height: 72px;
    font-weight:bold;
    text-align: center;
    transition: all ease-in-out 200ms;
  }
  
  .landingFeature h4 {
    text-align: center;
    font-size: 16px;
    color: #000d24;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.65;
  }

  .landing-card:hover .landingFeature span{
    background: #edbe00;
    box-shadow: 0px -6px 10px #edbe0050;
  }
  
  @media (max-width: 1200px){
    .landing-hd-txt img{
        width: 256px;
    }
    .landing-next h2{font-size: 34px;}
    .landing-next h4{font-size: 24px;}
  }
  @media (max-width: 991px){
    .landing-hd-txt{
        text-align: left!important;
        position: absolute;
        margin:0;
        width: 100%;
        padding: 60px 30px 0;
    }
    .landing-hd-txt h1{
        font-size: 30px;
    }
    .landing-hd-txt img{
        margin-left: 0;
        width: 168px;
    }
    .landing-next h2{font-size: 32px;}
    .landing-next h4{font-size: 24px;}
  }
  @media (max-width: 767px){
    .landing-sec{
        margin-top: 192px;
    }
    .landing-hd-txt{
        text-align: center!important;
        position: relative;
        margin:0;
        margin-top: -168px;
        width: 100%;
        padding: 60px 30px 0;
    }
    .landing-hd-txt img{
        margin: 0 auto;
        width: 168px;
    }
    .landing-next h2{font-size: 28px;}
    .landing-next h4{font-size: 20px;}
  }
  @media (max-width: 576px){
    .landing-hd-txt{
        padding: 50px 20px 0;
        margin-top: -136px;
    }
    .landing-hd-txt h1{
        font-size: 24px;
        font-weight: 500;
    }
    .landing-next h2{font-size: 24px;}
    .landing-next h4{font-size: 18px;}
  }
