/* -------------------
	Common Style
----------------------*/

/* Fonts Include */

@font-face {
    font-family: 'robotobold';
    src: url('../fonts/roboto-bold-webfont.woff2') format('woff2'),
         url('../fonts/roboto-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotolight';
    src: url('../fonts/roboto-light-webfont.woff2') format('woff2'),
         url('../fonts/roboto-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'robotomedium';
    src: url('../fonts/roboto-medium-webfont.woff2') format('woff2'),
         url('../fonts/roboto-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'robotoregular';
    src: url('../fonts/roboto-regular-webfont.woff2') format('woff2'),
         url('../fonts/roboto-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

body {
    font-family: 'robotoregular';
    color: #000;
    font-size: 16px;
	box-sizing:border-box;
}
body.overflow-hidden {
    overflow: hidden;
}
h1, h2, h3, h4, h5, h6{
    font-family: 'robotoregular';
}
h2, h3{
    padding-top:0;
}
img{
	max-width:100%;
}
ul{
	list-style:none;
	padding-left:0;
	margin:0;
}
em{
    font-style:normal;
}

.container{
	max-width:1200px;
	width:100%;
}
p{
    color:#666;
    font-size:17px;
    font-family: 'robotolight';
}
th:first-child, td:first-child {
    padding-left: 0.75rem;
}

a{
    transition:all ease-in-out 0.25s;
    text-decoration: none;
}
a:focus{
    outline:none;
}
.btn-primary {
    height: 30px;
    border: 1px solid transparent;
    padding: 0;
    line-height: 26px;
    position: relative;
    margin-left: 0;
    font-weight: 600;
    color: #fff;
    /* min-width: 200px; */
    padding: 0 15px;
    background: linear-gradient(24deg, rgba(160,32,240,1) 18%, rgba(255,10,246,1) 79%);
    font-size: 22px;
    height: auto;
    padding: 22px 30px;
    border-radius: 50px;
}
.btn-primary:hover, .btn-primary:focus{
    background-color:#2d2c32 !important;
    outline:none !important;
    box-shadow:none !important;
    border-color:transparent !important;
}
.bg-style{
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
}
.col-full{
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}
/* Header Section style */

.site-main-header{
    padding:40px 0;
}
.site-main-header .row{
    align-items: center;
}
.main-nav ul li{
    display:inline-block;
    padding:0 25px;
}
.main-nav ul li:last-child{
    padding-right:0;
}
.main-nav ul li:first-child{
    padding-left:0;
}
.main-nav ul li a{
    font-size:16px;
    color:#000;
}
.main-nav ul li a:hover, .main-nav ul li.current-menu-item > a{
    text-decoration: none;
    color:#bd4bfe;
}
@media(min-width:992px){
    .main-nav ul li ul.sub-menu {
        position: absolute;
        top: 40px;
        background-color: #fff;
        box-shadow: 0px 0px 14px 2px rgba(0,0,0,0.2);
        min-width: 200px;
        /* transform:translateY(-100%); */
        transition:all ease-in-out 0.5s;
        /* opacity: 0;
        visibility: hidden; */
        display:none;
        margin-left: 0;
        z-index:1;
    }
    .main-nav .menu-header-menu-container ul li:hover ul{
        /* transform:translateY(0%);
        opacity: 1;
        visibility: visible; */
        display:block;
    }
}
.main-nav .menu-header-menu-container > ul > li > a{
    display:block;
    padding:10px 0;
    position: relative;
}
.main-nav .menu-header-menu-container > ul > li{
    position: relative;
}

.main-nav ul li ul.sub-menu li {
    display: block;
    text-align: left;
    padding: 0;
    padding: 5px 10px;
    border-bottom: 1px solid #ddd;
}
.main-nav .menu-header-menu-container > ul > li{
    position: relative;
}
.main-nav .menu-header-menu-container > ul > li.menu-item-has-children span .fa{
    display:none;
}
.main-nav .menu-header-menu-container > ul > li.menu-item-has-children span:after {
    content: url('../images/drop-icon.png');
    position: absolute;
    right: 7px;
    top: 11px;
}

.hamburger {
    position: relative;
    height: 50px;
    display: none;
    position: absolute;
    right: 15px;
    top: 20%;
}

.hamburger:hover, .hamburger:focus{
    background:transparent !important;
    border:0;
    outline:none !important;
}
.hamburger span {
    width: 40px;
    height: 4px;
    position: absolute;
    background: #0035e0;
    transform: translate(-50%, -50%);
    left: 50%;
    border-radius: 3px;
}
.hamburger span:nth-child(1) {
    top: 20%;
    transition: top 0.125s 0.25s, transform 0.125s;
}
.hamburger span:nth-child(2) {
    top: 40%;
    transition: top 0.125s 0.25s, transform 0.125s;
}
.hamburger span:nth-child(3) {
    top: 60%;
    transition: top 0.125s 0.25s, transform 0.125s;
}
.hamburger.closed span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
}
.hamburger.closed span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
}
.hamburger.closed span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: top 0.125s, transform 0.125s 0.25s;
}
.search-box section#search-3, .search-no-results #primary .search-form {
    background-color: #e7edff;
    padding: 12px;
    max-width: 270px;
    width: 270px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    transition: all ease-in-out 0.3s;
    opacity: 0;
    visibility: hidden;
    border-radius: 53px;
    box-shadow: 1px 0px 10px 2px rgba(231, 237, 255, 0.8);
    z-index: 1;
}
.search-no-results #primary .search-form{
    position: static;
    transform:none;
    opacity: 1;
    visibility: visible;
    width:100%;
    max-width:100%;
    position: relative;
    max-width: 500px;
    margin: auto;
    margin-top:40px;
}
.search-no-results #primary .search-form button[type="submit"]{
    right: 13px;
    top: 13px;
}
.search-box section#search-3.open {
    transform: translateY(50px);
    opacity: 1;
    visibility: visible;
    
}
.search-box {
    position: relative;
}
.main-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.main-nav .search-toggle {
    height: 30px;
    width: 30px;
    border-radius: 50px;
    background-color: #e7edff;
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0035e0;
    cursor:pointer;
}
.search-box section#search-3:after {
    content: "";
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #e7edff;
    position: absolute;
    top: -8px;
    right: 28px;
}
.search-box section#search-3 input[type="search"], .search-no-results #primary .search-form input[type="search"]{
    height: 40px;
    border-radius: 40px;
    font-size: 14px;
    padding: 0 20px;
    border:0;
    padding-right:50px;
}
.search-box section#search-3 label, .search-no-results #primary .search-form label{
    display:none;
}
.search-box section#search-3 button.search-submit, .search-no-results #primary button.search-submit{
    width: 40px;
    text-align: center;
    padding: 0;
    font-size: 10px !important;
    border-radius: 50px;
    height: 39px;
    top: 0;
    right: 0;
    background-color:#0035e0;
}
.search-box section#search-3 button.search-submit:focus, .search-no-results #primary button.search-submit:focus{
    outline:none;
    box-shadow:none;
}
.search-form .search-submit .icon , .search-no-results .search-submit .icon{
    height: 18px;
    top: 0;
    width: 18px;
    fill:#fff;
}
.search-results header.page-header {
    border: 2px solid #e7edff;
    border-left: 0;
    border-right: 0;
    padding: 20px;
    margin-bottom: 60px;
}
.search-results header.page-header h1 {
    margin: 0;
    font-size: 22px;
    color: #0035e0;
    color: #4e4e4e;
    letter-spacing: 2px;
    font-weight: 400;
}
.search-results header.page-header h1 span {
    color: #0035e0;
    font-weight: 600;
}
 .wrap {
    padding: 40px 15px;
    max-width: 1200px;
    width: 100%;
}
 #secondary{
    display:none;
}
 #primary{
    float:none !important;
    width:100% !important;
    max-width:100%;
}
.search-no-results #primary{
    text-align: center;
}
.search-results #primary article{
    background-color:#e7edff;
    padding:20px;
    margin-bottom:50px;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.05);
    border-radius:10px;
}
.search-results #primary article h2 a{
    color:#0035e0;
    /* border-bottom:2px solid #ddd; */
    box-shadow: none;
}
.search-no-results .wrap {
    padding: 100px 15px;
    /* background-color: #f7f7f7; */
    border: 1px solid #ddd;
    border-left: 0;
    border-right: 0;
}
.search-no-results h1.page-title{
    font-size:30px;
    color:#0035e0;
    text-align: center;
    margin-bottom:0;
}

/* Home Banner Style */

.home-banner-wrap{
    padding:60px 0;
}
.home-banner-wrap .row{
    align-items: flex-end;
}
.banner-head {
    margin-bottom: 40px;
}
.banner-head h2{
    color:#bd4bfe;
    font-size:77px;
    font-family: 'robotomedium';
    margin-bottom: 20px;
}
.banner-head h2 span{
    color:#0035e0;
    font-family: 'robotolight';
}
.banner-head h3{
    font-size:27px;
    font-family: 'robotolight';
    padding-top:0;
}
.banner-link-list {
    padding-right: 100px;
}
.banner-link-list ul li {
    position: relative;
    transition: all ease-in-out 0.3s;
    padding-top:20px;
    padding-bottom:15px;
    padding:20px 15px 15px;
    border-bottom:1px solid #ddd;
}
.banner-link-list ul li .banner-icon{
    position: absolute;
    left:15px;
    top:0;
}
.banner-link-list ul li a{
    text-decoration: none;
    /* position: relative; */
    display: block;
    padding-left: 0;
}
.banner-link-list ul li a:hover h3{
    color:#0035e0;
}
.banner-link-list ul li:hover{
    background-color:#e7edff;
}
.banner-link-text h3{
    font-size:22px;
    font-family: 'robotoregular';
    color:#000;
    margin-bottom:5px;
}
.banner-link-text p{
    font-size:13px;
    color:#000;
    font-family: 'robotolight';
    line-height: 20px;
}
.banner-link-list ul li a:after {
    content: url(../images/link-icon.png);
    position: absolute;
    top: 40%;
    right: 13px;
}
.banner-thumb img {
    margin-left: -100px;
}
.banner-link-text {
    padding-right: 20px;
    margin-left: 80px;
}

/* Featured Style */

.featured-wrap{
    padding:40px 0;
}
.section-head h2{
    font-size:36px;
    color:#bd4bfe;
    font-family: 'robotomedium';
    text-align:center;
    position: relative;
    padding-bottom: 15px;
    margin-bottom:40px;
}
.section-head h2 span{
    color:#0035e0;
    font-family: 'robotolight';
    
}
.section-head h2:after{
    content:"";
    background: linear-gradient(42deg, rgba(189,75,254,1) 46%, rgba(0,53,224,1) 61%);
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    width:120px;
    height:4px;
    text-align: center;
    margin: auto;
}
.brand-list ul {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #e0e6fb;
    border-bottom: 1px solid #e0e6fb;
}
.brand-list ul li{
    display:inline-block;
    padding:0 15px;
}

.brand-list ul:hover li img{
    opacity: 0.7;
}
.brand-list ul li img:hover {
    opacity: 1;
}

