/*--------------------- Copyright (c) 2023 ----------------------- 
[Master Stylesheet] 
Project: PLR Power
-------------------------------------------------------------------*/
/*--------------- Global Style ---------------*/
:root {
    --plr-global-color: #5e5e5e;
    --plr-body-bg: #eff5fc;
    --plr-primary: #7546ea;
    --plr-white-color: #ffffff;
    --plr-green-color: #8cdf5f;
    --plr-title-color: #141a33;
    --plr-border-color: #e4e4e4;
}

/********************************************************
1. body start
 *******************************************************/
 
 body {
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-color);
    background-color: var(--white-color);
	-webkit-font-smoothing: antialiased;
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{
	color: var(--text-color);
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{
	font-family: 'Lexend', sans-serif;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;
	word-break: break-word;
}
img {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;
}
::-webkit-scrollbar {
    width: 14px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #e5e5e5;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    width: 14px;
}
.container {
    max-width: 1200px;
}
/* button css */
.plr_btn, .plr_btn:focus {
    min-width: 140px;
    padding: 0 20px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--white-color);
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
  
.plr_btn:hover {
    --x: 100%;
	color: var(--white-color);
}
button.plr_btn {
    border: none;
    min-width: 140px;
    padding: 0 20px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    border-radius: 5px;
    color: var(--white-color);
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
button.plr_btn:hover {
    --x: 100%;
	color: var(--white-color);
}
/* button css */

 /********************************************************
1. body end
 *******************************************************/
 
/* Header css */
.plr_header_section {
    position: relative;
	z-index: 2;
}
.plr_header_box {
    background-color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1730px;
    margin: auto;
    min-height: 80px;
}
.plr_header_logo a img {
    max-width: 200px;
    max-height: 80px;
}
.plr_header_logo a p {
    height: 60px;
    width: auto;
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    /*background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
}
.plr_nav_main {
    display: flex;
    align-items: center;
}
.plr_header_menu {
    display: flex;
    align-items: center;
}
.plr_free_trial, .plr_free_trial:focus {
    min-width: 108px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--white-color);
    font-size: 15px;
    font-weight: 700;
    margin-right: 30px;
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
  
.plr_free_trial:hover {
    --x: 100%;
	color: var(--white-color);
}
.plr_user_icon {
    border-radius: 5px;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    display: inline-flex !important;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.plr_user_icon svg {
    fill: var(--white-color);
}
.plr_login_sign_box ul li {
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.plr_login_sign_box ul li a {
    display: inline-flex;
    color: var(--dark-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
}
.plr_login_sign_box ul li a:hover {
    color: var(--pink-color2);
}
.plr_profile_box {
    display: inline-flex;
    vertical-align: middle;
    align-items: center;
    cursor: pointer;
}
.plr_avtar_box {
    display: inline-flex;
}
.plr_avtar_box > a {
    display: inline-flex;
    color: var(--white-color);
    font-weight: 500;
    cursor: pointer;
    font-size: 15px;
    width: 60px;
    height: 60px;
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    border: solid 4px #ebeff9;
}
.plr_avtar_box > a > img {
    border-radius: 100px;
    width: 60px;
    height: 60px;
    object-fit: cover;
}
.plr_avtar_name {
    position: relative;
    background-image: url(../images/drop.svg);
    background-repeat: no-repeat;
    background-position: center right;
    padding: 10px 30px 10px 0px;
}
.plr_avtar_name > p {
    color: var(--dark-color);
    font-size: 15px;
    font-weight: 500;
    margin-left: 20px;
}
.plr_profile_popup {
    position: absolute;
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(102, 149, 182, 0.34);
    width: max-content;
    padding: 15px 0px 0;
    top: 45px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    transform: scale(0);
    z-index: 9;
}
.plr_avtar_name:hover .plr_profile_popup {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
.plr_profile_popup ul li a {
    display: block;
    padding: 0 15px 10px;
    color: var(--text-color);
    font-size: 14px;
}
.plr_profile_popup ul li a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_profile_popup ul li a img {
    margin-right: 10px;
    margin-top: -2px;
}
.plr_profile_popup ul li:last-child a {
    border-top: solid 1px #f0f0f0;
    padding: 8px 15px 10px;
    margin-top: 4px;
}
/* banner css */
.plr_banner_section {
    padding: 180px 0;
    border-radius: 0px;
    max-width: 100%;
    margin: auto;
}
.plr_banner_section .container {
    max-width: 1490px;
}
.plr_banner_heading h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    display: inline-block;
    border-radius: 5px;
    background-color: var(--white-color);
    padding: 8px 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.plr_banner_heading h1 {
    font-size: 50px;
    color: var(--white-color);
    font-weight: 400;
    line-height: 1.3;
    margin: 25px 0 37px;
    max-width: 560px;
}
.plr_banner_heading h1 span {
    font-weight: 700;
}
.plr_banner_btn > a {
    background: var(--dark-color);
}
.plr_banner_btn > a:hover {
    background: var(--white-color);
    color: var(--dark-color);
}
/* banner css */

/* Product css Section */
.plr_product_gallery {
    padding: 80px 0;
}
.plr_product_gallery .container {
    max-width: 1690px;
}
.plr_product_box_list {
    padding-left: 36px;
}
.plr_box_search_headbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}
.plr_main_heading h2 {
    font-size: 28px;
    color: var(--dark-color);
    font-weight: 600;
    text-align: left;
}
.plr_search_box {
    max-width: 455px;
    width: 100%;
    position: relative;
}
.plr_search_box input {
    border-radius: 6px;
    background-color: rgb(242, 246, 249);
    width: 100%;
    height: 60px;
    padding: 0 80px 0 30px;
    border: none;
    color: #798d9c;
    font-size: 15px;
}
.plr_search_box input::placeholder {
    color: #97a2ad;
} 
.plr_search_box button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 0 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.plr_search_box button:hover {
    --x: 100%;
	color: var(--white-color);
}

.plr_search_box button svg {
    fill: #ffffff;
}
.plr_project_gallery {
	text-align: center;
}
.plr_pro_box {
    text-align: left;
    transition: 0.3s;
    position: relative;
    margin-bottom: 30px;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 5px;
}
.plr_animation{
    position: relative;
    overflow: hidden;
    display: block;
}
.plr_pro_box .plr_animation{
    background-color: #ffffff;
    box-shadow: 0px 0px 45px 5px rgb(16 40 132 / 5%);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
}
.plr_animation:after {
    position: absolute;
    top: 0;
    left: -100%;
    z-index: 2;
    display: block;
    content: '';
    width: 60%;
    height: 100%;
    background: -webkit-linear-gradient(linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%));
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
    -webkit-transform: skewX( 25deg);
    transform: skewX( 25deg);
}
.plr_animation_box:hover .plr_animation:after {
    -webkit-animation: box_animation 900ms;
    animation: box_animation 900ms;
}
.plr_pro_box:hover .plr_product-list-ttl {
    color: #ed5959;
}
.plr_animation_img {
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border-radius: 3px;
}
.grid_img .plr_animation_img {
    max-width: 200px;
    height: 300px;
    object-fit: contain;
}
.plr_animation_box:hover .plr_animation_img {
    transform: scale(1.1);
    border-radius: 3px;
}
@-webkit-keyframes box_animation {100% {left: 125%;}}
@keyframes box_animation {100% {left: 125%;}}

.bottom_content > h5 {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 500;
    margin-top: 20px;
}
.bottom_content > h5 > a {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 600;
    display: inline-block;
    padding: 0 10px;
    margin: 0 0 10px;
}
.bottom_content > h5 > a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bottom_content > h4 {
    margin-top: 5px;
    font-size: 18px;
    font-weight: 700;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plr_pagination {
    margin-top: 20px;
}
.plr_pagination ul li {
    display: inline-block;
    vertical-align: middle;
}
.plr_pagination ul li a {
    display: inline-flex;
    font-weight: 500;
    color: var(--text-color);
    border-radius: 4px;
    width: 38px;
    height: 38px;
    justify-content: center;
    align-items: center;
}
.plr_pagination ul li a.active {
    color: var(--white-color);
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
}
.plr_pagination ul li a:hover {
    color: var(--white-color);
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
}
.plr_pagination ul li a:hover svg {
    fill: var(--white-color);
}
.plr_productFound {
    text-align: center;
    background: #ffecec;
    padding: 30px 10px;
    border-radius: 10px;
    border: solid 1px #ffcbcb;
}
.plr_productFound p {
    font-size: 18px;
    color: #ff6f6f;
}
/* Product css Section */

/* Product Right Bar css Section */
.plr_newsletter_box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
}
.plr_newsletter_form h5 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0 25px;
}
.plr_input_box {
    text-align: left;
    margin-bottom: 20px;
}
.plr_input_box label {
    color: var(--white-color);
    margin-bottom: 5px;
}
.plr_input_box input {
    width: 100%;
    height: 50px;
    border: none;
    padding: 0 20px;
    border-radius: 4px;
    background-color: #fbf7fd;
    font-size: 14px;
    color: var(--text-color);
}
.plr_input_box input::placeholder {
    color: #c8c8c8;
}
.plr_newsletter_form button.plr_btn {
    margin-top: 10px;
    width: 100%;
    background: var(--dark-color);
}
.plr_newsletter_form button.plr_btn:hover {
    background: #f2f6f9;
    color: var(--dark-color);
}
.plr_leftbar_box {
    padding: 30px;
    margin-top: 30px;
    border: solid 1px var(--plr-border-color);
    border-radius: 10px;
    background-color: #fdfdfd;
}
.plr_product_detailhead h4 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: 600;
    border-bottom: solid 2px #dfe9f1;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
}
.plr_product_detailhead h4:after {
    position: absolute;
    content: "";
    bottom: -2px;
    width: 60px;
    height: 2px;
    left: 0;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
}
.plr_product_detail ul li {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}
.plr_product_detail ul li a {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}
.plr_product_detail ul li a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_product_detail ul li span {
    color: #7b889e;
    font-weight: 500;
    margin-left: 60px;
    text-align: right;
}

