
/* Step Section */

.pet .steps {
    position: relative;
    padding: 0px 0px 75px;
    margin: 75px 0px 0px;
    color: var(--pt_black);
}

.pet .steps:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    background: url("../images/home_5/pattern-11(2.html).png");
    background-repeat: no-repeat;
    background-position: -200px 0px;
    background-size: contain;
    width: calc(50vw + 500px);
    height: 100%;
    z-index: -1;
}

.pet .steps h2 {
    /* color: var(--pt_orange); */
    padding-bottom: 45px;
}

/* Svg Animation */

.pet .steps .cards {
    margin-bottom: 40px;
}

.pet .steps .card {
    background: url("../images/home_5/app-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 20px;
    margin-bottom: 40px;
    transition-duration: 1s;
    overflow: visible;
}

.pet .steps .card:hover {
    box-shadow: 0px 0px 20px 0px var(--pt_pattern);
    transform: translateY(-10px);
    transition-duration: 1s;
}

.pet .steps .card::before {
    content: '';
    width: 100%;
    height: 34%;
    position: absolute;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    top: 0px;
    left: 0px;
    opacity: 0.6;
    z-index: 1;
}

.pet .steps .card.orange::before {
    background: var(--pt_orange);
}

.pet .steps .card.yellow::before {
    background: var(--pt_yellow);
}

.pet .steps .card.purple::before {
    background: var(--pt_purple);
}

.pet .steps .card::after {
    background: var(--pt_white);
    content: '';
    width: 100%;
    height: 66%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pet .steps .card .icon {
    position: relative;
    left: 33%;
    top: 75px;
    z-index: 99;
    display: inline-block;
    background: var(--pt_white);
    width: 105px;
    height: 105px;
    border-radius: 50%;
    padding: 22px 20px;
}

.pet .steps .card.orange .icon svg * {
    stroke: var(--pt_orange);
}

.pet .steps .card.yellow .icon svg * {
    stroke: var(--pt_yellow);
}

.pet .steps .card.purple .icon svg * {
    stroke: var(--pt_purple) !important;
}

.pet .steps .card .content {
    position: relative;
    z-index: 99;
    text-align: center;
    padding-top: 30%;
}

.pet .steps .card h5 {
    font-family: var(--pt_font_1);
}

.pet .steps .card.orange .content h5 {
    color: var(--pt_orange);
}

.pet .steps .card.yellow .content h5 {
    color: var(--pt_yellow);
}

.pet .steps .card.purple .content h5 {
    color: var(--pt_purple);
}

.pet .steps .card .content h5+p {
    padding: 20px 0px;
}

.pet .steps .card .content .more {
    position: relative;
}

.pet .steps .card .content .more a {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: var(--pt_white);
    padding: 26px 25px;
    position: absolute;
    font-size: 20px;
    left: 38%;
    top: -21px;
    transition: 0.7s;
}

.pet .steps .card.orange .content .more a {
    color: var(--pt_orange);
}

.pet .steps .card.yellow .content .more a {
    color: var(--pt_yellow);
}

.pet .steps .card.purple .content .more a {
    color: var(--pt_purple);
}

.pet .steps .card .content .more a i {
    position: relative;
    z-index: 99;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pet .steps .card .content .more a:before {
    background: var(--pt_white);
    content: '';
    width: 50%;
    height: 50%;
    position: absolute;
    transform: scale(1);
    top: 27%;
    left: 25%;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
    border-radius: 50%;
    z-index: 1;
}

.pet .steps .card:hover .content .more a i {
    color: var(--pt_white);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pet .steps .card:hover .content .more a::before {
    transform: scale(1.9);
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.pet .steps .card.orange:hover .content .more a::before {
    background: var(--pt_orange);
}

.pet .steps .card.yellow:hover .content .more a::before {
    background: var(--pt_yellow);
}

.pet .steps .card.purple:hover .content .more a::before {
    background: var(--pt_purple);
}



/* Grid Cards */

.pet.shop .steps:before {
    background-position: -100px 300px;
    background-size: contain;
}

.pet.shop .steps .card:before {
    display: none;
}

.pet.shop .steps .card:after {
    height: 100%;
    z-index: -1;
}

.pet.shop .steps .cards {
    margin-bottom: 0px;
}

.pet.shop .steps .card {
    background: none;
    padding: 0px 0px 5%;
    margin-top: 5%;
    border-radius: 10px;
    border: 1px solid var(--pt_pattern);
}

.pet.shop .steps .card.orange p.head {
    color: var(--pt_orange);
}

.pet.shop .steps .card.yellow p.head {
    color: var(--pt_yellow);
}

.pet.shop .steps .card.purple p.head {
    color: var(--pt_purple);
}

.pet.shop .steps .card .image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
}

.pet.shop .steps .card .image img {
    transform: scale(1);
    width: 100%;
    height: 100%;
    transition: all 1s;
}

.pet.shop .steps .card:hover .image img {
    transform: scale(1.05);
    transition: all 1s;
}

.pet.shop .steps .card .content {
    padding: 10% 5% 2%;
}

.pet.shop .steps .card .content p.cat {
    margin-bottom: 0px;
    font-size: 14px;
    font-weight: bold;
}

.pet.shop .steps .card .content h5 {
    font-size: 16px;
}

.pet.shop .steps .card .content .more a {
    font-size: 25px;
    left: 34%;
}

.pet.shop .steps .card .content p.head {
    font-size: 18px;
    margin-bottom: 0px;
}

.pet.shop .steps .card .content p.rating {
    font-size: 18px;
    margin-bottom: 0px;
}

.pet.shop .steps .card .content h5+p {
    padding: 0px;
    padding-top: 5px;
}

/* Sale Label */

.pet.shop .steps .card .sale_label {
    position: absolute;
    top: 0em;
    right: 0em;
    left: auto;
    background: var(--pt_orange);
    color: white;
    opacity: .9;
    z-index: 1;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    border-top-right-radius: 0px;
}

.pet.shop .steps .card .new {
    background: var(--pt_purple);
}

/*  */

.pet.shop .steps .card p.head span {
    font-size: 14px;
    color: var(--pt_grey);
    opacity: .7;
    padding-right: 10px;
    text-decoration: line-through;
    margin-bottom: 25px;
    display: inline-block;
}

/* Detail Cards */

.pet.shop .steps .detailed:last-child {
    margin-bottom: 0px;
}

.pet.shop .steps .detailed .card .sale_label {
    right: 0px;
}

.pet.shop .steps .detailed .card {
    background: var(--pt_white);
    padding: 0px;
}

.pet.shop .steps .detailed .card:after {
    display: none;
}

.pet.shop .steps .detailed .card .content {
    padding: 4%;
    text-align: left;
}

.pet.shop .steps .detailed .card .content .type {
    font-style: italic;
    font-weight: bold;
}

.pet.shop .steps .detailed .card .content .description {
    font-size: 20px;
    color: var(--pt_grey);
}

.pet.shop .steps .detailed .card .content .price {
    color: var(--pt_orange);
    font-size: 25px;
    padding: 20px 0px;
    font-weight: bold;
}

.pet.shop .steps .detailed .card .content .price span {
    color: var(--pt_grey);
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 18px;
    padding-left: 20px;
}

.pet.shop .steps .detailed .card .content a.btn.main {
    padding: 10px 50px;
    margin-top: 20px;
}

.pet.shop .steps .detailed .card {
    background: var(--pt_white);
    padding: 0px;
}

.rating i {
    color: #eabe12;
    font-size: 18px;
    margin: 0 -2px;
}

.pet.shop .steps .card .image img {
    transform: scale(1);
    width: 100%;
    height: 100%;
    transition: all 1s;
    max-width: 100%;
    max-height: 253px !important;
    min-height: 253px !important;
}

.pet.shop .steps .card .content h5 {
    font-size: 16px;
    min-height: 57px;
}


.product-gallery{
    border-radius: 10px;
    background-color: rgb(244, 244, 246);
    padding: 1.5rem;
    /* display: flex;
    flex-direction: row-reverse; */
}

.product-highlight{
    margin-top: 1.5rem;
    border-top: 1px dashed #b2b2b2;
    border-bottom: 1px dashed #b2b2b2;
    padding: 1.5rem 0 0;
    margin-bottom: 1.5rem;
}
.product-highlight h5{
    color: var(--pt_black);
}
.product-description{
    padding-left: 2rem;
   
}
.product-description .title{
    color: var(--pt_black);
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 700;
}
.product-description .price{
    color: var(--accent-color);
    font-size: 2rem;
    margin: 1rem 0;
    font-family: 'Changa', sans-serif;
    line-height: 1;
    font-weight: 700;
}


.quantity {
    border-style: solid;
    border-width: 1px;
    border-color: #caccd3;
    border-radius: 7px;
    display: inline-flex;
    padding: 0.2rem 0.8rem;
}
.quantity button,
.quantity input{
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
}
.quantity input{
    width: 40px;
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.25rem;
}
.quantity button{
    color: #414961;
}
.quantity button svg{
    width: 20px;
    height: 20px;
}
.quantity button:hover{
    color: var(--secondary-color);
}


.product-description p.head span {
    font-size: 14px;
    color: var(--pt_grey);
    opacity: .7;
    padding-right: 10px;
    text-decoration: line-through;
    margin-bottom: 25px;
    display: inline-block;
}


.review-tabbing{
    border-radius: 10px;
    background-color: rgb(244, 244, 246);
    padding: 0 2rem 0.5rem;
    margin-top: 6rem;
}
.review-tabbing .theme-tabbing{
    position: relative;
    z-index: 2;
    top: -1.5rem;
}


.theme-tabbing.nav-pills .nav-link {
    border-radius: 0.3rem;
    background: var(--primary-color);
    color: #FFF;
    padding: .5rem 1.5rem;
    margin-right: 15px;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
	position: relative;
}
.theme-tabbing.nav-pills .nav-link.active {
    background: var(--secondary-color);
    color: #FFF;
}
.theme-tabbing.nav-pills .nav-link:before{
	bottom: 20px;
	content: "";
    width: 12px;
    height: 12px;
    background: var(--secondary-color);
    font-size: 25px;
    font-weight: 700;
    color: #198df8;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    transform: rotate(45deg);
    z-index: -1;

    -webkit-transition: all 400ms ease-in-out;
    -moz-transition: all 400ms ease-in-out;
    -o-transition: all 400ms ease-in-out;
    -ms-transition: all 400ms ease-in-out;
    transition: all 400ms ease-in-out;
}
.theme-tabbing.nav-pills .nav-link.active:before {
    bottom: -6px;
}
.theme-tabbing.nav-pills .nav-link i{
	padding-right: 6px;
}
.tab-content.theme-tabbing .tab-pane{
	padding-top: 1.25rem !important;
}