/* Article Style */
.common-padding{
    padding:40px 0;
}
.article-content{
    border:1px solid #ddd;
}
.article-content > a {
    display: block;
    color: #0035e0;
    font-size: 22px;
    padding: 20px;
    position: relative;
    padding-right: 55px;
    text-decoration: none;
}
.even-color .row [class^="col-"]:nth-child(2) .article-content > a, .even-color .row [class^="col-"]:nth-child(3n+2) .article-content > a {
    color:#bd4bfe;
}
.article-content > a:hover{
    background-color: #f3e4fb;
}
.article-wrap .row [class^="col-"]:nth-child(even) .article-content > a:hover{
    background-color:#e7edff;
}
.article-content > a:after{
    content: url(../images/link-icon.png);
    position: absolute;
    top: 30%;
    right: 30px;
}
.article-thumb img {
    MARGIN: AUTO;
    height: 140px;
}
.article-text{
    padding:20px;
}
.article-text a {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    position: relative;
    padding-left:20px;
    color:#000;
}
.article-text a:before{
    content:"\f101";
    font-family: FontAwesome;
    position: absolute;
    left:0;
    top:0;
    color:#0035e0;
}
.article-text a:hover{
    color:#0035e0;
    text-decoration: none;
}
.article-text p{
    font-size:13px;
    font-family: 'robotolight';
    color:#000;
}
.article-thumb {
    border-bottom: 1px solid #ddd;
    border-top: 1px solid #ddd;
    height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Industry News Style */

.news-content a{
    font-size:22px;
    color:#0035e0;
    text-decoration: none;
    display: block;
}
.news-content a:hover{
    color:#bd4bfe;
}
.news-content h3 {
    padding: 0 0 18px;
    margin: 0;
}
.even-color .row [class^="col-"]:nth-child(2) .news-content a, .even-color .row [class^="col-"]:nth-child(3n+2) .news-content a{
    color:#bd4bfe;
}
.even-color .row [class^="col-"]:nth-child(even) .news-content a:hover{
    color:#0035e0;
}
.legality-wrap.even-color .row [class^="col-"]:nth-child(even) .news-content a:hover{
    color:#bd4bfe;
}
.news-thumb{
    height:190px;
    overflow: hidden;
}
 .news-content {
    padding: 15px;
    background-color: #e7edff;
    border-radius: 8px;
}
 .news-thumb, .review-thumb {
    margin-bottom: 10px;
    display: block;
    border: 1px solid #ddd;
    padding: 10px;
    height: auto;
}
.news-thumb a {
    display: block;
    overflow: hidden;
}
.news-slider .news-content h3{
    padding-top:0;
}
.news-thumb img{
    object-fit: cover;
    object-position: center;
    width:100%;
    height:190px;
    transition: all ease-in-out 0.3s;
}
.news-outer:hover .news-thumb img{
    transform:scale(1.2);
}
.news-slider .owl-nav button span, .tips-slider .owl-nav button span {
    display: none;
}
.news-slider .owl-nav button:after, .tips-slider .owl-nav button:after {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 26px;
    background-color: #e7edff;
    height: 70px;
    width: 40px;
    display: block;
    border-radius: 7px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a35e0;
    position: absolute;
    top: 20%;
    left: 0;
}
.news-slider .owl-nav button.disabled, .tips-slider .owl-nav button.disabled{
    display:none;
}
.news-slider .owl-nav button.owl-next:after, .tips-slider .owl-nav button.owl-next:after{
    right:0;
    left:auto;
    content:"\f105";
}
a.more-link {
    font-size: 14px;
    color: #0035e0;
}
a.more-link:hover{
    color:#bd4bfe;
    text-decoration: none;
}

/* Product Review Style */

.review-thumb{
    height:220px;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom:10px;
    overflow: hidden;
}
.review-content h2 {
    padding-top: 0;
}
.review-outer, .news-outer, .article-content{
    margin-bottom:30px;
}
.product-review-wrap .row [class^="col-"]:nth-last-child(-n+3) .review-outer, .news-wrap .row [class^="col-"]:nth-last-child(-n+3), .article-wrap .row [class^="col-"]:nth-last-child(-n+3) .article-content{
    margin-bottom:0;
}
.news-content p{
    font-size:13px;
    color:#000;
}

/* Leading Style */

.leading-wrap{
    background-image:url('../images/leading-bg.jpg');
    padding:50px 0;
    position: relative;
}
.leading-wrap .container{
    position: relative;
    z-index: 1;
}
.leading-wrap:after{
    content:"";
    height:100%;
    width:100%;
    background: linear-gradient(42deg, rgba(189,75,254,1) 33%, rgba(0,53,224,1) 67%);
    position: absolute;
    left:0;
    top:0;
    opacity: 0.6;
}
.leading-head h2{
    color:#fff;
    font-size:40px;
    text-align: center;
    margin-bottom: 50px;
}
.leading-bio {
    max-width: 270px;
    text-align: center;
    margin:auto;
}
.lead-thumb{
    height:109px;
    width:113px;
    border-radius:20px;
    display:flex;
    align-items: center;
    justify-content: center;
    background-color:rgba(255,255,255,0.1);
    text-align: center;
    margin:auto;
}
.leading-content h3{
    font-size:22px;
    font-family: 'robotolight';
    color:#fff;
    margin:20px 0;
}
.leading-content p{
    color:#fff;
    font-size:13px;
}
.leading-content .btn{
    background: #fff;
    color: #000;
    padding: 10px 40px;
    font-size:13px;
    font-family: 'robotolight';
}
.leading-content .btn:hover{
    color:#fff;
}

/* Footer */

.top-footer{
    padding:65px 0 80px;
}
.footer-logo{
    margin-bottom:30px;
}
.footer-menu-list ul li a{
    font-size:16px;
    color:#666666;
    text-decoration: none;
}
.footer-menu-list ul li a:hover{
    color:#bd4bfe;
    box-shadow:none;
    outline:none;
}
.footer-menu-list ul li{
    padding-bottom:20px;
    position: relative;
    padding-left:40px;
    list-style: none;
    padding-top:0;
    border:0;
}
.footer-menu-list ul li:before{
    content:url('../images/logo-list.png');
    position: absolute;
    left:0;
    top:0;
}
.footer-head h3, .footer-grid-menu h2.widget-title {
    font-size: 23px;
    color: #bd4bfe;
    font-family: 'robotomedium';
    margin-bottom: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
    font-weight: 400;
}

.footer-head h3 a {
    color: #bd4bfe;
    text-decoration: none;
}
.footer-head h3 a:hover{
	color:#1a35e0;
}
.footer-menu-list ul{
    margin-left:0;
}
.copyright-text .textwidget p{
    font-size: 16px;
    color:#666;
    text-align: center;
    margin:0;
    
}
.bottom-footer{
    padding:20px 0;
    border-top:1px solid #666;
    text-align: center;
    display: flex;
    justify-content: space-between;
}
.sitemap a {
    color: #1a35e0;
    display: block;
    font-size:16px;
}
.copyright-text section{
    padding:0;
}

/* Breadcrumb wrap */

.breadcrumb-wrap{
    padding:20px 0;
}
.breadcrumb-wrap ul li{
    display:inline-block;
    color:#fff;
    position: relative;
    padding:0 15px;
    font-size:18px;
}
.breadcrumb-wrap ul li:first-child{
    padding-left:0;
}
.breadcrumb-wrap ul li:last-child{
    padding-right:0;
}
.breadcrumb-wrap ul li:after {
    content: ">";
    position: absolute;
    right: -5px;
    top: -1px;
    font-size: 20px;
}
.breadcrumb-wrap ul li:last-child:after{
    display:none;
}
.breadcrumb-wrap ul li a{
    color:#fff;
}
.breadcrumb-wrap ul {
    background: linear-gradient(42deg, rgba(189,75,254,1) 33%, rgba(0,53,224,1) 67%);
    padding: 23px 25px;
    display: inline-block;
}

/* Review Style */

.review-wrap{
    padding:40px 0;
}
.review-wrap .section-head h2{
    text-align: left;
    margin-bottom:10px;
    padding-bottom:0;
}
.review-wrap .section-head h2:after{
    display:none;
}
.section-title{
    margin-bottom:50px;
}
 .section-title h2{
    text-align: left;
    margin-bottom:10px;
    color:#bd4bfe;
    font-size:37px;
}
 .section-title h2:after{
    display:none;
}
.section-title p{
    font-size:17px;
    color:#666;
}
.review-wrap p{
    font-size:17px;
    color:#666666;
}
.review-content span.guide-published {
    font-size: 15px;
    color: #868686;
    font-weight: 600;
    font-style: italic;
    display: block;
    margin-bottom: 15px;
    background-color: #f7f7f7;
    padding: 6px 10px;
}
.review-wrap .row{
    margin-bottom:30px;
}
.review-wrap .row:last-child{
    margin-bottom:0px;
}
.review-wrap .row:nth-child(odd) .review-head{
    background-color:#0035e0;
}
.review-wrap.guide-cat .row:nth-child(odd) .review-head{
    background-color:#0035e0;
    background-color:transparent;
}
.review-head{
    padding:40px 60px;
    background-color:#bd4bfe;
}
.guide-cat .review-head {
    padding: 30px 20px;
    /* min-height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding:0;
    background-color:transparent;
    max-height: 300px;
}
.guide-cat .review-head img {
    object-fit: cover;
    object-position: 48% center;
    height: 270px;
    display: block;
    width: auto;
}
.review-head h2{
    color:#fff;
    font-size:37px;
    text-align: center;
    margin-bottom:0;
}
.guide-cat .review-content h2 {
    font-weight: 600;
    color: #0035e0;
}
.guide-cat .review-content a{
    text-decoration: none;
}
.guide-cat .review-content a h2:hover, .guide-cat .review-content a h2:focus{
    color:#bd4bfe;
}
.guide-cat .review-head h2{
    font-size:22px;
}
.review-head a:hover{
    box-shadow:none;
    text-decoration: none;
}
.main-review-content{
    margin-bottom:60px;
}

/* Online Website Style */

.online-web-wrap{
    padding:40px 0;
}
.online-web-head {
    text-align: center;
    margin-bottom: 70px;
}
.online-web-head h2{
    font-size:37px;
    color:#0035e0;
    font-family: 'robotomedium';
}
.online-web-head p{
    font-size:17px;
    color:#666;
}
.product-single {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
    position: relative;
    padding: 60px 0;
    border-top:1px solid #b5c4f6;
}
.product-list-title h2{
    font-size:34px;
    color:#bd4bfe;
    margin-bottom:50px;
}
.product-single > div {
    max-width: 25%;
    flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    padding: 0 15px;
}
.product-single .count{
    position: absolute;
    left:0;
    top:15px;
    height:40px;
    width:40px;
    text-align: center;
    color:#fff;
    line-height: 40px;
    background-color:#0035e0;
    border-radius:40px;
}
.product-single .product-thumb, .product-single .product-name {
    text-align: center;
}
.product-action{
    text-align: center;
}
.product-action a{
    display:block;
}
.product-single .product-name p {
    background-color: #bd4bfe;
    padding: 8px 10px;
    color: #fff;
    font-size: 15px;
    display: inline-block;
    margin-bottom: 9px;
}
.product-single .product-name h3{
    color:#bd4bfe;
    font-size:24px;
}
.feature-list ul li {
    position: relative;
    color: #666;
    font-size: 15px;
    padding-bottom: 9px;
    padding-left:30px;
}
.feature-list ul li:last-child{
    padding-bottom:0;
}
.feature-list ul li:before{
    position: absolute;
    content:url('../images/feature.png');
    left:0;
    top:0;
}
.product-action a{
    display:inline-block;
    font-size:15px;
    color:#0035e0;
}
.product-action a.btn{
    padding: 15px 35px;
    margin-bottom:10px;
    color:#fff;
}

/* Single Product Style */

.single-product-wrap{
    padding:40px 0;
}
.product-title h2{
    font-size:30px;
    color:#666;
    margin-bottom:40px;
}
.product-content-inner h1 {
    font-size: 26px;
    color: #bd4bfe;
    margin-bottom: 20px;
}
.single-rating h2 {
    font-size: 24px;
    color: #bd4bfe;
}
.single-rating ul {
    margin-top: 30px;
}
.single-rating ul li {
    padding: 15px 100px 15px 40px;
    background-color: #1a35e0;
    margin-bottom: 8px;
    border-top-right-radius: 30px;
    color: #fff;
    border-bottom-right-radius: 30px;
    position: relative;
}
.single-rating ul li span {
    position: absolute;
    right: 50px;
    top: 30%;
}
.product-des .row{
    align-items: center;
}
.single-highlights, .single-product-thumb {
    padding-bottom: 30px;
}
.single-highlights ul li:first-child{
    color:#bd4bfe;
    font-family: 'robotomedium';
}
.single-highlights ul li{
    font-size:20px;
    color:#666;
    font-family: 'robotolight';
}
.single-highlights ul {
    border: 1px solid #ddd;
}
.single-highlights ul li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.single-highlights ul li:last-child{
    border-bottom:0;
}
.product-des .row{
    margin-bottom:30px;
}
.single-test ul li {
    display: inline-block;
    padding: 0 30px;
    vertical-align: middle;
    font-size:17px;
    color:#666;
}
.single-test ul li:first-child{
    padding-left:0;
    padding-right:8px;
}
.single-test ul li:last-child{
    padding-right:0;
}
.single-test ul {
    margin-bottom: 20px;
}
.test-thumb {
    height: 50px;
    width: 50px;
    overflow: hidden;
}
.test-thumb img{
    object-fit: cover;
    object-position: center;
    height:100%;
}
.single-test ul li span{
    font-size:17px;
    color:#1a35e0;
    font-family: 'robotomedium';
    margin:0;
}
.single-test-content p{
    font-size:17px;
    color:#666;
    /* font-style:italic; */
}
.single-product-info ul li {
    display: inline-block;
    padding: 0 20px;
    font-size: 20px;
    color: #666;
    position: relative;
    padding-bottom: 6px;
    cursor:pointer;
}
.single-product-info ul li img{
    height: 32px;
}
.single-product-info  .tab-content ul li{
    padding: 0 5px;
}
.single-product-info ul li:first-child{
    /* padding-left:0; */
}

.single-product-info ul li.current{
    color:#bd4bfe;
}
.single-product-info ul.tabs {
    padding: 20px 15px 19px;
    box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.single-product-info ul li:after {
    content: "";
    background: linear-gradient(42deg, rgba(189,75,254,1) 46%, rgba(0,53,224,1) 61%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 2px;
    text-align: center;
    margin: auto;
    transition:all ease-in-out 0.3s;
    transform:scaleX(0);
    /* display:none; */
}
.single-product-info ul li.current:after{
    /* display:block; */
    transform:scaleX(1);
}
.single-product-info .tab-content p{
    font-size:17px;
    color:#666;
}
.single-product-info .tab-content {
    display: none;
    font-size: 17px;
    font-family: 'robotolight';
    color: #666;
    /* background-color: #f7f7f7; */
    border:1px solid #ddd;
    padding: 15px 25px;
    border-radius: 10px;
}
.single-product-info .tab-content.current{
    display:block;
}
 .fa-star {
    color: white;
    -webkit-text-stroke: 1px #ffcd2b;    
}
 .checked {
    color: #ffcd2b;
 }
 .fa-star {
    font-size: 20px;
}
.single-rating .progress-bar {
    display: block;
    background-color: #1a35e0;
    border-radius: 0 100px 100px 0;
    font-size: 14px;
    text-align: left;
}
.single-rating .progress {
    height: 55px;
    background-color: #eee;
    border-radius: 0 100px 100px 0;
    margin-bottom: 5px;
}
.single-rating .progress .progress-label, .single-rating .progress .progress-value {
    display: inline-block;
    line-height: 55px;
    font-size:14px;
    font-family: 'robotoregular';
}
.single-rating .progress .progress-label {
    float: left;
    padding-left: 30px;
}
.single-rating .progress .progress-value {
    float: right;
    padding-right: 30px;
}
.rating-stars {
    margin-bottom: 20px;
}

.single-review .single-product-head h2{
    text-align:center;
    text-decoration: underline;
}
.site-screenshot-list ul li {
    display: inline-block;
    width: 33%;
    vertical-align: top;
    padding: 0 15px;
    text-align:center;
}
.site-screenshot-list img{
    margin-bottom:20px;
    object-fit: cover;
    width: 80%;
}.site-screenshot-list{
    text-align: center;
}
.site-screenshot-list p, .video-inner p{
    text-decoration:underline;
    font-family:'robotomedium';
    text-align: center;
    color:#1a35e0;
	line-height:22px;
}
.product-content {
    text-align: center;
}
.product-title.site-name h2{
    font-size:31px;
    color:#bd4bfe; text-decoration: underline;
    text-align: center;
}
.single-product-head .section-title {
    margin-bottom: 30px;
}
.site-screenshot-list {
    margin-bottom: 30px;
}
.single-product-thumb img {
    width: 100%;
}
.single-product-wrap h3, .single-product-wrap h2{
    font-size: 24px;
    color: #bd4bfe;
}
.deals-list-single ul li {
    display: block;
    /* border: 1px solid #ddd; */
    padding: 10px;
    border-bottom: 0;
    padding-left:20px;
}
.deals-list-single ul li:before{
    content:"\f101";
    font-family:FontAwesome;
    position:absolute;
    left:0;
    top:11px;
}
.deals-list-single {
    margin-bottom: 40px;
}
.deals-list-single ul {
    padding-top: 0;
}
.deals-list-single ul li:last-child{
    /* border-bottom:1px solid #ddd; */
}
.deals-list-single ul li a{
    color:#bd4bfe;
    font-size:16px;
}
.review-comments {
    padding: 40px 0;
}
.sfsi_shortcode_container {
    float: none;
}

/* Guide Page Style */

.guide-wrap{
    padding:40px 0;
}
.guide-outer{
    margin-bottom:30px;
}
.guide-outer > a{
    color:#bd4bfe;
    font-family: 'robotomedium';
    transition: all ease-in-out 0.3s;
    display:block;
}

.guide-outer h3{
    color:#bd4bfe;
    font-size:23px;
    font-family: 'robotomedium';
    display:block;
    position: relative;
    padding-bottom:20px;
    margin-bottom:20px;
    line-height: 29px;
}
.guide-outer a:hover{
    text-decoration:none;
    color:#1a35e0;
}
.guide-outer h3:after{
    content:"";
    height:3px;
    width:120px;
    background: linear-gradient(42deg, rgba(189,75,254,1) 46%, rgba(0,53,224,1) 61%);
    position: absolute;
    left:0;
    bottom:0;
}
.guide-outer ul{
    counter-reset: my-awesome-counter;
}
.guide-outer ul li {
    padding-bottom: 1px;
    position: relative;
    padding-left: 0;
    counter-increment: my-awesome-counter;
	margin-bottom:20px;
}
.guide-outer ul li:before{
    content:url('../images/arroew.png');
    position: absolute;
    left:0;
    top:6px;
    display:none;
}
.guide-outer ul li a {
    color: #666;
    font-size: 17px;
    text-decoration: underline;
    padding: 14px;
    background-color: #fff;
    margin-bottom: 0px;
    display: block;
    text-decoration: none;
    transition: all ease-in-out 0.3s;
    position: relative;
    z-index: 1;
    /* padding-left: 34px; */
    /* box-shadow: inset 0px 0px 7px 4px rgba(0,0,0,0.1); */
	box-shadow:0 2px 12px 0 #bdbdbd;
    /*border: 1px solid #ddd;*/
    margin-left:0;
	padding-left:65px;
	border-radius:10px;
}
.guide-outer ul li:before {
    content: counter(my-awesome-counter);
    display: block;
    opacity: 1;
    left: -12px;
    left: 0;
    height: 30px;
    width: 30px;
    text-align: center;
    background-color: red;
    border-radius: 30px;
    z-index: 2;
    top: 17%;
    background-color: #bd4bfe;
    color: #fff;
    line-height: 30px;
}
.guide-outer ul li:before {
    content: counter(my-awesome-counter);
    display: block;
    opacity: 1;
    left: 0;
    width: 50px;
    border-radius: 0;
    z-index: 2;
    top: 0;
    background-color: #bd4bfe;
    color: #fff;
    font-size: 18px;
    height: 100%;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-outer ul li a:hover {
    box-shadow: none;
    background-color: #ebedfb;
}
.guide-outer ul li a:hover:after {
    width: 100%;
}
a.load-more__btn {
    color: #bd4bfe;
    font-weight: 600;
}
.prev-next-pagination a, .navigation .next.page-numbers, .navigation .page-numbers {
    height: 40px;
    /* border: 1px solid #ddd; */
    display: inline-block;
    line-height: 40px;
    padding: 0 15px;
    vertical-align: top;
    background-color: #d3ddff;
    color: #0035e0;
    font-weight: 600;
    /* box-shadow: 0px 0px 12px 0px rgba(0, 53, 224,1); */
    border-radius: 10px;
    text-decoration: none;
    margin: 0 8px 8px;
    border:0;
}
.navigation .page-numbers:hover{
    box-shadow:none !important;
}
.prev-next-pagination a:hover{
    border-color:#ddd;
}
.prev-next-pagination .wp-pagenavi span.current, .prev-next-pagination .wp-pagenavi span.extend, .prev-next-pagination .wp-pagenavi span.pages, .navigation .page-numbers.current {
    background-color: #0035e0;
    color: #fff;
    padding: 0 15px;
    height: 40px;
    display: inline-block;
    line-height: 40px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 8px;
    border:0;
    margin-top: 0;
}
nav.navigation.pagination{
    justify-content: center;
}
.prev-next-pagination .wp-pagenavi span.extend{
    background-color: #d3ddff;
    color: #0035e0;
}
 .prev-next-pagination .wp-pagenavi span.pages {
    background-color: #bd4bfe;
    color: #ffffff;
}
.prev-next-pagination a:hover{
    background-color:#edceff;
    /* box-shadow: 0px 0px 12px 0px rgba(189, 75, 254,1); */
}
.prev-next-pagination .alignleft, .prev-next-pagination .alignright{
    float:none;
} 
.prev-next-pagination {
    display: flex;
    justify-content: center;
    /* background-color: #f7f7f7; */
    /* padding: 20px; */
    /* border-radius: 10px; */
    /* border: 1px solid #ddd; */
}

/* Article Style */

.article-wrap{
    padding:40px 0;
}
.single-article-head h2{
    font-size:28px;
}
.single-article-content p{
    font-size:17px;
    color:#666;
}
.single-article-content blockquote{
    padding-left:20px;
    border-left:2px solid #bd4bfe;
    font-size:17px;
    color:#666;
    font-family: 'robotolight';
}

/* About Style */

.about-wrap{
    padding:40px 0;
}
html { scroll-behavior: smooth; }
.content-list ul li{
    padding-bottom:15px;
}
.content-list ul li a{
    font-size:19px;
    font-family: 'robotomedium';
    color: #1a35e0;
    text-decoration: none;
    position: relative;
    background-color: #f4f4f4;
    padding: 8px 15px;
    display: block;
    border-radius: 5px;
}
.content-list ul li a:hover {
    background-color: #1a35e0;
    color: #fff;
}
.about-wrap .section-title p a{
    color:#bd4bfe;
}
.team-list .team-thumb {
    float: left;
    width: 260px;
}
.team-list .team-thumb img{
    height:253px;
    object-fit: cover;
    object-position: center;
}
.team-content {
    float: left;
    width: calc(100% - 260px);
    margin: 0 0 0 auto;
    padding-left: 30px;
}
.team-list {
    margin-top: 50px;
}
.team-content h2 {
    font-size: 25px;
    margin-bottom: 5px;
}
.content-list ul li ul {
    margin-top: 15px;
}
.content-list ul li ul li:last-child{
    padding-bottom:0;
}
.content-list ul li ul li a{
    position: relative;
    padding-left:45px;
}
.content-list ul li ul li a:before{
    content:"\f061";
    font-family: FontAwesome;
    position: absolute;
    left:15px;
    top:10px;
}
.about-main {
    padding-right: 80px;
}
.about-main h3 {
    color: #bd4bfe;
    font-size:25px;
}


/* Single news Style */

.single-news-wrap {
    padding: 70px 0;
    background-color: #f8f8f8;
}
.news-inner h1, .news-inner h3, .news-inner h4, .news-inner h5 {
    font-size: 30px;
    color: #bd4bfe;
    margin-bottom: 10px;
    padding-top:0;
}
.news-inner ul {
    margin-bottom: 30px;
}
.news-inner p{
    font-size:17px;
    color:#666;
}
.news-inner table td p {
    margin-bottom: 10px;
}
.single-news-thumb {
    margin-bottom: 30px;
}
.news-inner table td{
    padding: 10px;
}
.news-inner table td h3 {
    font-size: 24px;
}
.news-inner table tbody tr:nth-child(even) {
    background-color: rgba(0,0,0,.05);
}
.single-news-thumb .container-fluid {
    padding: 0;
}
.single-news-title{
    margin-bottom:30px;
}
.single-news-wrap .single-test{
    margin-bottom:10px;
}
.single-news-content h2 {
    font-size: 26px;
    color: #1a35e0;
    position: relative;
    margin-bottom:10px;
    font-family: 'robotobold';
    line-height: 40px;
}
.single-news-title h2{
    font-size:36px;
}
.figcap-mobile{
    display:none;
}
.single-news-thumb figcaption.figure-caption {
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-top: 0;
    font-size: 13px;
    color: #666;
    font-style: italic;
}
.single-news-content h3.sub-title {
    font-size: 18px;
    /* font-weight: 600; */
    color: #666;
}
.single-news-content .guide-cat-title {
    font-size: 15px;
    color: #bd4bfe;
    letter-spacing: 2px;
    font-family: 'robotolight';
}
.single-news-content h2:first-child {
    font-size: 42px;
    color: #1a35e0;
    position: relative;
}
.single-news-content ol li h2 {
    font-size: 23px !important;
}
.news-inner ol {
    list-style: none;
}
.news-inner ol li:before {
    content: "\f101";
    width: 0;
    border-radius: 0;
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 3px;
    font-family: FontAwesome;
    color: #1a35e0;
}
.news-inner ol li:last-child {
    padding-bottom: 0;
}
.news-inner table {
    border: 1px solid #ddd;
}
.news-inner table th, .news-inner table td{
    color:#666;
}

.single-product-wrap ul li, .single-product-wrap ol li, .single-news-content ul li, .single-news-content ol li{
    position: relative;
    padding-left:20px;
    padding-bottom: 10px;
    font-size:17px;
    color:#666;
    font-family: 'robotolight';
}
.single-product-wrap ul li strong, .single-product-wrap ol li strong, .single-news-content ul li strong, .single-news-content ol li strong{
    font-weight:300;
}
.single-news-content .single-test ul li:last-child, .single-news-content .single-test ol li:last-child{
    display:block;
}
 .single-test ul li .author-name {
    font-size: 17px;
    color: #1a35e0;
    font-family: 'robotomedium';
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    color: #666;
    text-transform: capitalize;
}
.news-inner ul li, .news-inner ol li{
    font-size:17px;
}
.news-inner ul li h3 {
    font-size: 18px;
    font-weight: 700;
    color: #666;
    margin-bottom: 0;
    margin-top: 20px;
} 
.news-inner p strong {
    color: #bd4bfe;
}
.news-inner td strong{
    color:#1a35e0;
}
 .single-test ul li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 10px;
    font-size: 15px;
    color: #666;
    font-family: 'robotolight';
    padding: 0;
    padding-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    display:block;
}
.single-news-content .test-thumb{
    margin-right: 10px;
}
.single-news-content .author-outer {
    border-bottom: 1px solid #ddd;
    margin-bottom:20px;
}
.social-share{
    padding-bottom:10px;
}
.single-news-content .single-test ul {
    margin-bottom: 0;
}
.social-share .sfsi_shortcode_container{
    float:none;
}
.social-share .sfcm.sfsi_wicon{
    width:80%;
}

.news-inner ul li:before{
    content:"\f101";
    font-family: FontAwesome;
    position: absolute;
    left:0;
    top:0;
}
.single-news-thumb img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}
.single-product-wrap table td, .single-product-wrap table td p{
    font-size:17px;
    color:#666;
    /* font-style:italic; */
}
.single-product-wrap table td p {
    margin-bottom: 10px;
}
.single-product-wrap table tbody tr:nth-of-type(odd) {
    background-color: rgba(0,0,0,.05);
}
.single-product-wrap table th {
    font-size: 17px;
    color:#666;
}
.single-product-wrap table{
    border: 1px solid #ddd;
}
.single-product-wrap table td a {
    color: #bd4bfe;
}
.product-tables{
    margin-bottom:30px;
}
.top-rated-categories table th {
    width: 25%;
    color:#bd4bfe;
    font-weight:400;
}
.top-rated-categories table th, .top-rated-categories table td {
    padding: 10px 15px;
}
.product-content-inner img {
    height: 230px;
    object-fit: cover;
    object-position: center;
}
.site-cost {
    font-size: 17px;
    color: #666;
    font-family: 'robotolight';
}

/* Psychic Jobs Style */

.psychic-jobs-wrap{
    padding:50px 0;
}
.psychic-jobs-head h2 {
    font-size: 22px;
    margin-bottom: 20px;
    /* color: #000; */
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
    /* text-align: center; */
    font-family: 'robotomedium';
    font-family: 'robotobold';
}
.psychic-jobs-head:first-child h2 {
    font-size: 28px;
}

.psychic-job-content {
    max-width: 700px;
    margin: auto;
    width:100%;
}
.psychic-jobs-head p{
    font-size:16px;
    color:#000;
}
.job-thumb {
    text-align: center;
    margin-bottom: 40px;
}
.psychic-jobs-head table th, .psychic-jobs-head table td, .psychic-jobs-head table {
    border-right: 1px solid #dee2e6;
}
.psychic-jobs-head table th{
    font-family: 'robotoregular';
    font-size:19px;
    color:#666;
    font-weight:400;
}
.psychic-jobs-head table td{
    font-family: 'robotoregular';
    font-size:15px;
    color:#666;
    font-weight:400;
}
.psychic-jobs-head table td a{
    color:#bd4bfe;
}
.psychic-jobs-head table{
    border: 1px solid #dee2e6;
}
.psychic-jobs-head p.note{
    font-family: 'robotomedium';
    font-style:italic;
    margin-bottom:30px;
}
.psychic-jobs-head p span, .psychic-jobs-head > a{
    color:#bd4bfe;
    font-family: 'robotomedium';
}
.prev-next-jobs ul{
    display:flex;
    flex-wrap:wrap;
    align-items: center;
    justify-content: space-between;
}
.prev-next-jobs ul li a{
    color:#bd4bfe;
    font-family: 'robotomedium';
}
.related-job-wrap{
    padding:30px 0;
}
.related-job-wrap p{
    color:#666;
    font-size: 17px;
    font-family: 'robotomedium';
}
.related-job-thumb img{
    max-width:150px;
    margin: auto;
}
.related-job-thumb{
    border:1px solid #666;
    padding:10px;
    text-align: center;
}
.related-job-content p{
    font-size:16px;
    color:#666;
    margin:10px 0;
}
.related-job-content h3 a{
    font-size:18px;
    color:#666;
    font-family: 'robotomedium';
    display: block;
    line-height: 26px;
}
.related-job-content h3 a:hover{
    color:#bd4bfe;
}
.jobs-comments-wrap {
    padding:50px 0;
}
.comments-tabs ul.tabs li{
    display:inline-block;
    margin-right:50px;
    font-size:22px;
    color:#666;
    font-family: 'robotomedium';
    cursor:pointer;
}
.comments-tabs ul.tabs li:last-child{
    margin-right:0;
}
.comments-tabs ul.tabs li.current{
    color:#000;
}
.comments-tabs ul.tabs{
    border-bottom:1px solid #666;
    padding-bottom:20px;
    margin-bottom: 30px;
}
.comments-tabs .tab-content {
    display: none;
}
.comments-tabs .tab-content.current {
    display: block;
}
.discussion-form form{
    margin-bottom:30px;
}
.discussion-form form, .posted-comment {
    position: relative;
    padding-left: 70px;
}
.discussion-form form{
    padding-left:0;
}
.dp-thumb {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 50px;
}
.discussion-form ul li{
    display:inline-block;
    vertical-align: top;
}
.discussion-form ul.login-with > li{
    margin-right:20px;
}
.login-with label{
    font-size:12px;
    color:#666;
    font-family: 'robotomedium';
    text-transform: uppercase;
}
.login-with label span{
    border-radius:50px;
    display:inline-block;
    height:20px;
    width:20px;
    border:1px solid #666;
    text-align: center;
    line-height:20px;
}
.recent-comment h2 {
    font-size: 18px;
    color: #666;
}
.recent-comment h2 span{
    display:inline-block;
    margin-left:40px;
}
.recent-comment p{
    font-size:18px;
    color:#666;
    font-weight:300;
}
.recent-comment ul li{
    position: relative;
    padding:0 15px;
}
.recent-comment ul li a{
    color:#666;
    font-size:13px;
}
.recent-comment ul li a .separator:after{
    content:"|";
    padding:0 10px;
}
.recent-comment ul li:after {
    content: "";
    height: 8px;
    width: 8px;
    border-radius: 10px;
    background-color: #d8d8d8;
    position: absolute;
    right: -10px;
    top: 10px;
}
.recent-comment ul li:last-child:after{
    display:none;
}
.recent-comment {
    margin-bottom: 30px;
}

/* Network Detail Style */

.network-detail-wrap{
    padding:50px 0;
}
.network-detail-content-list .psychic-jobs-head h2 {
    font-size: 22px;
}
.network-detail-content-list ul li{
    position: relative;
    padding-left:25px;
    padding-bottom:20px;
}
.network-detail-content-list ul li:before{
    content:"";
    height:15px;
    width:15px;
    border-radius:15px;
    background-color:#666;
    position: absolute;
    left:0;
    top:5px;
}
.section-title ul li a{
    color:#bd4bfe;
}
.collapse_accordion .collapse-content{
    display:none;
    border: 1px solid #666;
    padding: 15px 40px;
}
 .collapse-toggle {
    color: #fff;
    background-color: #bd4bfe;
    font-size: 22px;
    width: 100%;
    text-align: left;
    border: 0;
    padding: 14px 15px;
    position: relative;
    padding-right: 40px;
    font-family: 'robotolight';
}
.collapse-toggle:focus{
    outline:none;
}
.collapse_accordion{
    margin-bottom:40px;
}
.collapse_accordion .tab-content-inner{
    margin-bottom: 15px;
    border-bottom: 0;
}
.collapse_accordion .tab-content-inner p{
    font-size:17px;
    color:#666;
}
.collapse_accordion .collapse-toggle:after {
    content: url('../images/warrow-down.png');
    position: absolute;
    right: 15px;
    top: 28%;
    text-align: center;
}
.collapse_accordion .tab-content-inner.open .collapse-toggle:after{
    content: url('../images/warrow-up.png');
}
.psychic-jobs-head {
    margin-bottom: 30px;
}
.psychic-jobs-head h2{
    margin-bottom:20px;
}
.web-data p b {
    color: #bd4bfe;
}
.web-data p {
    background-color: #f5f5f5;
    padding: 15px;
    border-left: 5px solid #bd4bfe;
    font-size: 15px;
    color:#525252;
}

/* Contact Style */

.contact-wrap {
    padding: 50px 0;
    background-color: #f1f1f1;
}
.contact-form .section-title h2 {
    text-align: center;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 15px;
    color: #000;
    font-size:34px;
}
.contact-form {
    border: 1px solid #ddd;
    padding: 20px 20px 30px;
    /* background-color: #f8f8f8; */
    max-width: 650px;
    margin: auto;
    text-align: center;
    background-color: #ffff;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.contact-form .section-title h2:after {
    content: "";
    height: 5px;
    width: 100px;
    background: linear-gradient(42deg, rgba(189,75,254,1) 33%, rgba(0,53,224,1) 67%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: block;
    margin: auto;
}
.contact-form .form-control, .contact-form input.wpcf7-captchar {
    border: 0;
    border-bottom: 1px solid #ddd;
    border-radius:0;
}
.contact-form .form-control:focus{
    outline:none;
}
.contact-form textarea.form-control{
    height:100px;
}
.contact-form .section-title{
    margin-bottom:30px;
}
.contact-btn .btn{
    padding: 15px 15px;
    font-size: 17px;
    font-weight: 600;
    max-width:200px;
    width:100%;
    border-radius:40px;
    box-shadow: 0px 10px 7px -2px rgba(0,0,0,0.2);
}

.contact-wrap .row{
    align-items: center;
}
.contact-info ul li {
    position: relative;
    padding-left: 70px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
	word-break:break-word;
}
.contact-info ul li .fa {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 23px;
    color: #bd4bfe;
    height: 50px;
    width: 50px;
    border: 1px solid #bd4bfe;
    text-align: center;
    line-height: 50px;
    border-radius: 5px;
    background-color: #bd4bfe;
    color: #fff;
}
.contact-info ul li h3{
    color:#bd4bfe;
}

/* Psychic By Location Style */

.psychic-state-wrap, .psychic-city-wrap{
    padding:40px 0;
}
.psychic-city-wrap{
    background-color:#f8f8f8;
}
.location-list > ul > li {
    display: inline-block;
    width: 32.33%;
    padding-right: 30px;
    position: relative;
}
.location-list ul li:before{
    left:15px;
    display:none;
}
.location-list > ul > li > a, .location-list > ul > li a.card-title{
    margin-left:0;
    position: relative;
    padding: 15px 15px;
    background-color:#fff;
    border:1px solid transparent;
    margin-bottom:50px;
    display:block;
    text-decoration: none;
    font-size:23px;
}
.location-list > ul > li > a:hover {
    padding-left: 20px;
    border-left: 5px solid #be4bff;
    background-color: #e5e8ff;
}

.location-list > ul > li > a:before {
    content: "";
    width: 0px;
    height: 0px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid #be4bff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: all ease-in-out 0.3s;
}
.location-list > ul > li > a:hover:before{
    opacity: 1;
}
.location-list-outer {
    background-color: #f7f7f7;
    padding: 15px 30px;
    margin-bottom:80px;
}
.location-list-outer:last-child{
    margin-bottom:0;
}
.location-list-outer .section-title {
    margin-bottom: 20px;
}
.location-list-outer .section-title h2 {
    font-size: 33px;
}

/* Top Psychic Style */

.top-psychics-wrap{
    padding:70px 0;
}
.top-psychic-head{
    text-align: center;
    max-width:820px;
    width:100%;
    margin:auto;
    margin-bottom:40px;
}
.top-psychic-head h2{
    font-size:33px;
    color:#bd4bfe;
    margin-bottom:20px;
}
.top-psychic-head p{
    font-size:17px;
}
.top-psychic-thumb {
    float: left;
    width: 204px;
}
.top-psychic-thumb img{
    object-fit: cover;
    object-fit: contain;
    object-position: center;
    height:178px;
    width:100%;
}
.top-review-content{
    width:calc(100% - 204px);
    padding-left:20px;
    margin:0 0 0 auto;
}
.top-review-content p{
    font-size:17px;
    line-height: 32px;
}
.top-review-content p a{
    color:#bd4bfe;
    font-family: 'robotomedium';
    font-size:20px;
}
.psychic-rev {
    padding: 25px 35px;
    border: 1px solid #f1daff;
    background-color: #f9f9f9;
    margin-left:30px;
}
.top-psychic-reviews ul {
    counter-reset: my-awesome-counter;
}
.top-psychic-reviews > ul > li{
    counter-increment: my-awesome-counter;
    position: relative;
    margin-bottom:30px;
}
.top-psychic-reviews > ul > li:before {
    content: counter(my-awesome-counter) ")";
    opacity: 1;
    left: -12px;
    left: 0;
    text-align: center;
    border-radius: 30px;
    z-index: 2;
    top: 0;
    color: #bd4bfe;
    position: absolute;
    font-size:20px;
}

/* Single Rev Style */

.single-rev-wrap{
    padding:40px 0;
}
.rev-main{
    padding:40px 85px;
    background-color:#f9f9f9;
    border: 1px solid #f1daff;
    margin-bottom:30px;
}
.rev-info h3{
    font-size:20px;
    color:#666;
}
.rev-info-inner{
    display: flex;
}
.rev-info-inner a {
    color: #bd4bfe;
    text-decoration: underline;
}
.rev-info-inner ul{
    margin-left:10px;
}
.rev-info-inner label, .rev-info-inner ul li{
    font-size: 17px;
    font-family:'robotomedium';
    color:#666;
}
.rev-info-inner ul li{
    font-family:'robotolight';
    font-family:inherit;
}
.rev-info-inner p, .rev-profile-info p{
    font-size:17px;
    color:#666;
}
.rev-info-inner p:last-child {
    margin-bottom: 0;
}
.rev-info-inner, .rev-info{
    margin-bottom:30px;
}
.rev-proile-thumb{
    border:1px solid #000;
    padding:10px;
    margin-bottom:15px;
}
.rev-profile-info{
    text-align: center;
}
.rev-profile-info a{
    font-size:17px;
    color:#666;
    font-family:'robotomedium';
    text-decoration: underline;
}

.single-rev-des h2, .single-rev-des h1, .single-rev-des h6 {
    font-size: 25px;
    color: #bd4bfe;
}
.single-rev-des ul li, .single-rev-des ul li h6 {
    color: #0035e0;
    font-size: 19px;
    margin-bottom: 18px;
    position: relative;
    padding-left:20px;
}
.single-rev-des ul li h6{
    padding-left:0;
}
.single-rev-des ul li a{
    color: #0035e0;
}
.single-rev-des ul li:before{
    /* content:"\f101"; */
    position: absolute;
    left:0;
    top:0;
    font-family:FontAwesome;
}
.single-rev-des h3, .single-rev-des p{
    font-size:21px;
    color:#666;
}
.single-tarot-reading .single-rev-des p {
    font-size: 17px;
}
.single-rev-vid{
    max-width:500px;
    width:100%;
    margin:auto;
    text-align: center;
    margin:50px auto 30px;
}
.single-rev-vid iframe{
    width:100%;
    margin-bottom:20px;
}
.rev-head h2{
    background: linear-gradient(42deg, rgba(189,75,254,1) 33%, rgba(0,53,224,1) 67%);
    font-size:21px;
    color:#fff;
    padding:20px 15px;
    text-transform: uppercase;
}
.review-list ul.rev-list-main li{
    font-size:17px;
    color:#666;
    font-family: 'robotolight';
    font-style:italic;
    margin-bottom:20px;
}
.xs-review-rating-stars ul > li.star {
    padding: 0;
}
ul#xs_review_stars {
    padding: 0;
}
.review-list ul.rev-list-main, .rev-form-inner {
    padding:10px 40px;
}
#xs-review-box .write-reivew-headding, #xs-review-box .total-reivew-headding{
    margin-bottom:10px !important;
}
 .xs-review button[type="submit"]{
    background: linear-gradient(24deg, rgba(160,32,240,1) 18%, rgba(255,10,246,1) 79%);
    font-weight:600;
}
#xs_review_form_public_data .xs-review-box .xs-text {
    /* width: 32.33% !important; */
}
.rev-info-inner label{margin-right:10px;}

.rev-form-inner p{
    font-size:17px;
    color:#666;
    font-style:italic;
}
.rev-form-inner .form-control{
    height:50px;
    border:0;
    border-radius:0;
    background-color:#e3e4f1;
}
.rev-form-inner textarea.form-control{
    height:120px;
}
.rev-btn .btn {
    min-width: 180px;
    font-size: 20px;
    text-transform: uppercase;
}

/* Deal Style */

.psychic-deals-warp{
    padding:40px 0;
}
.deals-content p {
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}
.deals-list ul li{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    /* margin:0 -15px; */
}
.deals-list ul li .deal-thumb, .deals-list ul li .deal-action{
    max-width:25%;
    flex:0 0 25%;
    -ms-flex:0 0 25%;
    padding:0 15px;
}
.deals-list ul li{
    padding:15px;
    background-color:#f9f9f9;
    border:1px solid #eccaff;
    
    margin-bottom:30px;
}
.deals-list ul li  .deal-content-inner{
    max-width:50%;
    flex:0 0 50%;
    -ms-flex:0 0 50%;
    padding:0 15px;
}
.deal-content-inner h2{
    background: linear-gradient(42deg, rgba(0,53,224,1) 33%, rgba(189,75,254,1) 67%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size:22px;
    line-height: 29px;
    font-weight:300;
    margin-bottom:20px;
    background-size: 200%;
    background-position: 50%;
    transition: all ease-in-out 0.3s;
}
.deal-content-inner a{
    text-decoration: none;
}
.deal-content-inner a:hover h2{
    background-position: 100%;
}
.deals-list ul li .deal-thumb{
    background-color: #fff;
    border: 1px solid #efefef;
    text-align: center;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.1);
}
.deals-list ul li .deal-thumb img{
    padding: 15px;
    height:200px;
    object-fit: cover;
}
.deal-content-inner span.mrkt-price{
    text-decoration: line-through;
}
.deal-content-inner span.dis-price{
    color:#0035e0;
}
.deal-content-inner p{
    margin-bottom:10px;
}
.deal-action .btn {
    border-radius: 0;
    width: 100%;
    border:0;
    margin-bottom:15px;
}
.deal-action .btnD {
    /* background-image: none;
    background-color: #0035e0; */
    opacity: 0.5;
}
.deal-action .promo-code{
    font-size:20px;
    color:#bd4bfe;
    text-align: center;
}
.deal-action .promo-code a {
    font-size: 17px;
    font-weight: 400;
    color: #bd4bfe;
}
.deals-faq-wrap button.collapse-toggle {
    font-size: 24px;
    background-color: #fff;
    padding: 10px 15px;
    border: 0;
    width: 100%;
    text-align: left;
    font-family: 'robotolight';
    position: relative;
    cursor:pointer;
    padding-right:50px;
    color:#666;
}
.deals-faq-wrap .tab-content-inner.open button.collapse-toggle{
    color:#000080;
}
.deals-faq-wrap button.collapse-toggle:after {
    content: "\f067";
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    top: 10px;
}
.deals-faq-wrap .tab-content-inner.open button.collapse-toggle:after{
    content:"\f068";
}
.deals-faq-wrap button.collapse-toggle:focus{
    outline:none;
}
.deals-faq-wrap .tab-content-inner {
    margin-bottom: 30px;
    box-shadow: 0px 0px 5px 3px rgba(0,0,0,0.05);
}
.collapse-content p{
    font-size:15px;
    font-family: 'robotolight';
}
.collapse-content{
    padding: 10px 15px;
    display:none;
    
}
.faq-head {
    padding: 15px 35px;
    background: linear-gradient(42deg, rgba(189,75,254,1) 33%, rgba(0,53,224,1) 67%);
    text-align: center;
    display: inline-block;
    margin-bottom:30px;
}
.faq-head p{
    color:#fff;
    font-size:17px;
    margin:0;
}

/* Single Deal Style */

.single-deal-wrap{
    padding:60px 0 30px;
}
.single-deal-wrap .section-title h2 {
    font-size: 25px;
}
.deal-offer{
    margin-bottom:40px;
}
.deal-offer > div {
    display: inline-block;
    vertical-align: top;
}
.deal-offer .deal-offer-text{
    width: calc(100% - 250px);
}
.deal-offer .deal-action{
    width:240px;
}
.deal-offer .deal-action a{
    color:#bd4bfe;
}
.deal-offer-text p{
    font-size:17px;
    color:#666;
}
.deal-offer .deal-offer-text p:last-child {
    margin-bottom: 0;
}
.deal-offer .deal-action, .deal-offer .deal-action .promo-code{
    text-align: center;
}
.deal-offer .deal-action .btn{
    max-width:240px;
    color:#fff;
}
.deal-offer .deal-action .promo-code{
    margin-right: 0;
}
.single-deal-content h2{
    font-size:25px;
    color:#bd4bfe;
}
.single-deal-content p{
    font-size:17px;
}
.single-deal-content p span{
    font-family:'robotomedium';
    color:#bd4bfe;
}
.single-deal-thumb {
    margin-bottom: 20px;
}
.single-deal-faq-wrap .collapse-toggle:after {
    content: url('../images/arrow-down.png');
    position: absolute;
    right: 20px;
    top: 24%;
}
.single-deal-faq-wrap .faq_inner.open .collapse-toggle:after{
    content: url('../images/arrow-up.png');
}
.single-deal-faq-wrap{
    padding:30px 0;
}

/* Psychic Directory Style */

.psychic-dir-wrap{
    padding:60px 0;
}
.psychic-dir-inner h2{
    font-size:30px;
    color:#bd4bfe;
}
.psychic-dir-inner h3 {
    font-size: 23px;
    color: #0035e0;
}
.psychic-dir-inner h4 {
    font-size: 19px;
    color: #0035e0;
    background-color: #dfe7ff;
    padding: 15px 20px !important;
    border-radius: 10px;
}
.psychic-dir-inner ol{
    list-style:none;
}
.psychic-dir-inner ul li, .psychic-dir-inner ol li {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
    line-height: 29px;
    font-weight: 300;
    font-family: 'robotolight';
    position: relative;
    padding-left:20px;
}
.psychic-dir-inner ul li:before, .psychic-dir-inner ol li:before{
    content:"\f101";
    font-family: FontAwesome;
    position: absolute;
    left:0;
    top:0;
}
.psychic-dir-sidebar{
    background-color:#dfe7ff;
    padding:20px;
    border-radius:10px;
}
.psychic-dir-sidebar .search-box section#search-3{
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    max-width: 100%;
}
.top-psychics {
    padding: 20px 0;
}
.top-psychics h2 {
    font-size: 21px;
    color: #0035e0;
    text-decoration: underline;
    margin-bottom: 30px;
}
.psychic-dir-sidebar .search-box {
    margin-bottom: 30px;
}
.top-psychics ul {
    text-align: center;
}
.top-psychics ul li {
    margin-bottom: 30px;
    background-color: #e7edff;
    padding: 20px 15px; 
    border-radius: 10px;
}
.top-psychics ul li:last-child {
    margin-bottom: 0px;
}
.dir-side-thumb {
    margin-bottom: 15px;
}
.top-psychics h2 a {
    color: #0035e0;
    display: block;
}
.top-psychics ul li h2{
    margin-bottom:0;
}
.psychic-dir-inner form {
    /* background-color: #dfe7ff; */
    padding: 30px;
    /* border-radius: 10px; */
    max-width: 650px;
    margin:auto;
    border: 1px solid #ddd;
    /* padding: 20px 20px 30px; */
    /* background-color: #f8f8f8; */
    max-width: 650px;
    margin: auto;
    text-align: center;
    background-color: #ffff;
    box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
    border-radius: 10px;
    background-color:#fff;
}
.psychic-dir-inner form input, .psychic-dir-inner form textarea {
    border: 0;
    border-radius: 0;
    border-bottom:1px solid #ddd;
}
.psychic-dir-inner form textarea{
    height:150px;
}
.psychic-dir-inner .wpcf7-recaptcha > div {
    margin-bottom: 20px;
    
}
.psychic-dir-sidebar .search-box section#search-3:after{
    display:none;
}