.plr_addimg_box {
    margin-top: 30px;
    border: solid 1px rgb(218, 239, 255);
    border-radius: 10px;
    background-color: rgb(248, 252, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}
.plr_addimg_box img {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
}
/* Product Right Bar css Section */

/* Blog Section css */
.plr_blog_section {
    background-color: #eef8ff;
    padding: 80px 0;
}
.plr_blog_section .plr_main_heading {
    text-align: center;
}
.plr_blog_section .plr_main_heading h2 {
    text-align: center;
    margin-bottom: 43px;
}
.plr_main_heading p {
    font-size: 15px;
    color: var(--text-color);
    max-width: 480px;
    margin: 10px auto 40px;
}
.plr_news_box {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(102, 149, 182, 0.1);
    padding: 10px;
    margin-bottom: 30px;
}
.plr_news_box:hover .plr_animation:after {
    -webkit-animation: box_animation 900ms;
    animation: box_animation 900ms;
}
.plr_news_box:hover .plr_animation_img {
    transform: scale(1.1);
    border-radius: 3px;
}
.plr_blog_content {
    padding: 20px 10px 10px;
}
.plr_blog_content h5 {
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 15px;
}
.plr_blog_content h5:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_blog_content p {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 10px;
}
.plr_blog_btn a {
    display: inline-flex;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
}
.plr_blog_btn a:after {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    bottom: 2px;
    border-bottom: solid 2px var(--pink-color2);
    transition: 0.3s;
    width: 100%;
    margin: auto;
}
.plr_blog_btn a:hover:after {
    width: 50%;
}
.plr_more_btn {
    text-align: center;
    margin-top: 20px;
}
/* Blog Section css */

/* PLR Category Section css */
.plr_blog_section.plr_product_category {
    background-color: #ededed;
}
.plr_category_box {
    background-color: #e9faf0;
    min-height: 70px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    transition: 0.3s;
    color: #54c29d;
    border: 1px solid #54c29d;
}
.plr_category_box:hover {
    transform: translatey(-5px);
}
.plr_category_box h6 a {
    font-size: 18px;
    font-weight: 600;
}
.plr_category_box h6 {
    font-size: 18pxa ;
    color: #54c29d;
}
.plr_category_box.plr_color2 {
    background-color: #ffece8;
    border-color: #ffc8bc;
}
.plr_color2 h6 a {
    color: #ff7a5b;
}
.plr_category_box.plr_color3 {
    background-color: #f1edfc;
    border-color: #cfc0f9;
}
.plr_color3 h6 a {
    color: #9b81e5;
}
.plr_category_box.plr_color4 {
    background-color: #fdf4e2;
    border-color: #ffd37c;
}
.plr_color4 h6 a {
    color: #fcbf20;
}
.plr_category_box.plr_color5 {
    background-color: #feedff;
    border-color: #faa8ff;
}
.plr_color5 h6 a {
    color: #e070e5;
}
.plr_category_box.plr_color6 {
    background-color: #dafaf6;
    border-color: #68ffec;
}
.plr_color6 h6 a {
    color: #3dd4c3;
}
.plr_category_box.plr_color7 {
    background-color: #ffe9f3;
    border-color: #ff9ac8;
}
.plr_color7 h6 a {
    color: #f27fb2;
}
.plr_category_box.plr_color8 {
    background-color: #e8faea;
    border-color: #f27fb2;
}
.plr_color8 h6 a {
    color: #86d78f;
}
.plr_category_box.plr_color9 {
    background-color: #f3fde2;
    border-color: #86d78f;
}
.plr_color9 h6 a {
    color: #aed272;
}
.plr_category_box.plr_color10 {
    background-color: #e9f5ff;
    border-color: #aed272;
}
.plr_color10 h6 a {
    color: #5fb0f4;
}
.plr_category_box.plr_color11 {
    background-color: #d8fdfd;
    border-color: #5fb0f4;
}
.plr_color11 h6 a {
    color: #2fd9e7;
}
.plr_category_box.plr_color12 {
    background-color: #fbf2ff;
    border-color: #2fd9e7;
}
.plr_color12 h6 a {
    color: #d083f2;
}
.plr_category_box.plr_color12 {
    background-color: #fbf2ff;
    border-color: #d083f2;
}
.plr_color13 h6 a {
    color: #f283ac;
}
.plr_category_box.plr_color13 {
    background-color: #fdd3e3;
    border-color: #f283ac;
}
.plr_color14 h6 a {
    color: #17c663;
}
.plr_category_box.plr_color14 {
    background-color: #b6f8d2;
    border-color: #17c663;
}
.plr_color15 h6 a {
    color: #8a83f2;
}
.plr_category_box.plr_color15 {
    background-color: #e9e7ff;
    border-color: #8a83f2;
}
.plr_color16 h6 a {
    color: #eef283;
}
.plr_category_box.plr_color16 {
    background-color: #feffe0;
    border-color: #eef283;
}
.plr_blog_section.plr_product_category .row {
    justify-content: center;
}
/* PLR Category Section css */

/* Blog page css */
.plr_cart_box {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.plr_cart_box a {
    position: relative;
    display: inline-flex;
}
.plr_cart_box a span {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: rgb(22, 0, 66);
    font-size: 8px;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
}
.plr_cart_box h5 {
    font-size: 14px;
    color: var(--dark-color);
    margin-left: 20px;
}
.plr_breadcrumbs_section {
    text-align: center;
    border-radius: 0px;
    max-width: 100%;
    margin: auto;
    padding: 80px 0;
    position: relative;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    z-index: 2;
}
.plr_breadcrumbs_section:after {
    position: absolute;
    content: "";
    background-image: url(../images/breadcrumb_banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    border-radius: 0 30px 30px 0;
}
.plr_breadcrumbs_box h2 {
    font-size: 32px;
    color: var(--white-color);
    margin-bottom: 0;
    font-weight: 700;
}
.plr_breadcrumbs_box span a {
    color: var(--dark-color);
    font-weight: 500;
}
.plr_breadcrumbs_box span a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_breadcrumbs_box span {
    background-color: var(--white-color);
    padding: 10px 30px;
    border-radius: 10px;
    color: var(--dark-color);
    font-weight: 600;
    position: absolute;
    bottom: -20px;
    margin: auto;
    left: 0;
    right: 0;
    max-width: 200px;
    box-shadow: rgba(145, 158, 171, 0.2) 0px 0px 2px 0px,rgba(145, 158, 171, 0.12) 0px 12px 24px -4px;
}
.plr_blog_section_wrapper {
    padding: 80px 0;
}
.plr_blog_section_wrapper .container {
    max-width: 1590px;
}
.plr_blog_main_wrapper {
    padding-right: 36px;
}
.plr_blog_img > img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}
.plr_blog_detail {
    padding: 50px 50px 0;
}
.plr_blog_detail > h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 30px;
}
.plr_blog_detail p {
    font-size: 15px;
    color: var(--text-color);
    margin-top: 25px;
}
/* Blog page css */

/* Privacy Policy page css */
.plr_policy_wrapper {
    padding: 80px 0;
}
h2.plr-page-title {
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 40px;
    font-weight: 600;
}
.plr_policy_detail {
    position: relative;
    padding-left: 30px;
}
.plr_policy_detail:before {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
    background: #e9e9e9;
}
.plr_privacy_list_box h5 svg {
    margin-right: 20px;
    fill: var(--pink-color2);
    position: absolute;
    left: -9px;
    height: 20px;
}
.plr_privacy_list_box {
    margin-top: 40px;
}
.plr_privacy_list_box h5 {
    font-size: 18px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    font-weight: 600;
}
.plr_privacy_list_box p {
    font-size: 16px;
    color: var(--text-color);
    margin-top: 10px;
    padding-left: 0;
}
.plr_privacy_not {
    background-color: #f4f9fd;
    padding: 50px;
    margin-left: 38px;
    margin-top: 40px;
    margin-bottom: 60px;
}
.plr_privacy_not p {
    color: var(--text-color);
    font-size: 16px;
}
/* Privacy Policy page css */
.plr_pagination {
    text-align: center;
}
/* Product Single page css */
.plr_pro_single_img {
    position: relative;
    max-width: 575px;
    width: 100%;
    height: 520px;
    border-radius: 5px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--plr-border-color);
}

span.Singleproduct {
    position: absolute;
    left: 50%;
    transform: matrix(1, -0.5, 0.2, 1, 9, 1);
    font-weight: 600;
    color: #000;
    width: 120px;
    word-break: break-all;
}
.plr_pro_single_img > img {
    border-radius: 5px;
    background-color: #ffffff;
    max-width: 313px;
    max-height: 330px;
    object-fit: contain;
    width: 100%;
}
.plr_pro_single_detail h4 {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}
.plr_pro_single_detail p {
    font-size: 15px;
    margin: 25px 0;
    color: var(--text-color);
    font-weight: 500;
}
.plr_pro_single_detail h3 {
    color: var(--dark-color);
    font-size: 22px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}
.plr_pro_single_detail h3 del {
    margin: 0 14px;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
}
.plr_pro_single_detail h3 span {
    font-size: 15px;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* tab-content css */
.plr_tab_wrapper {
    padding-bottom: 80px;
}
.plr_template_box .tab-content {
    border: solid 1px var(--plr-border-color);
    border-radius: 5px;
    background-color: var(--white-color);
    text-align: center;
    padding: 40px 50px;
}
.plr_template_box .nav {
    justify-content: left;
}
.plr_tem_tab_buttom .nav-pills .nav-link.active, .plr_tem_tab_buttom .nav-pills .show>.nav-link {
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
}
.plr_tem_tab_buttom .nav-pills .nav-link.active:hover {
    color: var(--white-color);
}
.plr_tem_tab_buttom .nav-link {
    padding: 10px 30px;
    color: var(--dark-color);
    border-radius: 5px 5px 0 0;
    font-size: 16px;
    font-weight: 500;
}
/* .plr_tem_tab_buttom .nav-link:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */
.plr_tem_description p {
    color: var(--text-color);
    margin-bottom: 20px;
}
.plr_tem_description p:last-child {
    margin-bottom: 0;
}


.plr_tem_additional {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
    grid-gap: 20px;
}
.plr_box_previews {
    width: 49%;
}
.plr_box_previews ul li {
    margin: 20px 0;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
}
.plr_box_previews ul li svg {
    position: absolute;
    top: 6px;
    left: 0;
    fill: var(--pink-color2);
}
.plr_reviews_section {
    text-align: left;
    padding-right: 80px;
}
.plr_reviews_section h3 {
    font-weight: 600;
    font-size: 20px;
    color: var(--dark-color);
}
.plr_customer_box {
    margin-top: 40px;
    display: flex;
}
.plr_cus_user {
    max-width: 60px;
    margin-right: 20px;
    width: 100%;
}
.plr_cus_user img {
    width: 60px;
    height: 60px;
    border-radius: 100px;
    object-fit: cover;
}
.plr_cus_detail h6 {
    font-weight: 600;
    color: #002533;
    font-size: 16px;
    margin-bottom: 5px;
}
.plr_cus_detail span {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}
.plr_cus_detail p {
    color: #7b889e;
    font-size: 15px;
    margin-top: 5px;
}
.plr_write_review h4 {
    font-size: 20px;
    color: var(--dark-color);
    margin: 50px 0 20px;
}
.plr_write_review textarea {
    width: 100%;
    color: var(--dark-color);
    font-size: 16px;
    border: solid 1px rgb(218, 239, 255);
    border-radius: 6px;
    background-color: rgb(248, 252, 255);
    padding: 10px 20px;
    margin-bottom: 20px;
    height: 154px;
}
.plr_write_review textarea::placeholder {
    color: #b2c5d3;
} 
/* Product Single page css */

/* Profile Cart page css */
.plr_profile_wrapper {
    padding: 80px 0;
}
.plr_profile_wrapper .plr_tem_tab_buttom {
    text-align: center;
}
.plr_profile_wrapper .plr_template_box .nav {
    justify-content: center;
    background-color: #ebeff9;
    display: inline-flex;
    border-radius: 50px;
    padding: 5px;
}
.plr_profile_wrapper .plr_tem_tab_buttom .nav-link {
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 15px;
}
.plr_profile_wrapper .plr_template_box .tab-content {
    border: none;
    border-radius: 0;
    background-color: transparent;
    text-align: left;
    padding: 0;
    margin-top: 30px;
}
.plr_edit_profile {
    border-radius: 20px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 20px 70px 0px rgba(102, 149, 182, 0.2);
    text-align: center;
    padding: 80px 30px;
    max-width: 370px;
}
.plr_edit_box {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: solid 5px #ebeff9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    color: var(--white-color);
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
}
.plr_edit_box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 100px;
    border: solid 5px #ebeff9;
}
.plr_label_file {
    margin: 20px 0 30px;
}
.plr_label_file span.plr_btn {
    border-radius: 50px;
    height: 35px;
    min-width: auto;
    padding: 0 25px;
    font-weight: 400;
    font-size: 15px;
    cursor: pointer;
}
.plr_fileupload {
    opacity: 0;
    height: 30px;
    width: 170px;
    cursor: pointer;
    bottom: -45px;
    position: absolute;
    left: -43px;
    font-size: 0;
} 
.plr_profile_name h5 {
    color: var(--dark-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 15px;
}
.plr_profile_plan_name h5 {
    margin-top: 15px;
    font-size: 16px;
    color: var(--white-color);
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}
.plr_profile_form h2 {
    color: var(--dark-color);
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 700;
}
.plr_profile_form .plr_input_box label {
    color: var(--dark-color);
    font-weight: 500;
}
.plr_profile_form .plr_input_box input {
    font-size: 16px;
    border: solid 1px rgb(218, 239, 255);
    border-radius: 6px;
    background-color: rgb(248, 252, 255);
}
.plr_profile_form .plr_input_box input::placeholder {
    color: #b2c5d3;
}
.plr_form_btn {
    margin-top: 10px;
}
.plr_input_box textarea {
    width: 100%;
    height: 145px;
    color: var(--text-color);
    padding: 20px;
    font-size: 16px;
    border: solid 1px rgb(218, 239, 255);
    border-radius: 6px;
    background-color: rgb(248, 252, 255);
}
.plr_profile_form .plr_input_box textarea::placeholder {
    color: #b2c5d3;
}
/* Table css */
.plr_my_order {
    padding: 5px;
    border-radius: 6px;
    background-color: #fafbff;
    border: solid 1px rgb(218, 239, 255);
    margin-bottom: 40px;
}
.plr_my_order .table {
    margin: 0;
    border-radius: 0 0 6px 6px;
}
.plr_my_order .table thead th {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background-color: #ebeff9;
    color: var(--dark-color);
}
.plr_my_order .table thead th:first-child {
    border-radius: 6px 0 0 0;
}
.plr_my_order .table thead th:last-child {
    border-radius: 0 6px 0 0;
}
.plr_my_order .table td {
    padding: 15px 30px;
    font-size: 16px;
    border-top: none;
    border-bottom: none;
    color: var(--text-color);
    vertical-align: middle;
}
/* .plr_my_order .table tr:nth-child(even) td {
    padding: 0px 30px;
} */
.plr_my_order .table tr:first-child td {
    padding-top: 27px;
}
.plr_my_order .table tr:last-child td {
    padding-bottom: 27px;
}
.plr_action_icon {
    display: flex;
}
.plr_action_icon a {
    transition: all linear 0.3s;
    position: relative;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plr_action_icon a:last-child {
    margin: 0;
}
.plr_action_icon>a>svg {
    fill: #9fa3ad;
}
.plr_tooltip_show {
    position: absolute;
    top: -35px;
    background-color: #11122E;
    line-height: normal;
    color: var(--white-color);
    padding: 3px 10px;
    border-radius: 4px;
    text-align: center;
    transform: translate(0px, 10px);
    transition: all linear 0.1s;
    opacity: 0;
    visibility: hidden;
}
.plr_action_icon a:hover .plr_tooltip_show {
    opacity: 1;
    visibility: visible;
    transform: translate(0px, 0px);
    transition: all linear 0.1s;
}
.plr_tooltip_show:before {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 7px;
    height: 7px;
    border-top: 5px solid #000;
    left: calc(50% - 6px);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transition: all linear 0.1s;
}
.plr_tooltip_show p {
    white-space: nowrap;
    color: var(--white);
    font-size: 12px;
}
/* Table css */
/* Profile Cart page css */

/* Contact page css */
.plr_contact_wrapper .col-xl-4.col-lg-4.col-md-5 {
    padding-right: 0;
}
.plr_contact_wrapper .col-xl-8.col-lg-8.col-md-7 {
    padding-left: 0;
}
.plr_contact_box {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    padding: 70px 40px;
    min-height: 500px;
    border-radius: 10px 0 0 10px;
}
.plr_contact_box h4 {
    color: var(--white-color);
    font-size: 22px;
}
.plr_contact_detail {
    background-color: var(--white-color);
    border-radius: 10px;
    margin-top: 30px;
    padding: 25px 35px;
}
.plr_contact_detail p {
    font-size: 16px;
    font-weight: 700;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}
.plr_profile_form.plr_contact_form {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 70px 0px rgba(102, 149, 182, 0.2);
    padding: 50px;
}
.plr_contact_detail span {
    display: block;
    color: var(--text-color);
    font-weight: 500;
}
/* Contact page css */

/* Pricing page css */
.plr_pricing_wrapper {
    padding: 80px 0;
}
.plr_pricing_wrapper .row {
    justify-content: center;
}
.plr_main_heading h2 {
    text-align: center;
    margin-bottom: 20px;
}
.plr_price_box {
    border-radius: 10px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-top: 40px;
    transition: 0.3s;
    position: relative;
}
.plr_price_box::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    border-radius: 100px 100px 0 0;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    width: 85%;
    height: 15px;
    z-index: -1;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.plr_price_box::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0px;
    bottom: 0;
    border-radius: 0 0 100px 100px;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    width: 85%;
    height: 15px;
    z-index: -1;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.plr_price_box:hover::after {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    top: -15px;
}
.plr_price_box:hover::before {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    bottom: -15px;
}
.plr_price_box.active::after {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    top: -15px;
}
.plr_price_box.active::before {
    opacity: 1;
    visibility: visible;
    transition: 0.3s;
    bottom: -15px;
}
.plr_price_plan {
    border-bottom: solid 1px #ebebeb;
    margin-bottom: 27px;
}
.plr_price_plan h4 {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}
.plr_price_plan h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 900;
}
.plr_price_plan h1 span {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 10px;
}
.plr_price_plan p {
    margin-bottom: 27px;
    font-size: 15px;
    font-weight: 500;
}
.plr_price_list ul li {
    margin-bottom: 27px;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
}
.plr_price_list ul li img {
    position: absolute;
    top: 3px;
    left: 0;
}
.plr_price_btn {
    margin-top: 35px;
}
.plr_price_btn > a {
    width: 100%;
    border: solid 1px rgb(217, 224, 236);
    background: rgb(249, 250, 252);
    color: var(--text-color);
}
.plr_price_btn > a:hover {
    width: 100%;
    border: solid 1px transparent;
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
}
.plr_price_box.active a.plr_btn {
    width: 100%;
    border: solid 1px transparent;
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
    color: var(--white-color);
}
/* Pricing page css */

/* error page css */
.plr_error_section {
    text-align: center;
}
.plr_error_section svg {
    max-width: 400px;
    margin: auto;
}
.plr_error_section h4 {
    color: var(--dark-color);
    font-size: 22px;
    font-weight: 600;
    margin: 0px 0 20px;
}
.plr_error_section p {
    max-width: 680px;
    margin: 0 auto 20px;
    font-weight: 500;
}
.plr_error_section p a {
    margin-left: 5px;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* error page css */

  
/* footer css */
.plr_footer_section {
    padding: 80px 0 0;
    background-color: var(--dark-color);
}
.plr_footer_box {
    padding-bottom: 80px;
    text-align: center;
}
.plr_footer_box a img {
    max-width: 200px;
}
.plr_footer_box>a>p {
    height: 60px;
    width: auto;
    display: inline-flex;
    align-items: center;
    font-size: 30px;
    margin: 0;
    /*background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);*/
    /*-webkit-background-clip: text;*/
    /*-webkit-text-fill-color: transparent;*/
}
.plr_footer_box p {
    color: #e8e6ed;
    font-size: 15px;
    max-width: 820px;
    margin: 30px auto 0;
}

.plr_footer_social {
    margin-top: 30px;
}
.plr_footer_social > ul > li {
    display: inline-flex;
    vertical-align: middle;
}
.plr_footer_social > ul > li > a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #050c16;
    width: 50px;
    height: 50px;
    margin-right: 8px;
}
.plr_footer_box>a .plr_foot_logo {
    font-weight: 900;
    font-size: 38px;
    height: auto;
}
.plr_footer_social > ul > li > a:hover {
    background: linear-gradient(50deg, var(--pink-color2), var(--pink-color1) 51%, var(--pink-color2)) var(--x, 0)/ 200%;
}
.plr_footer_social > ul > li > a > svg {
    fill: var(--white-color);
    width: 18px;
    height: 18px;
}
.plr_footer_social > ul > li > a > i {
    color: #ffffff;
}
.plr_footer_mini {
    background-color: #080d16;
    padding: 15px 0;
}
.plr_footer_btm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.plr_footer_btm > p {
    color: var(--white-color);
    font-size: 16px;
}
.plr_footer_btm ul li {
    display: inline-block;
}
.plr_footer_btm ul li a {
    color: var(--white-color);
    font-size: 16px;
    margin-left: 30px;
}
.plr_footer_btm ul li a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* footer css */





  

/* login css Start*/
.modal-content {
    border: none;
    border-radius: 20px;
}
.plr_login_main {
    text-align: left;
    padding: 50px 35px;
    position: relative;
    border-radius: 5px;
    min-height: 580px;
}
.plr_login_main .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 50%;
    background-color: rgb(235, 232, 241);
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    opacity: 1;
    background-image: url(../images/close.svg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}
.plr_login_auth h1 {
    font-size: 30px;
    color: var(--dark-color);
    font-weight: 500;
    margin: 0 0 15px;
}
.plr_login_auth h1 span {
    font-weight: 700;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_login_auth h5 {
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
    color: #45586d;
}
/* form css */
.plr_input_main label {
    font-size: 15px;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0;
}
.plr_input {
    position: relative;
    margin-bottom: 24px;
}
.plr_input input {
    color: var(--plr-global-color);
    background-color: #ffffff;
    width: 100%;
    height: 60px;
    padding: 0 20px 0 50px;
    border-radius: 6px;
    border: solid 1px var(--plr-border-color);
    font-size: 16px;
    font-weight: 600;
    margin-top: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
  
.plr_input input::placeholder {
    color: #45586d;
}
input:-webkit-autofill {
    background: transparent !important;
    -webkit-box-shadow: 0 0 0 50px var(--white-color) inset;
    -webkit-text-fill-color: #53627a;
}
.plr_input img {
    position: absolute;
    top: 5px;
    bottom: 0;
    margin: auto;
    left: 20px;
}
.plr_input input:focus {
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    border: solid 1px rgb(83 98 122 / 14%);
}
.plr_login_main.plr_payment_popup {
    min-height: auto;
}

.ss_payment_mod_box {
    text-align: center;
}

.ss_payment_mod_box ul li { 
    display: inline-block; 
    max-width: 150px;
    margin: 5px;
}

.ss_payment_mod_box ul {
    margin-top: 30px;
}

.ss_payment_mod_box ul li a img {
    border-radius: 8px;
}  
/* form css */

/* checkbox start */
.plr_check_section {
    margin-top: 15px;
}
.plr_check_section ul li {
    display: flex;
    justify-content: space-between;
	text-transform: capitalize;
}
.plr_check_section ul li span>a {
    color: var(--dark-color);
    font-weight: 600;
}
.plr_check_section ul li span>a:hover {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.plr_checkbox {
    text-align: left;
	text-transform: capitalize;
    cursor: pointer;
}
.plr_checkbox > input{
	position:absolute;
	left:-999999px;
}
.plr_checkbox > label {
    position: relative;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark-color);
}
.plr_checkbox > label:last-child {
	margin-bottom: 0;
}
.multi-select-menuitems label input{
	opacity: 0;
}
.plr_checkbox > label:before {
	content: "";
	margin: -2px 0 0px;
    width: 20px;
    height: 20px;
    border: solid 1px rgb(189, 211, 225);
    background-color: rgb(237, 245, 250);
    border-radius: 5px;
    display: inline-block;
    margin-right: 10px;
	vertical-align: text-top;
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(2px);
	transition: 0.3s;
}
  
.plr_checkbox > label:after {
    position: absolute;
    content: "";
    top: 7px;
    left: 4px;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--pink-color1);
    border-bottom: 3px solid var(--pink-color2);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}
.plr_checkbox > input:checked ~ label:after {
	 opacity:1;
	 visibility:visible;
}
/* .plr_checkbox > input:checked ~ label:before {
	background: var(--green-color);
	border: solid 1px var(--green-color);
} */
.plr_checkbox > input:checked {
	color: var(--green-color);
}
/* checkbox end */
.plr_login_btn {
    margin: 34px 0 0;
}
.plr_login_btn > a, .plr_login_btn > a:focus {
    width: 100%;
    height: 60px;
}
.plr_login_btn>p {
    margin: 133px 0 0;
    color: var(--dark-color);
}
.plr_login_btn>p>a {
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-weight: 600;
}
.plr_login_btn>p>a:hover {
    color: var(--text-color);
}
/* login css end*/






/* success msg */
.plr_notification {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
}
.plr_success_msg {
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 6px;
    background: #ffffff;
    padding: 20px 30px;
    z-index: 99999;
    border: solid 1px #e8f4fc;
    box-shadow: 0px 0px 45px 15px rgb(16 40 132 / 10%);
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_success_msg.plr_toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_close_icon {
    position: absolute;
    top: 0px;
    right: 20px;
}
.plr_close_icon span {
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
}
.plr_success_flex {
    display: flex;
	align-items: center;
}
.plr_happy_img {
    width: 110px;
}
.plr_yeah {
    width: 210px;
}
.plr_yeah h5 {
    color: #6ca329;
    font-weight: 600;
    font-size: 18px;
}
.plr_yeah p {
    font-weight: 500;
    font-size: 14px;
    margin-top: 5px;
}
.plr_error_msg {
    position: fixed;
    right: 20px;
    top: 20px;
    border-radius: 6px;
    background: #ffffff;
    padding: 20px 30px;
    z-index: 99999;
    border: solid 1px #e8f4fc;
    box-shadow: 0px 0px 45px 15px rgb(16 40 132 / 10%);
    opacity: 1 !important;
    visibility: visible !important;
    -webkit-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -moz-transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_error_msg.plr_toster_open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
}
.plr_error_msg .plr_yeah h5 {
    color: #f4476c;
    font-weight: 600;
    font-size: 18px;
}
.plr_hide {
	display: none;
}
/* success msg */

/* error msg */
.plr_response {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    padding: 10px 25px;
    border-radius: 10px;
	display: none;
    font-weight: 500;
	background: #3e3c55;
	color: var(--white-color);
    animation: zoom 0.1s linear;
}
.plr_response.mt_error {
    background: #ff3a3a;
    color: var(--white-color);
	display: block;
}
.plr_response.mt_success {
    background: #47aa4b;
    color: var(--white-color);
	display: block;
}
/* error msg */

/* alert wrapper */
span.error {
    position: absolute;
    bottom: -6px;
    font-weight: 600;
    left: 20px;
    color: #ff3a3a;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1;
}
/* alert wrapper */




/* bottom to top css */
.plr_top_icon #button {
    display: flex !important;
    background: -moz-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -ms-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
	animation: 3s installation infinite alternate;
}
@keyframes installation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}
.plr_top_icon a svg {
    fill: var(--white-color);
    font-size: 18px;
    transform: rotate(270deg);
}
.plr_top_icon #button:hover {
  cursor: pointer;
  box-shadow: 0 0 0 25px #566c8e inset;
}
.plr_top_icon #button:active {
  background-color: #555;
}
.plr_top_icon #button.show {
  opacity: 1;
  visibility: visible;
}
/* bottom to top */