/* Lightbox Style */

.imageLink {
    display: inline-block;
  }
  
  .imageLink,
  .imageBox {
    line-height: 0;  
  }
  
  .imageLink:nth-of-type(-n+3) {
    margin-bottom: 0.8rem;
  }
  
  .imageBox,
  .largeImage,
  .image,
  .imageCaption {
    width: 100%;
  }
  
  .image,
  .largeImage {
    -webkit-transform: perspective(1px);
    -moz-transform: perspective(1px);
    transform: perspective(1px);
  }
  
  .overlayContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 250;
  }
  
  .overlayContainer,
  .imageCaption {
    bottom: 0;
  }
  
  .relativeContainer {
    position: relative;
    margin: 0 0.5rem;
  }
  .relativeContainer img {
        width: auto;
    }
    .relativeContainer img.largeImage{
        box-shadow: none;
    }
  .imageBox,
  .imageCaption {
    position: absolute;
  }
  
  .imageBox {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .display {
    display: block;
  }
  
  .imageCaption {
    margin: 0;
    font-size: 1.3em;
    padding: 0.325rem;
  }
  
  
  
  /***Colors***/
  
  
  .imageLink {
    outline: none;
    -webkit-transition: all ease .2s;
    transition: all ease .2s;
  }
  
  .imageLink:hover,
  .imageLink:focus {
    opacity: 0.8;
  }
  
  .overlayContainer {
    visibility: hidden;
    opacity: 0;
    background-color: rgba(51, 51, 51, .9);
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
  }
  
  .imageBox {
    cursor: pointer;
  }
  
  .largeImage {
    box-shadow: 5px 5px 5px 0px rgb(0, 0, 0);
  }
  
  .imageCaption {
    background: rgba(51, 51, 51, .8);
    color: #fff;
  }
  
  .opacity {
    visibility: visible;
    opacity: 1;
  }
  

  /* 404 Page Style */

  .not-found header.page-header {
        float: none !important;
        width: 100% !important;
        text-align: center;
    }
    .not-found header.page-header h2 {
        font-size: 100px;
        font-weight: 600;
        color: #e7edff;
        color: #1a35e0;
        line-height: 130px;
        margin-bottom: 20px;
        height: 200px;
        width: 200px;
        margin: auto;
        border-radius: 260px;
        background-color: #e7edff;
        line-height: 200px;
    }
    .not-found header.page-header h1 {
        font-size: 40px;
        color: #bd4bfe;
    }
    .home-btn a {
        margin-right: 30px;
    }
    
    .home-btn .outline:hover {
        background: linear-gradient(24deg, rgba(160,32,240,1) 18%, rgba(255,10,246,1) 79%);
        color: #fff;
        border-color: transparent !important;
        background-color: transparent !important;
        border:0;
    }
    .not-found{
        /* background-color: #f4f4f4; */
        padding: 0 0 0;
    }
    .home-btn .btn {
        height: 50px;
        padding: 10px 15px;
        font-size: 18px;
        min-width: 200px;
        background-image: none;
        background-color: #0d53dd;
        border-radius: 8px;
    }
    .home-btn .outline {
        background-color: transparent;
        background-image: none;
        color: #bd4bfe;
        border: 2px solid #bd4bfe;
    }
    .error-thumb img {
        max-width: 550px;
    }
    .error404 .wrap #primary{
        padding: 40px 15px;
        max-width: 1200px;
        width: 100%;
        margin:auto;
    }
    .error404 .wrap{
        padding:0;
        max-width:100%;
        background-color:#f4f4f4;
    }

    /* .submit-yourself-wrap form label {
		font-size: 16px;
		color: #0035e0;
		letter-spacing: 1px;
		font-family: 'robotoregular';
		color: #0035e0;
		display: inline-block;
		border-bottom: 1px solid #c5c5c5;
		padding-bottom: 10px;
		margin-bottom: 20px;
	} */
	.submit-yourself-wrap form .form-group label.form-label {
		font-size: 16px;
		/* color: #0035e0; */
		letter-spacing: 1px;
		font-family: 'robotoregular';
		color: #0035e0;
		display: inline-block;
		border-left: 2px solid #0035e0;
		padding-bottom: 10px;
		margin-bottom: 30px;
		padding-left: 17px;
		border-bottom: 2px solid #0035e0;
		/* display: block; */
        padding-right: 17px;
        
	}
	.submit-yourself-form ul li {
		display: inline-block;
		padding-right: 20px;
		margin-bottom: 20px;
		background-color: #f1f1f1;
		margin-right: 20px;
		padding: 7px;
		border-radius: 7px;
    }
    .submit-yourself-form ul li.blue{
        background-color: #e7edff;
    }
	.submit-yourself-form ul li.blue label {
		
		/* color: #fff; */
		color: #0035e0;
    }
    .submit-yourself-form ul li label{
        display: inline-block;
        margin-bottom: 0;
    }
    .submit-yourself-wrap form label.error {
        font-size: 13px;
        font-weight: 400;
        font-style: italic;
        text-decoration: none;
        border-bottom: none;
        position: absolute;
        right: 15px;
        bottom: 0;
        letter-spacing: normal;
    }
    .submit-yourself-wrap form select[multiple="multiple"] {
        height: 100px;
    }
    .feature-list label {
        margin-bottom: 20px;
    }

    /* Submit youself form */

    .submit-yourself-form {
        background-color: #f4f4f4;
        background-color: #e7edff;
        padding: 60px 0;
        margin-top:100px;
    }
    .submit-yourself-form form {
        padding: 30px;
        max-width: 650px;
        margin:auto;
        /* border: 1px solid #ddd; */
        max-width: 650px;
        max-width:100%;
        margin: auto;
        text-align: left;
        background-color: #ffff;
        box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
        border-radius: 10px;
        background-color:#fff;
        box-shadow: 0 20px 40px rgb(197 212 255);
        -moz-box-shadow: 0 20px 40px rgb(197 212 255);
        -webkit-box-shadow: 0 20px 40px rgb(197 212 255);
        margin-top: -120px;
        z-index: 0;
        position: relative;
    }
    .submit-yourself-form form .contact-btn {
        text-align: center;
    }
    .submit-yourself-form form input, .submit-yourself-form form textarea {
        border: 0;
        border-radius: 0;
        border-bottom:1px solid #ddd;
    }
    .submit-yourself-form form textarea{
        height:150px;
    }
    .submit-yourself-form .wpcf7-recaptcha > div {
        margin-bottom: 20px;
        
    }
    .submit-yourself-form form input.form-control {
        height: 60px;
        
    }
    .submit-yourself-form form .form-control{
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 15px;
        font-family: 'robotoregular';
		border-bottom-color: #c2ccea;
		border-bottom-width: 1px;
		box-shadow: 0px 10px 10px -4px rgb(0, 53, 224,0.1);
    }

    .submit-yourself-form form select.form-control{
        height:60px !important;
        padding:0 15px;
    }
    .submit-yourself-form form .form-control:focus{
        border-color:#0035e0;
        box-shadow:none !important;
    }
    .submit-yourself-form .wpcf7-form-control-wrap{
        display:block;
    }
    .submit-yourself-form .form-group {
        margin-bottom: 30px;
        position: relative;
    }
  /* 04-07-2022 */
  footer.site-main-footer .row {
    width: 100%;
}
  @media only screen and (min-width: 30em) {
    
  .imageLink {  
    float: left;
    /*width: 33.33%;*/
  }
    
  .imageLink:nth-of-type(1), .imageLink:nth-of-type(3) {
    /* margin-right: 3.33%; */
  }  
    
  .imageLink:nth-of-type(3) {
    margin-bottom: 0;
  }
   
    
    
  }

  /* Psychic Location Style */

  .psychic-location-wrap .location-list-outer .section-title h2, .psychic-location-wrap .location-outer .section-title h2{
      margin-bottom:40px;
      text-shadow: 5px 9px 11px rgba(0,0,0,0.2);
      font-size:35px;
      font-weight:600;
  }
  .psychic-location-wrap .location-outer .section-title h2{
    background-color: #f7f7f7;
    padding:40px 30px;
    margin-bottom: 80px;
    
  }
  .psychic-location-wrap .location-list ul li a.card-title {
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.03);
    font-size: 23px;
    padding: 30px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 20px;
    cursor:pointer;
    position: relative;
    text-transform: uppercase;
}
.psychic-location-wrap .location-list ul li a.card-title:after {
    content: url(../images/arrow.png);
    position: absolute;
    right: 10px;
    top: 30px;
}
  .psychic-location-wrap .location-list-outer{
      padding:40px 30px;
  }
  .location-list ul li .panel-collapse {
    position: absolute;
    top: 88px;
    left: 0;
    z-index: 2;
    padding:0;
    width: 100%;
}
.location-list ul li .card-header {
    padding: 0;
    margin-bottom: 0;
    background-color: #fff;
    border-bottom: 0;
}
.psychic-location-wrap .location-list .panel-body ul li {
    width: 100%;
    box-shadow: none;
    padding: 0;
}
.psychic-location-wrap .location-list .panel-body ul li a {
    box-shadow: none;
    padding: 0;
    display: block;
    padding: 13px 20px;
    text-decoration: none;
    font-size:24px;
}
.psychic-location-wrap .location-list .panel-body ul li a:hover {
    color:#bd4bfe;
}
.panel-body h2 {
    padding: 20px;
    text-align: center;
    font-size: 25px;
    background-color: red;
    color: #fff;
    background: linear-gradient(4deg, rgba(160,32,240,1) 18%, rgba(255,10,246,1) 79%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    font-style:italic;
    margin-bottom:0;
}
.location-list ul li .panel-collapse ul{
    padding: 15px;
    background-color: #fff;
   box-shadow:0px 10px 10px 10px rgba(0,0,0,0.1);
   height:400px;
   overflow: auto;
}
.location-collapse{
    position: relative;
}

/* Psychic Locate */

.location-select-wrap{
    padding:50px 0;
}
.locate-select form .form-group {
    display: inline-block;
    max-width: 200px;
    width: 100%;
    margin-right: 30px;
    position: relative;
}
.locate-select form .form-group:last-child {
    margin-right: 0;
}
.locate-select form .form-group:last-child:after{
    display:none;
}
.locate-select form .form-group:after {
    content: "";
    background-image: url(../images/arrow-tr.png);
    font-family: FontAwesome;
    position: absolute;
    right: -22px;
    top: 37%;
    font-size: 20px;
    background-size: 11px;
    background-position: center;
    height: 14px;
    width: 11px;
    background-repeat: no-repeat;
}
.locate-select .form-control {
    height: 50px !important;
    border-radius: 0;
    border-color: #b9b9b9;
    color: #bd4bfe;
    font-weight: 600;
}
.locate-title h2 {
    font-size: 23px;
    margin: 20px 0 30px;
}
.locate-psychic-thumb {
    overflow: hidden;
    height: 140px;
}
.locate-psychic-content {
    background-color: #f4f4f4;
    padding: 10px;
    box-shadow: 0px 10px 1px -5px rgba(0,0,0,0.03), 0px 10px 12px -1px rgba(0,0,0,0.15);
}
.locate-psychic-content h3 {
    font-size: 19px;
    margin-bottom: 5px;
    text-align: center;
}
.locate-psychic-content p {
    font-size: 16px;
    font-weight: 600;
}
.locate-psychic-content a {
    text-align: center;
    display: block;
    color: #bd4bfe;
    font-weight: 500;
    text-transform: uppercase;
}
.locate-psychic-content p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.locate-psychics-list {
    margin-bottom: 30px;
}
.locate-info .row [class^="col-"]{
    max-width:20%;
    flex:0 0 20%;
}
.all-psychics .locate-psychic-thumb {
    float: left;
}
.all-psychics .locate-psychic-content {
    float: left;
    width: calc(100% - 140px);
    margin: 0 0 0 auto;
    background-color: transparent;
    box-shadow: none;
    padding: 0 10px;
}
.all-psychics .locate-psychic-thumb {
    float: left;
    width: 140px;
    height: 90px;
}
.all-psychics .locate-psychics-list {
    background: #f4f4f4;
    box-shadow: 0px 10px 1px -5px rgba(0,0,0,0.03), 0px 10px 12px -1px rgba(0,0,0,0.15);
    padding: 5px;
}
.all-psychics .locate-psychic-content h3 {
    font-size: 18px;
    margin-bottom: 0;
    text-align: left;
}
.all-psychics .locate-psychic-content p{
    margin-bottom:9px;
    font-size:15px;
}
.all-psychics .locate-psychic-content a {
    text-align: left;
    font-size: 15px;
}
.locate-psychic-thumb img {
    object-fit: contain;
    height: 140px;
    width: 100%;
}
.all-psychics .locate-psychic-thumb img {
    height: 90px;
    object-fit: contain;
    width: 70%;
}

/* Browse By state city */

.psychic-state-wrap{
    padding:50px 0;
}
.psychic-state-tabs a.nav-link, .psychic-state-tabs a.nav-link.active {
    font-size: 19px;
    color: #bd4bfe;
    font-weight:600;
}
.psychic-state-tabs a.nav-link.active{
    border-color:#ddd;
    position: relative;
    border-width:2px;
}
.psychic-state-tabs a.nav-link.active:after{
    content:"";
    height:3px;
    width:100%;
    position: absolute;
    left:0;
    bottom:-3px;
    background-color:#fff;
}
.state-city-link a{
    display:block;
    text-decoration: none;
    color:#666;
    font-size:18px;background-color:#f4f4f4;
    box-shadow: 0px 8px 5px -4px rgba(0,0,0,0.15);
    padding:15px 25px;
    margin-bottom:30px;
}
.state-city-link a:hover{
    background: linear-gradient(180deg, rgba(189,75,254,1) 43%, rgba(0,53,224,1) 117%);
    color:#fff;
}
.psychic-state-city-inner {
    padding: 20px;
    border: 2px solid #ddd;
    border-top: 0;
}
.psychic-state-tabs .nav-tabs{
    border-bottom:2px solid #ddd;
}
.psychic-state-tabs a.nav-link {
    padding-right: 70px;
}

div#responcelisting > p {
    background-color: #f1f1f1;
    padding: 15px 25px;
    color: #bd4bfe;
    font-weight: 600;
    /* border-bottom: 4px solid #bd4bfe; */
    /* display: inline-block; */
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    width:100%;
}
p.responcelis {
    background-color: #f1f1f1;
    padding: 15px 25px;
    color: #bd4bfe;
    font-weight: 600;
    /* border-bottom: 4px solid #bd4bfe; */
    /* display: inline-block; */
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    width: 100%;
}
div#responcelisting {
    margin: 0;
}
#responcelisting.puerto p{
    margin:30px 0;
}
.thankyoumess h2{
    background-color: #ceecce;
    padding: 15px 25px;
    border-radius: 10px;
    /* color: #fff; */
    font-size: 20px;
    /* border: 1px solid #00a700; */
    color: green;
}
/* =======rohit css====== */
.location-select-wrap{
    padding: 50px 0 30px;
}
.locate-psychic-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: 0.4px;
    color: #fff;
}
.locate-psychic-content a {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 2px;
    transition: all 0.3s;
}
.locate-psychic-thumb {
    border-radius: 6px 6px 0 0;
}
.locate-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 20px 0 34px;
    position: relative;
    padding-bottom: 13px;
    color: #2d2d2d;
}
.locate-title h2::before {
    position: absolute;
    content: '';
    top: 100%;
    width: 100px;
    border-radius: 130px;
    height: 4px;
    background: #000;
    background: linear-gradient(142deg,rgba(189,75,254,1) 10%,rgba(0,53,224,1) 68%);
}
.locate-select form {
    display: flex;
    align-items: center;
    justify-content: center;
}
.locate-select form .form-group select {
    font-size: 16px;
    font-weight: 600;
    color: #353535;
    border-radius: 6px;
}
/* .locate-select {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 30px;
} */
#responcelisting .locate-info.top-locate-psychics{  
    border-top: 1px solid #ddd;
    margin-top: 12px;
}
section.location-select-wrap {
    background: #f1f1f1;
}
.locate-select form .form-group{
    max-width: 270px;
}
.locate-psychic-content{
    background: linear-gradient(142deg,rgba(189,75,254,1) 10%,rgba(0,53,224,1) 68%);
    border-radius: 0 0 6px 6px;
}