/***** loader ******/
.loader {
	position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white-color);
}
.loader img {
	width: 100px;
}
.plr_loader_wrap .plr_loader {
    animation: rotationLoader 1.2s linear infinite;
    background: 0 0;
    box-shadow: 0 26px 0 6px #7546ea,.90971px 26.05079px 0 5.93333px #7546ea,1.82297px 26.06967px 0 5.86667px #7546ea,2.73865px 26.05647px 0 5.8px #7546ea,3.65561px 26.01104px 0 5.73333px #7546ea,4.57274px 25.93327px 0 5.66667px #7546ea,5.48887px 25.8231px 0 5.6px #7546ea,6.40287px 25.68049px 0 5.53333px #7546ea,7.31358px 25.50548px 0 5.46667px #7546ea,8.21985px 25.2981px 0 5.4px #7546ea,9.12054px 25.05847px 0 5.33333px #7546ea,10.01448px 24.78672px 0 5.26667px #7546ea,10.90054px 24.48302px 0 5.2px #7546ea,11.77757px 24.1476px 0 5.13333px #7546ea,12.64443px 23.78072px 0 5.06667px #7546ea,13.5px 23.38269px 0 5px #7546ea,14.34315px 22.95384px 0 4.93333px #7546ea,15.17277px 22.49455px 0 4.86667px #7546ea,15.98776px 22.00526px 0 4.8px #7546ea,16.78704px 21.48643px 0 4.73333px #7546ea,17.56953px 20.93855px 0 4.66667px #7546ea,18.33418px 20.36217px 0 4.6px #7546ea,19.07995px 19.75787px 0 4.53333px #7546ea,19.80582px 19.12626px 0 4.46667px #7546ea,20.5108px 18.468px 0 4.4px #7546ea,21.1939px 17.78379px 0 4.33333px #7546ea,21.85416px 17.07434px 0 4.26667px #7546ea,22.49067px 16.34043px 0 4.2px #7546ea,23.10251px 15.58284px 0 4.13333px #7546ea,23.68881px 14.80241px 0 4.06667px #7546ea,24.24871px 14px 0 4px #7546ea,24.7814px 13.1765px 0 3.93333px #7546ea,25.28607px 12.33284px 0 3.86667px #7546ea,25.76198px 11.46997px 0 3.8px #7546ea,26.2084px 10.58888px 0 3.73333px #7546ea,26.62462px 9.69057px 0 3.66667px #7546ea,27.01001px 8.77608px 0 3.6px #7546ea,27.36392px 7.84648px 0 3.53333px #7546ea,27.68577px 6.90284px 0 3.46667px #7546ea,27.97502px 5.94627px 0 3.4px #7546ea,28.23116px 4.97791px 0 3.33333px #7546ea,28.4537px 3.99891px 0 3.26667px #7546ea,28.64223px 3.01042px 0 3.2px #7546ea,28.79635px 2.01364px 0 3.13333px #7546ea,28.91571px 1.00976px 0 3.06667px #7546ea,29px 0 0 3px #7546ea,29.04896px -1.01441px 0 2.93333px #7546ea,29.06237px -2.03224px 0 2.86667px #7546ea,29.04004px -3.05223px 0 2.8px #7546ea,28.98185px -4.07313px 0 2.73333px #7546ea,28.88769px -5.09368px 0 2.66667px #7546ea,28.75754px -6.1126px 0 2.6px #7546ea,28.59138px -7.12863px 0 2.53333px #7546ea,28.38926px -8.14049px 0 2.46667px #7546ea,28.15127px -9.1469px 0 2.4px #7546ea,27.87755px -10.1466px 0 2.33333px #7546ea,27.56827px -11.1383px 0 2.26667px #7546ea,27.22365px -12.12075px 0 2.2px #7546ea,26.84398px -13.09268px 0 2.13333px #7546ea,26.42956px -14.05285px 0 2.06667px #7546ea,25.98076px -15px 0 2px #7546ea,25.49798px -15.93291px 0 1.93333px #7546ea,24.98167px -16.85035px 0 1.86667px #7546ea,24.43231px -17.75111px 0 1.8px #7546ea,23.85046px -18.63402px 0 1.73333px #7546ea,23.23668px -19.49789px 0 1.66667px #7546ea,22.5916px -20.34157px 0 1.6px #7546ea,21.91589px -21.16393px 0 1.53333px #7546ea,21.21024px -21.96384px 0 1.46667px #7546ea,20.4754px -22.74023px 0 1.4px #7546ea,19.71215px -23.49203px 0 1.33333px #7546ea,18.92133px -24.2182px 0 1.26667px #7546ea,18.10379px -24.91772px 0 1.2px #7546ea,17.26042px -25.58963px 0 1.13333px #7546ea,16.39217px -26.23295px 0 1.06667px #7546ea,15.5px -26.84679px 0 1px #7546ea,14.58492px -27.43024px 0 .93333px #7546ea,13.64796px -27.98245px 0 .86667px #7546ea,12.69018px -28.50262px 0 .8px #7546ea,11.7127px -28.98995px 0 .73333px #7546ea,10.71663px -29.4437px 0 .66667px #7546ea,9.70313px -29.86317px 0 .6px #7546ea,8.67339px -30.2477px 0 .53333px #7546ea,7.6286px -30.59666px 0 .46667px #7546ea,6.57001px -30.90946px 0 .4px #7546ea,5.49886px -31.18558px 0 .33333px #7546ea,4.41643px -31.42451px 0 .26667px #7546ea,3.32401px -31.6258px 0 .2px #7546ea,2.22291px -31.78904px 0 .13333px #7546ea,1.11446px -31.91388px 0 .06667px #7546ea,0 -32px 0 0 #7546ea,-1.11911px -32.04713px 0 -.06667px #7546ea,-2.24151px -32.05506px 0 -.13333px #7546ea,-3.36582px -32.02361px 0 -.2px #7546ea,-4.49065px -31.95265px 0 -.26667px #7546ea,-5.61462px -31.84212px 0 -.33333px #7546ea,-6.73634px -31.69198px 0 -.4px #7546ea,-7.8544px -31.50227px 0 -.46667px #7546ea,-8.9674px -31.27305px 0 -.53333px #7546ea,-10.07395px -31.00444px 0 -.6px #7546ea,-11.17266px -30.69663px 0 -.66667px #7546ea,-12.26212px -30.34982px 0 -.73333px #7546ea,-13.34096px -29.96429px 0 -.8px #7546ea,-14.4078px -29.54036px 0 -.86667px #7546ea,-15.46126px -29.07841px 0 -.93333px #7546ea,-16.5px -28.57884px 0 -1px #7546ea,-17.52266px -28.04212px 0 -1.06667px #7546ea,-18.52792px -27.46878px 0 -1.13333px #7546ea,-19.51447px -26.85936px 0 -1.2px #7546ea,-20.48101px -26.21449px 0 -1.26667px #7546ea,-21.42625px -25.53481px 0 -1.33333px #7546ea,-22.34896px -24.82104px 0 -1.4px #7546ea,-23.2479px -24.07391px 0 -1.46667px #7546ea,-24.12186px -23.29421px 0 -1.53333px #7546ea,-24.96967px -22.48279px 0 -1.6px #7546ea,-25.79016px -21.64052px 0 -1.66667px #7546ea,-26.58223px -20.76831px 0 -1.73333px #7546ea,-27.34477px -19.86714px 0 -1.8px #7546ea,-28.07674px -18.938px 0 -1.86667px #7546ea,-28.7771px -17.98193px 0 -1.93333px #7546ea,-29.44486px -17px 0 -2px #7546ea,-30.07908px -15.99333px 0 -2.06667px #7546ea,-30.67884px -14.96307px 0 -2.13333px #7546ea,-31.24325px -13.91039px 0 -2.2px #7546ea,-31.7715px -12.83652px 0 -2.26667px #7546ea,-32.26278px -11.74269px 0 -2.33333px #7546ea,-32.71634px -10.63018px 0 -2.4px #7546ea,-33.13149px -9.5003px 0 -2.46667px #7546ea,-33.50755px -8.35437px 0 -2.53333px #7546ea,-33.84391px -7.19374px 0 -2.6px #7546ea,-34.14px -6.0198px 0 -2.66667px #7546ea,-34.39531px -4.83395px 0 -2.73333px #7546ea,-34.60936px -3.63759px 0 -2.8px #7546ea,-34.78173px -2.43218px 0 -2.86667px #7546ea,-34.91205px -1.21916px 0 -2.93333px #7546ea,-35px 0 0 -3px #7546ea,-35.04531px 1.22381px 0 -3.06667px #7546ea,-35.04775px 2.45078px 0 -3.13333px #7546ea,-35.00717px 3.6794px 0 -3.2px #7546ea,-34.92345px 4.90817px 0 -3.26667px #7546ea,-34.79654px 6.13557px 0 -3.33333px #7546ea,-34.62643px 7.36007px 0 -3.4px #7546ea,-34.41316px 8.58016px 0 -3.46667px #7546ea,-34.15683px 9.79431px 0 -3.53333px #7546ea,-33.85761px 11.001px 0 -3.6px #7546ea,-33.5157px 12.19872px 0 -3.66667px #7546ea,-33.13137px 13.38594px 0 -3.73333px #7546ea,-32.70493px 14.56117px 0 -3.8px #7546ea,-32.23675px 15.72291px 0 -3.86667px #7546ea,-31.72725px 16.86968px 0 -3.93333px #7546ea,-31.17691px 18px 0 -4px #7546ea,-30.58627px 19.11242px 0 -4.06667px #7546ea,-29.95589px 20.2055px 0 -4.13333px #7546ea,-29.28642px 21.27783px 0 -4.2px #7546ea,-28.57852px 22.32799px 0 -4.26667px #7546ea,-27.83295px 23.35462px 0 -4.33333px #7546ea,-27.05047px 24.35635px 0 -4.4px #7546ea,-26.23192px 25.33188px 0 -4.46667px #7546ea,-25.37819px 26.27988px 0 -4.53333px #7546ea,-24.49018px 27.1991px 0 -4.6px #7546ea,-23.56888px 28.0883px 0 -4.66667px #7546ea,-22.6153px 28.94626px 0 -4.73333px #7546ea,-21.6305px 29.77183px 0 -4.8px #7546ea,-20.61558px 30.56385px 0 -4.86667px #7546ea,-19.57168px 31.32124px 0 -4.93333px #7546ea,-18.5px 32.04294px 0 -5px #7546ea,-17.40175px 32.72792px 0 -5.06667px #7546ea,-16.27818px 33.37522px 0 -5.13333px #7546ea,-15.1306px 33.98389px 0 -5.2px #7546ea,-13.96034px 34.55305px 0 -5.26667px #7546ea,-12.76875px 35.08186px 0 -5.33333px #7546ea,-11.55724px 35.56951px 0 -5.4px #7546ea,-10.32721px 36.01527px 0 -5.46667px #7546ea,-9.08014px 36.41843px 0 -5.53333px #7546ea,-7.81748px 36.77835px 0 -5.6px #7546ea,-6.54075px 37.09443px 0 -5.66667px #7546ea,-5.25147px 37.36612px 0 -5.73333px #7546ea,-3.95118px 37.59293px 0 -5.8px #7546ea,-2.64145px 37.77443px 0 -5.86667px #7546ea,-1.32385px 37.91023px 0 -5.93333px #7546ea;
    display: inline-block;
    height: 8px;
    overflow: hidden;
    position: relative;
    width: 8px;
    border-radius: 100%;
}
/*span.dummyName {*/
/*    position: absolute;*/
/*    top: 136px;*/
/*    left: 128px;*/
/*    word-wrap: break-word;*/
/*    font-size: 12px;*/
/*    font-weight: 700;*/
/*    width: 87px;*/
/*}*/
@-webkit-keyframes rotationLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes rotationLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

span.dummyName {
    position: absolute;
    top: 50%;
    left: 134px;
    transform: translateY(-50%);
    word-wrap: break-word;
    font-size: 12px;
    font-weight: 600;
    width: 80px;
}
/***** loader ******/
/* responsive css */
@media(max-width: 1600px){
    span.dummyName {
        left: 120px;
    }
}

@media(max-width: 1499px){
    .plr_header_box {
        padding: 20px;
    }
    .plr_reviews_section {
        padding-right: 0;
    }
    .plr_banner_section {
        background-size: 100% !important;
    }
}

@media(max-width:1350px){
    span.dummyName {
        left: 112px;
    }
}
@media(max-width: 1199px){
    
    .plr_banner_section:after {
        display: none;
    }
    .plr_box_search_headbox {
        display: block;
        margin-bottom: 30px;
    }
    .plr_main_heading h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
   
    .plr_banner_heading h1 {
        max-width: 450px;
        font-size: 24px;
    }
    .plr_product_box_list {
        padding-left: 0;
    }
    .plr_blog_main_wrapper {
        padding-right: 0;
    }
    .plr_blog_detail {
        padding: 40px 0;
    }
    .plr_template_box .tab-content {
        padding: 30px;
    }
    .plr_box_previews {
        width: 100%;
    }
    .plr_price_box {
        padding: 30px;
    }
}