.table-responsive table tbody td {
    min-width: 167px;
}
.single-tarot-reading .single-rev-des ol li {
    font-size: 16px;
    color: #666;
    list-style: none;
    padding-left: 20px;
    line-height: 23px;
    position: relative;
}
.single-tarot-reading .single-rev-des ol li:before, .single-product-wrap ul li:before {
    content: "\f101";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: #bd4bfe;
}
.single-product-wrap ul li {
    position: relative;
}

/* 20-07-2022 */

.contact-form .form-group {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    text-align: left;
}
.contact-form .form-group .BDC_CaptchaDiv {
    margin: 20px auto !important;
}
.page-id-576 .home-banner-wrap .row {
    align-items: flex-start;
}
.banner-head h2 {
    font-size: 58px;
    margin-bottom: 10px;
}
.banner-head h3 {
    font-size: 22px;
}
.banner-thumb img {
    margin-top: 100px;
}

/* Responsive Style */

@media(max-width:1100px){
    .main-nav ul li {padding: 0 21px;}
    .product-single{margin:0}
	.adsbygoogle ins, .adsbygoogle iframe{width:100% !important;}

    .table-responsive table tbody td {
        min-width: 218px;
    }
}

@media(max-width:1024px){
    section.home-banner-wrap .row [class^="col-"] {max-width: 100%;flex: 0 0 100%;}
    .banner-thumb-outer {position: absolute;top: 0;left: 0;right: 0;bottom: 0;margin: auto;z-index: -1;opacity: 0.05;top: 30%;text-align:center;}
    .main-nav ul li {padding: 0 16px;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children span:after{right:0;}
	.home-banner-wrap{position:relative;}
}
@media(max-width:991px){
    .hamburger{display:block;background:transparent;}
    .menu-header-menu-container {position: fixed;width: 260px;height: 100vh;left: 0;top: 0;background-color: #f8f8f8;z-index: 2;transition: all ease-in-out 0.3s;transform: translateX(-100%);box-shadow: 0px 0px 5px 5px rgba(0,0,0,0.1);}
    span.arrow.open .fa:before {content: "\f106";}
    .menu-header-menu-container.open {transform: none;}
    .site-main-header .row [class^="col-"]{max-width:100%;flex:0 0 100%;}
    .main-nav ul li {display: block;text-align: left;}
    .main-nav ul li:first-child{padding-left:15px;}
    .main-nav ul li a{display:block;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children span {position: absolute;right: 15px;top: 15px;height: 20px;width: 20px;display: block;border: 1px solid #000;text-align: center;border-radius: 20px;background-color: transparent;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children{position: relative;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children span.open ~ ul.sub-menu{display:block;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children span .fa{display:block;}
    .main-nav .menu-header-menu-container > ul > li.menu-item-has-children span:after{display:none;}
    .main-nav ul li ul.sub-menu{position: static;transition:none;box-shadow:none;border:1px solid #ddd;display:none;margin:0;}
    .banner-head h3 {font-size: 23px;}
    .banner-head h2 {font-size: 68px;margin-bottom: 10px;}
    .brand-list ul li{margin-bottom:30px;}
    .site-main-header {padding: 20px 0;border-bottom: 1px solid #ddd;}
    .article-content > a{font-size:19px;}
    .single-highlights ul li {font-size: 17px;}
    .single-product-head .section-title h2{font-size:31px;}
    .review-head h2{font-size: 26px;}
    .review-head {padding: 40px 30px;}
    .section-title {margin-bottom: 20px;}
    .product-single .product-name h3{font-size:20px;}
    .psychic-jobs-head h2, .psychic-jobs-head:first-child h2 {font-size: 25px;}
    .psychic-jobs-head table th{font-size:16px;}
    .psychic-jobs-head table td{font-size:17px ;}
    .deals-faq-wrap button.collapse-toggle{font-size:16px;}
    .collapse_accordion .tab-content-inner p{font-size:15px;}
    .collapse_accordion .collapse-content {padding: 15px;}
    .news-single-main .row [class^="col-"]:nth-child(3){display:none;}
    .news-single-main .row [class^="col-"]:nth-child(2){max-width:75%;flex:0 0 75%;-ms-flex:0 0 75%;}
    .search-box {position: absolute;right: 100px;top: -57px;}
    .psychic-dir-sidebar .search-box{position: static;}
    .psychic-location-wrap .location-list-outer .section-title h2, .psychic-location-wrap .location-outer .section-title h2{font-size:27px;}
    .location-list>ul>li>a, .location-list>ul>li a.card-title{font-size:19px;}
    .psychic-location-wrap .location-list ul li a.card-title{font-size:18px;}
    .section-title h2{font-size:27px;}
    .content-list ul li a{font-size:19px;}
	.video-inner iframe{height:auto;}
	.review-video .row{align-items:flex-start;}
}

@media(max-width:839px){
    .deals-list ul li .deal-thumb, .deals-list ul li .deal-action, .deals-list ul li .deal-content-inner {max-width: 100%;flex: 0 0 100%;-ms-flex:0 0 100%;margin-bottom:30px;}
    .deal-content-inner, .deal-action {text-align: center;}
    .deal-action .btn {display: inline-block;max-width: 200px;padding: 10px 15px;font-size: 20px;}
    .deals-list ul li .deal-action{margin-bottom:0;}
    .locate-info .row [class^=col-]{max-width:33.33%;flex:0 0 33.33%;-ms-flex:0 0 33.33%;}
}

@media(max-width:767px){
    .banner-head h2 {font-size: 54px;}
    .home-banner-wrap {padding: 50px 0 30px;}
    .banner-head h3 {font-size: 20px;}
    .banner-link-list {padding-right: 0px;}
    .banner-link-list ul li .banner-icon {height: 100%;width: 70px;text-align: center;display: flex;align-items: center;justify-content: center;background-color: #fff;border: 1px solid #1a35e0;border-radius: 10px;}
    .banner-link-text {padding-right: 20px;}
    .custom-logo-link img{max-width:130px;}
    .section-head h2 {font-size: 30px;}
    .section-head h2:after{width:13%;}
    .brand-list ul li{width:21%;margin-bottom:30px;}
    .article-content, .review-outer{margin-bottom:30px !important; }
    .article-wrap .row [class^="col-"]:last-child .article-content, .product-review-wrap .row [class^="col-"]:last-child .review-outer{margin-bottom:0px !important; }
    .leading-head h2 {font-size: 27px;}
    .leading-wrap .row [class^="col-"]{margin-bottom:30px;}
    .leading-wrap .row [class^="col-"]:last-child{margin-bottom:0px;}
    .leading-bio {max-width: 100%;text-align: center;}
    .lead-thumb{margin:auto;}
    .footer-logo img {max-width: 150px;}
    .review-thumb{background-color:#f8f8f8;}
    .about-wrap .row{flex-direction: column-reverse;}
    .content-list ul li a{background-color:#1a35e0;padding: 10px;display:block;color:#fff;font-size: 15px;}
    .content-list ul li a:hover, .content-list ul li a:focus{color:#fff;}
    .content-list {text-align: center;margin-bottom:30px;}
    .content-list ul li {padding-bottom: 4px;display: inline-block;width:49%;vertical-align: top;}
    .section-title h2{font-size:27px;}
    .single-news-content h2, .single-news-content h2:first-child {font-size: 25px;}
    .single-news-thumb img {height: 370px;}
    .news-inner h3, .news-inner h4, .news-inner h5 {font-size: 27px;}
    .single-rating .progress .progress-label, .single-rating .progress .progress-value{line-height: 45px;}
    .single-rating .progress{height:45px;}
    .single-product-info ul li{    background-color: #f8f8f8;margin-bottom: 10px;padding: 10px !important;font-size:18px;display: block;}
    .single-product-info ul li.current:after{display:none;}
    .single-product-info ul li.current{background-color:#bd4bfe;color:#fff;}
    .guide-list-row [class^="col-"] {max-width: 50%;flex: 0 0 50%;}
    .product-single > div{max-width:100%;flex:0 0 100%;}
    .product-single .product-thumb {margin-bottom: 20px;}
    .review-head{margin-bottom:20px;}
    .product-action a{display:block;}
    .product-action a.btn{max-width: 200px;margin: auto;margin-bottom: 10px;}
    .feature-list {margin-bottom: 20px;}
    .psychic-jobs-head h2, .psychic-jobs-head:first-child h2 {font-size: 20px;}
    .breadcrumb-wrap ul{padding: 13px 15px;}
    .psychic-jobs-head p{font-size:14px;}
    .related-job-outer {margin-bottom: 30px;background-color: #f3f3f3;padding: 15px;}
    .comments-tabs ul.tabs li{font-size:17px;}
    .related-job-content h3 a {font-size: 16px;}
    .related-job-content p {font-size: 14px;}
    .collapse-toggle{font-size:18px;}
    figcaption.figcap-desktop {display: none;}
    figcaption.figcap-mobile {display: block;}
    .content-list ul li ul li a:before {left: 4%;top: 20%;}
    .content-list ul li.link-has-children{width:100%;position: relative;}
    .content-list ul li.link-has-children li{width:49%;}
    .content-list ul li.link-has-children ul{margin-left:0;margin-top:5px;text-align:left;}
    .about-main{padding-right:0;}
    .page-template-template-about .content-list ul li{width:100%;}
    .content-list ul li ul li a {padding-left: 32px;}
    .content-list ul li.link-has-children:after {content: "\f107";font-family: FontAwesome;position: absolute;top: 6px;right: 10px;color: #fff;font-size: 20px;}
    .section-title p {font-size: 15px;}
    .location-list ul li{width:49%}
    .top-psychic-thumb{float:none;margin:auto;margin-bottom:30px;}
    .top-review-content{width:100%;padding-left:0;}
    .rev-main .row {flex-direction: column-reverse;}
    .rev-profile-info{margin-bottom: 30px;}
    .single-rev-des p {font-size: 16px;}
    .site-screenshot-list ul li{width:32.33%;}
    .deals-list-single ul li {background-color: transparent;padding-left:20px !important;}
    .product-des .row {margin-bottom: 30px;}
    .contact-info ul li {padding: 15px 15px 15px 70px;border: 1px solid #ddd;background-color:#fff;border-radius:8px;}
    .contact-info {margin-bottom: 30px;}
    .contact-info ul li .fa{height: 100%;display: flex;align-items: center;justify-content: center;top:0;}
    .product-title.site-name h2 {font-size: 26px;}
    .single-product-wrap h3, .single-product-wrap h2 {font-size: 22px;line-height: 33px;}
    .single-product-wrap table th, .single-product-wrap table td, .single-product-wrap table td p {font-size: 15px;}
    .news-single-main .row [class^="col-"]:nth-child(2){max-width:100%;flex:0 0 100%;-ms-flex:0 0 100%;}
    .rev-info-inner {display: block;}
    .top-psychic-reviews ul li:before{top: 10px;left: 10px;height: 30px;width: 30px;border-radius: 30px;background-color: #bd4bfe;display: flex;align-items: center;justify-content: center;color: #fff;}
    .psychic-rev {margin-left:0;}
    .search-box {position: absolute;right: 100px;top: -35px;}
    .search-results #primary article h2 a{font-size:22px;}
    .psychic-dir-sidebar .search-box{position: static;}
    .about-main h3 {font-size: 20px;}
    .deal-offer .deal-action, .deal-offer .deal-offer-text{width:100%;}
    .deal-offer .deal-offer-text {margin-bottom: 20px;}
    .single-deals .deal-offer .deal-action {text-align: left;}
    .single-deals .deal-offer .deal-action .btn{margin-bottom:0;margin-right: 10px;font-size:17px;}
    .single-deals .deal-offer .deal-action a{vertical-align: middle;}
    .single-product-info .tab-content ul li {display: inline-block;background-color: transparent;}
	.review-content h2{padding:10px;}
	.content-list ul li.link-has-children ul{margin:5px 10px;}

    /*--------------
          Rohit      
    ----------------*/
    .banner-link-text p{
        font-size: 16px;
        line-height: inherit;
    }
    .article-text a,.news-content p,.leading-content p,.single-test ul li,.single-product-wrap table th, .single-product-wrap table td, .single-product-wrap table td p{
        font-size: 16px; 
    }
    


}

@media(max-width:585px){
    .banner-link-text h3 {font-size: 19px;}
    .banner-link-list ul li a{padding:0;}
    .banner-link-list ul li .banner-icon{position: static;height: auto;margin-bottom:20px;}
    .banner-head h2 {font-size: 34px;}
    .banner-head h3 {font-size: 17px;}
    .brand-list ul li {width: 32%;}
    .article-content > a{padding: 12px 20px;padding-right: 55px;}
    .news-wrap, .tips-wrap {padding-bottom: 0;}
    .news-content a {font-size: 20px;}
    .footer-menu-list ul li a{font-size:14px;}
    .footer-head h3, .footer-grid-menu h2.widget-title {font-size: 19px;margin-bottom: 20px;margin-top: 20px;}
    .footer-menu-list .widget {padding-bottom: 0;}
    .copyright-text .textwidget > div > div {font-size: 11px;}
    .leading-head h2 {font-size: 19px;margin-bottom: 30px;}
    .leading-content h3 {font-size: 24px;margin-bottom:10px;}
    .section-head h2 {font-size: 33px;}
    .team-list .team-thumb{float:none;width: 200px;height: 200px;overflow: hidden;border-radius: 260px;margin: auto;margin-bottom:20px;}
    .team-list .team-thumb img{object-fit: cover;object-position: center;height:100%;}
    .team-content{float:none;width:100%;padding-left:0;}
    .team-list {background-color: #f8f8f8;padding: 20px 10px;text-align: center;border-radius: 10px;margin-top: 30px;}
    .team-content h2{text-align: center;}
    .single-news-thumb img {height: 270px;}
    .rating-progress {margin-bottom: 30px;}
    .psychic-jobs-head table th {font-size: 17px;}
    .psychic-jobs-head table td {font-size: 16px;}
    .network-detail-content-list ul li{font-size:14px;}
    .collapse-toggle{font-size:15px;}
    .comments-tabs ul.tabs li{font-size:17px;margin-right:10px;}
    .jobs-comments-wrap {padding: 0px 0;}
    .collapse_accordion .tab-content-inner p{font-size:14px;}
    .collapse_accordion .collapse-content{padding: 15px 20px;}
    .news-inner p, p, .single-news-content ul li, .review-wrap p{font-size:16px;}
    .single-news-title h2 {font-size: 29px;}
    .single-news-content h3.sub-title {font-size: 16px;}
    .contact-form .section-title h2{font-size: 28px;}
    .top-psychic-head h2, .location-list-outer .section-title h2 {font-size: 27px;}
    .rev-main {padding: 40px 25px;}
    .review-list ul.rev-list-main, .rev-form-inner{padding:20px 15px;}
    .deals-content p {font-size: 15px;}
    .deal-content-inner h2{font-size:18px;}
    .deal-action .promo-code {font-size: 18px;}
    .single-deal-faq-wrap {padding: 10px 0;}
    .single-deal-wrap {padding: 40px 0 10px;}
    .deal-offer-text p{margin-bottom:16px;}
    .single-deal-content p, .deal-offer-text p{font-size:15px;}
    .single-deal-content h2, .single-deal-wrap .section-title h2 {font-size: 22px;}
    .deal-offer > div {display: block;width: 100% !important;}
    .deal-offer .deal-action, .deal-offer .deal-action .promo-code{text-align: center;}
    .deal-offer .deal-action .btn {max-width: 180px;}
    .copyright-text .textwidget p, .sitemap a{font-size:14px;}
    .top-footer {padding: 45px 0 40px;}
    .guide-outer ul li a{font-size:15px;}
    .site-screenshot-list ul li {width: 49%;}
    .single-product-wrap h3, .single-product-wrap h2{font-size: 21px;}
    .single-test-content p {font-size: 16px;}
    .single-product-info ul li{font-size: 16px;margin-bottom:0;}
    .single-product-info ul.tabs li{margin-bottom:10px;}
    .news-inner table td h3 {font-size: 19px;}
    .news-inner h1, .news-inner h3, .news-inner h4, .news-inner h5 {font-size: 19px;}
    .single-news-content ol li h2 {font-size: 18px !important;}
    .news-inner ol li:before{top:0;}
    .single-news-content h2{line-height: 30px;}
    .review-content span.guide-published {font-size: 13px;}
    .prev-next-pagination a{font-size:13px;}
    .prev-next-pagination{padding:12px;}
    .psychic-dir-inner ul li, .psychic-dir-inner ol li{font-size:14px;}
    .psychic-dir-inner h2 {font-size: 25px;}
    .psychic-dir-inner h3 {font-size: 20px;}
    .psychic-dir-inner h4 {font-size: 17px;}
    .top-psychics h2 {font-size: 18px;}
    .single-rev-des h2, .single-rev-des h1, .single-rev-des h6 {font-size: 22px;}
    .single-rev-des ul li, .single-rev-des ul li h6{font-size:17px;}
    .not-found header.page-header h1 {font-size: 18px;}
    .not-found header.page-header h2{height: 260px;width: 260px;font-size: 110px;line-height: 260px;}
    .home-btn .btn {padding: 15px;font-size: 18px;min-width: 200px;}
    .not-found header.page-header{padding:40px 15px;}
    .single-deals .deal-offer .deal-action{text-align:left;}
    .error-thumb img {max-width: 100%;}
    .locate-info .row [class^=col-]{max-width:50%;flex:0 0 50%;-ms-flex:0 0 50%;}
    .home-btn .btn {display: block;margin-bottom: 20px;line-height: 14px;}
    .review-head, .review-wrap .row:nth-child(odd) .review-head{max-width:200px;margin:auto;margin-bottom:20px;padding: 0;background-color: transparent;max-width: 100%;}
    .review-wrap .row [class^="col-"]{max-width:100%;flex:0 0 100%;}
    .review-wrap .row{background-color: #f3e4fb;padding: 30px 0;box-shadow:0px 20px 15px -9px rgba(0,0,0,0.1);border-radius:10px;margin:0 0 30px;}
    .review-head h2{color: #bd4bfe;text-align: left;font-size:22px;}
    .review-content p{margin-bottom:0;}
    .review-wrap .row:nth-child(odd){background-color:#e7edff;}
    .review-wrap .row:nth-child(odd) .review-head h2{color:#0035e0;}
	.submit-yourself-form .form-group{margin-bottom:15px;}
	.submit-yourself-form form input.form-control, .submit-yourself-form form select.form-control{height:50px !important;font-size:14px;}
	.submit-yourself-form form textarea, .submit-yourself-form ul li label{font-size:14px;}
	.psychic-dir-wrap {padding: 60px 0 30px;}
}	



@media(max-width:479px){
    .single-news-content h2, .single-news-content h2:first-child {font-size: 21px;}
    .single-product-head .section-title h2 {font-size: 22px;}
    .breadcrumb-wrap ul li:after {content: "|";line-height: 28px;}
    .breadcrumb-wrap ul li{    padding: 0 8px;}
    .online-web-head h2 {font-size: 30px;}
    .product-list-title h2 {font-size: 23px;}
    .breadcrumb-wrap ul li{font-size:18px;line-height: 28px;}
    .guide-list-row [class^="col-"] {max-width: 100%;flex: 0 0 100%;}
    .single-product-head.section-title h2 {font-size: 27px;}
    .breadcrumb-wrap ul{padding: 13px 12px;}
    .comments-tabs ul.tabs li{display: block;background-color: #f3f3f3;padding: 10px;margin-bottom: 10px;width: 100%;}
    .comments-tabs ul.tabs li.tab-link.current{background-color:#bd4bfe;color:#fff;}
    .location-list ul li{width:100%;padding-right:0;}
    .location-list-outer{padding:15px;}
    #xs_review_form_public_data .xs-review-box .xs-review {width: 100%;}
    .video-inner iframe {margin-bottom: 2px;}
    .search-results #primary article h2 a{font-size:19px;} 
    .locate-select form .form-group{max-width:150px;}
    .top-psychic-reviews .psychic-rev {padding: 25px 15px;}
    .psychic-state-tabs a.nav-link{padding-right:15px;}
    .bottom-footer{display:block;}
    .copyright-text .textwidget p{margin-bottom: 5px;}
    .single-test ul li:first-child{position: absolute;left:0;top:0;}
    .single-test ul {position: relative;padding-left: 63px;}
    .single-test ul li .author-name, .single-test ul li{font-size:15px;padding-bottom: 0;}
    .test-thumb {height: 45px;width: 45px;}
    .single-product-wrap h3{margin-bottom:25px;}
    .single-test-content p, .news-inner p, p, .single-news-content ul li, .review-wrap p, .section-title p, .single-product-wrap ul li, .single-product-wrap ol li, .single-news-content ul li, .single-news-content ol li{font-size: 18px !important;line-height: 29px;color:#3e4855 !important;font-family: 'robotoregular';}
    .leading-content p, .product-single .product-name p{color:#fff !important;}
	
}



@media(max-width:420px){
	.submit-yourself-form ul li{width:100%;margin-right:0;display:block;}
	.content-list ul li.link-has-children li{width:100%;}
	
}

@media(max-width:360px){
    
    .breadcrumb-wrap ul{    padding: 18px 12px;}
    .section-title h2 {font-size: 20px;}
    .single-product-info .tab-content p, .single-test-content p, .online-web-head p {font-size: 15px;}
    .psychic-jobs-head h2, .psychic-jobs-head:first-child h2 {font-size: 22px;line-height: 33px;}
    .content-list ul li a{font-size:13px;}
    .prev-next-pagination .alignleft {margin-right: 0;}
    .psychic-dir-inner form{padding:30px 15px;}
    .search-box section#search-3, .search-no-results #primary .search-form{right:-60px;}
    .psychic-dir-wrap .row [class^="col-"] {padding: 0;}
    .deal-action .btn{display:block;}
    .single-deals .deal-offer .deal-action{text-align: center;}
    .locate-info .row [class^=col-]{max-width:100%;flex:0 0 100%;-ms-flex:0 0 100%;}
    .single-deals .deal-offer .deal-action .btn{margin:auto;margin-bottom:10px;}
    .psychic-state-tabs a.nav-link{border:0;margin-bottom:10px;background-color:#f3f3f3;}
    .psychic-state-tabs .nav-tabs{display:block;}
    .psychic-state-tabs a.nav-link.active {background-color: #0035e0;color: #fff;}
	.custom-logo-link img {max-width: 100px;}
	.hamburger span{height:2px;width:30px;}
	.hamburger{height:40px;top:5%;padding:0 15px;}
	.search-box{right:65px;}
	.banner-head h2 {font-size: 26px;}
	.banner-head h3 {font-size: 15px;line-height: 24px;}
	.single-test-content p, .news-inner p, p, .single-news-content ul li, .review-wrap p, .section-title p, .single-product-wrap ul li, .single-product-wrap ol li, .single-news-content ul li, .single-news-content ol li{font-size:16px !important;}
	.banner-link-text h3{margin-bottom:13px;}
	.featured-wrap {padding: 10px 0;}
	.section-head h2 {font-size: 26px;line-height: 35px;}
	.brand-list ul li {width: 48%;margin-bottom: 15px;}
	.article-text a, .news-content p, .leading-content p, .single-test ul li, .single-product-wrap table th, .single-product-wrap table td, .single-product-wrap table td p {font-size: 14px;margin-bottom:7px;}
	.article-text p{margin-bottom:0;}
	.common-padding {padding: 10px 0;}
	.review-content h2 {padding: 3px 0;}
	.leading-content p{line-height:23px;font-size:14px !important;margin-bottom:20px;}
	.banner-link-text p {font-size: 15px !important;}
	.article-thumb img {height: 90px;}
	.article-thumb{height:150px;}
	.news-content p{font-size:14px !important;line-height:22px;}
	.copyright-text .textwidget p {font-size: 14px !important;}
	.menu-header-menu-container{width:220px;}
	.breadcrumb-wrap ul {padding: 10px 12px;width: 100%;}
	.single-news-wrap {padding: 30px 0;background-color: #f8f8f8;}
	.single-test ul li {line-height: 22px;}
	.news-inner h3{line-height:28px;}
	.product-action a.btn{padding:10px 35px;}
	.breadcrumb-wrap ul li{font-size:15px;}
	.online-web-head p {font-size: 14px !important;line-height: 25px;}
	.online-web-head h2 {font-size: 25px;}
	.product-title h2{margin-bottom:20px;}
	.single-product-wrap h3 {margin-bottom: 10px;}
	.single-rating .progress .progress-label{padding-left:10px;}
	.single-test-content p, .news-inner p,  .single-news-content ul li, .single-news-content ol li{font-size:14px !important;line-height:24px;}
	.single-product-wrap h3, .single-product-wrap h2 {font-size: 19px;line-height:27px;}
	.video-inner iframe {height: 220px;}
	.product-content-inner h1 {font-size: 20px;padding-top: 0;color: #bd4bfe;}
	.single-product-wrap ul li, p, .section-title p{font-size: 14px !important;line-height: 24px;}
	.locate-select form {display: block;}
	.locate-select form .form-group{max-width:100%;}
	.locate-select form .form-group:after{display:none;}
	.locate-title h2 {font-size: 19px;}
	.locate-psychic-content h3 {font-size: 16px;}
	.locate-psychic-thumb img {object-fit: cover;height: 140px;object-position: center;}
	.single-tarot-reading .single-rev-des ol li{font-size:14px;}
	.single-rev-des ul li{font-size:15px;margin-bottom:10px;}
	.single-rev-des h2{font-size:19px;line-height:29px;}
	.review-head{margin-bottom:11px;}
	.review-head h2{font-size:20px;}
	.review-wrap p{font-size: 15px !important;line-height: 22px;}
	.psychic-jobs-head h2, .psychic-jobs-head:first-child h2 {font-size: 19px;line-height: 27px;}
	.psychic-jobs-head table td, .main-nav ul li a{font-size:14px;}
	.single-test ul li {font-size: 13px !important;}
	.contact-info ul li h3{font-size:20px;}

	
}