@media(max-width: 991px){
    .plr_footer_btm ul li a {
        margin-left: 10px;
    }
    .plr_blog_content {
        padding: 20px 0 10px;
    }
    .plr_pro_single_detail {
        margin-top: 40px;
    }
    .plr_template_box .tab-content {
        padding: 20px;
    }
    .plr_profile_form {
        margin-top: 30px;
    }
    .plr_edit_profile {
        margin: auto;
    }
    .plr_contact_box {
        padding: 50px 30px;
    }
    .plr_contact_detail {
        padding: 20px 20px;
    }
    .plr_profile_form.plr_contact_form {
        padding: 50px 30px;
    }
    .plr_banner_section {
        background: -webkit-linear-gradient(-79deg, var(--pink-color1) 34%, var(--pink-color2) 100%) !important;
        padding: 100px 0;
    }
    .plr_banner_heading {
        text-align: center;
    }
    .plr_banner_heading h1 {
        margin: 20px auto;
    }
}


@media(max-width: 767px){
    .plr_footer_btm {
        display: block;
        text-align: center;
    }
    .plr_newsletter_box {
        margin-top: 50px;
    }
    .plr_product_gallery {
        padding: 60px 0;
    }
    .plr_blog_section {
        padding: 60px 0;
    }
    .plr_footer_section {
        padding: 60px 0 0;
    }
    .plr_policy_wrapper {
        padding: 60px 0;
    }
    .plr_profile_wrapper {
        padding: 60px 0;
    }
    .plr_customer_box {
        display: block;
    }
    .plr_cus_detail {
        margin-top: 15px;
    }
    .plr_contact_wrapper .col-xl-4.col-lg-4.col-md-5 {
        padding-right: 15px;
    }
    .plr_contact_wrapper .col-xl-8.col-lg-8.col-md-7 {
        padding-left: 15px;
    }
    
    .plr_contact_box {
        border-radius: 10px;
        min-height: auto;
        padding: 50px 20px;
    }
    .plr_profile_form.plr_contact_form {
        padding: 50px 20px;
    }
    span.dummyName {
        left: 50%;
    }
}


@media(max-width: 575px){
    .plr_banner_heading h1 {
        font-size: 30px;
    }
    .plr_header_box {
        padding: 15px;
        display: block;
        text-align: center;
    }
    .plr_header_menu {
        justify-content: center;
        margin-top: 20px;
    }
    .plr_free_trial {
        margin-right: 15px;
    }
    .plr_nav_main {
        justify-content: center;
        padding-top: 20px;
    }
    .plr_cart_box {
        margin-right: 15px;
    }
    .plr_tem_additional {
        display: block;
    }
    .plr_box_previews {
        width: 100%;
    }
    .plr_tem_tab_buttom .nav-link {
        padding: 10px;
        font-size: 14px;
    }
}

@media(max-width: 420px){
    
    .plr_tem_tab_buttom .nav-link {
        padding: 8px;
        font-size: 12px;
    }
}
/* responsive css */
