body,
html {
    overflow-x: hidden;
}

body {
    color: #373738;
    font-family: 'Nunito', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    color: #097bc1;
}

.btn,
a,
button,
img,
ol li,
ul li {
    transition: all .4s ease-out;
}

button:focus:not(:focus-visible) {
    box-shadow: none;
}

.pageheader {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.05);
    border-bottom: solid 1px #eee;
}

.headernav {
    display: flex;
    width: 100%;
    padding: 5px 0;
    justify-content: space-between;
    align-items: center;
}

.headernav .hdright {
    display: flex;
    align-items: center;
}

.main-nav .sitenav {
    display: flex;
}

.main-nav .sitenav li {
    margin-right: 10px;
}

.main-nav .sitenav li a {
    font-size: 1rem;
    font-weight: 600;
    color: #040404;
    padding: 5px 15px;
}

.main-nav .sitenav li a:hover {
    color: #8B6EB8;
}

@media (min-width: 1600px) {
    .pageheader .container {
        max-width: 1520px;
    }
}

/*mobile nav*/

.mobile-nav-toggle {
    position: fixed;
    top: 13px;
    right: 10px;
    background-color: #8B6EB8;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 999999;
}

body.mobile-nav-active .mobile-nav-toggle .fa-close:before {
    font-family: 'FontAwesome';
    content: "\f00d";
}

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 99999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    background: #fff;
    transition: all .4s ease-out;
    height: 100%;
    border-right: solid 2px #ddd;
}

body.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav .logo {
    text-align: center;
    padding: 1rem 10px;
    border-bottom: solid 1px #ddd;
}
.logo1
{
    height:70px;
}

.mobile-nav .sitenav li {
    border-bottom: solid 1px #ddd;
}

.mobile-nav .sitenav li:last-child {
    border-bottom: none;
}

.mobile-nav .sitenav li a {
    display: block;
    padding: 10px 15px;
}

/*mobile nav end*/

main.main {
    padding-top: 60px;
}

.btn {
    min-width: 200px;
    font-size: 1rem;
    border: solid 1px transparent;
    background-color: #fff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
}

.btn-lg {
    padding: 1rem;
    font-size: 1.5rem;
    min-width: 300px;
}

.btn-orange-border {
    /*border: solid 1px #8B6EB8;*/
    background-color: #8B6EB8;
    color:white;
    
}

.btn-orange-border:hover {
    border: solid 1px #8B6EB8;
    color: #fff;
    background-color: #8B6EB8;
}

.btn-white {
    background-color: #fff;
    color: #6f41ef;
}

.btn-white:hover {
    background-color: #8B6EB8;
    color: #fff;
}

.btn-grorng {
    color: #fff;
    background: rgb(255, 80, 6);
    background: -moz-linear-gradient(left, rgba(255, 80, 6, 1) 0%, rgba(255, 151, 41, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(255, 80, 6, 1) 0%, rgba(255, 151, 41, 1) 100%);
    background: #8B6EB8;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8B6EB8', endColorstr='#ff9729', GradientType=1);
}

/*.btn-grorng:hover {*/
/*    color: #fff;*/
/*    background: rgb(255, 151, 41);*/
/*    background: -moz-linear-gradient(left, rgba(255, 151, 41, 1) 0%, rgba(255, 80, 6, 1) 100%);*/
/*    background: -webkit-linear-gradient(left, rgba(255, 151, 41, 1) 0%, rgba(255, 80, 6, 1) 100%);*/
/*    background: linear-gradient(to right, rgba(255, 151, 41, 1) 0%, rgba(255, 80, 6, 1) 100%);*/
/*    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9729', endColorstr='#8B6EB8', GradientType=1);*/
/*}*/

.form-group {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
    display: inline-block;
    vertical-align: top;
}

.homebanner {
    width: 100%;
    position: relative;
    margin-top:10px;
        background-image: linear-gradient(170deg, #f2f8f8 27%, #f2f8f8 10%);
        padding-top:0px;
        padding-bottom:40px;

}

.homebanner .container {
    /*position: absolute;*/
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 30px;
}

.fw-exbold {
    font-weight: 900;
}

.fw-black {
    font-weight: 800;
}

.fw-semi {
    font-weight: 500;
}

.radius10 {
    border-radius: 10px;
}

.radius20 {
    border-radius: 20px;
}

.radius50 {
    border-radius: 50px;
}

.cmnform .form-control {
    height: 46px;
    background-color: #f7faff;
    border-radius: 8px;
    border: solid 1px #bfc1c4;
    font-size: 1rem;
    color: #040404;
}

.form-control::placeholder {
    color: red;
    opacity: 1;
    color: #040404;
}

.form-control:-ms-input-placeholder {
    color: red;
    color: #040404;
}

.form-control::-ms-input-placeholder {
    color: red;
    color: #040404;
}

.zigline {
    background: url(../images/zigzagline.png) no-repeat;
    width: 59px;
    height: 5px;
    display:none;
}

.gpnav li {
    margin-bottom: 20px;
}

.gpnav li .gpbx {
    width: 100%;
    background: #fff;
    border-radius: 100px;
    position: relative;
    padding: 20px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    box-shadow: 0px 50px 140px rgba(36, 33, 181, 0.15);
}

.gpnav li .gpbx .icon {
    width: 60px;
    margin-right: 15px;
}

.gpnav li .gpbx .icon img {
    max-width: 60px;
}

.growpoint {
    position: relative;
    padding-bottom: 100px;
}

.growpoint::before {
    background: url(../images/tlp/lgcirclebg.png) no-repeat center center;
    background-size: 100% 100%;
    position: absolute;
    content: "";
    width: 80%;
    height: 800px;
    left: 0;
    right: 0;
    top: -110px;
    margin: 0 auto;
    z-index: -1;
}

.text-orange {
    color: #8B6EB8;
}

.text-blue {
    color: #6e40ed;
}

.ofndiv {
    position: relative;
    padding: 40px 0;
}

.ofndiv::before,
.ofndiv::after {
    content: "";
    position: absolute;
    height: 100%;
    top: 0;
}

.ofndiv::before {
    background-color: #fffbf9;
    left: 0;
    width: 50%;
}

.ofndiv::after {
    background-color: #f8faff;
    right: 0;
    width: 50%;
    border-left: solid 5px #fff;
}

.ofndiv .container {
    position: relative;
    z-index: 10;
}

.offonlnsec .btnBlock {
    position: relative;
    z-index: 10;
}

.clspnav {
    margin-top: 1.6rem;
}

.clspnav li {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 42px;
}

.clspnav li::before {
    content: "";
    position: absolute;
    left: 0;
    background: url(../images/checkblueicon.png) no-repeat;
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
}

.text-md-end .clspnav li {
    padding-left: 0;
    padding-right: 42px;
}

.text-md-end .clspnav li::before {
    right: 0;
    left: auto;
    background: url(../images/checkredicon.png) no-repeat;
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
}

.vm {
    vertical-align: middle;
}

.stepno {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    background-color: #8B6EB8;
    color: #fff;
    margin-bottom: 1rem;
}

.howorksec {
    position: relative;
    background-color: #f8faff;
    margin: 230px 0;
}

.howorksec::before {
    position: absolute;
    content: "";
    
    background-size: cover;
    width: 100%;
    height: 324px;
    top: -320px;
    left: 0;
}

.howorksec::after {
    position: absolute;
    content: "";
    
    background-size: cover;
    width: 100%;
    height: 172px;
    bottom: -168px;
    left: 0;
}

.purplegrgbg {
    background-color: #ABD6E0;
}
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    width: 100vw;
    height: 100vh;
    background-color: #000;
}
.joinusec {
    position: relative;
}

.joinusec .container {
    position: relative;
    z-index: 10;
}

.trviewbtn {
    padding: 8px 40px;
    border: solid 2px #8B6EB8;
    background-color: #fff;
    border-radius: 50px;
    color: #ff5c0c;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 2.3rem;
    font-size: 20px;
    font-weight: 500;
}

.joinusec::before {
    position: absolute;
    content: "";
    background: url(../images/tlp/shabebg.png) no-repeat center center;
    background-size: 100% 100%;
    width: 100%;
    height: 300px;
}

.joinbx {
    padding: 3rem 1rem;
    position: relative;
    box-shadow: 0px 60px 110px rgba(83, 44, 195, 0.15);
}

.joinbx::before {
    content: "";
    background: url(../images/squareptrn.png) no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.joinbx .btnBlock {
    position: relative;
    z-index: 10;
}

.testimonial {
    position: relative;
}

.testimonial::before,
.testimonial::after {
    position: absolute;
    content: "";
    top: 0;
}

.testimonial::before {
    background: url(../images/tlp/backzig.png) no-repeat;
    width: 137px;
    height: 119px;
    left: 0;
}

.testimonial::after {
    background: url(../images/tlp/backpancil.png) no-repeat;
    width: 162px;
    height: 119px;
    right: 0;
}

.testimonial .container {
    position: relative;
}

.testimonial #counter {
    position: absolute;
    right: 30px;
    bottom: 8px;
    font-weight: 600;
    font-size: 20px;
}

.tm-carousel.owl-carousel .owl-item img {
    width: auto;
    display: inline;
}

.tm-carousel.owl-carousel {
    font-family: 'Poppins', sans-serif;
}

.tm-carousel .tpinfo {
    display: flex;
    width: 100%;
    align-items: center;
}

.tm-carousel .bg-white {
    padding: 30px;
    box-shadow: 0px 0px 150px rgba(36, 33, 181, 0.05);
}

.tm-carousel .tusr {
    width: 120px;
    height: 120px;
    border: none;
}

.tm-carousel .tpinfotxt {
    width: calc(100% - 120px);
    padding-left: 20px;
}

.navtheme.owl-carousel .owl-nav button {
    padding: .6rem 1rem !important;
    border-radius: 50px;
    border: solid 1px #8B6EB8;
    background-color: #fff;
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
}

.navtheme.owl-carousel .owl-nav button span {
    width: 45px;
    height: 13px;
    display: inline-block;
    vertical-align: middle;
    text-indent: -99999px;
}

.navtheme.owl-carousel .owl-nav .owl-prev span {
    background: url(../images/leftarrow.png) no-repeat;
}

.navtheme.owl-carousel .owl-nav .owl-next span {
    background: url(../images/rightarrow.png) no-repeat;
}

.navtheme.owl-carousel .owl-dots {
    display: flex;
    width: calc(100% - 250px);
    margin-top: -33px;
    position: absolute;
    right: 70px;
    justify-content: space-between;
}

.navtheme.owl-carousel .owl-dots::before {
    content: "";
    width: 99%;
    height: 2px;
    background-color: #8B6EB8;
    position: absolute;
    top: 8px;
}

.navtheme.owl-carousel .owl-dots button {
    position: relative;
    z-index: 10;
}

.navtheme.owl-carousel .owl-dots button {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #fff;
    border: solid 2px #8B6EB8;
    display: inline-block;
    vertical-align: middle;
}

.navtheme.owl-carousel .owl-dots button span (display:none;
) .lh40 {
    line-height: 35px;
}

.featuresec {
    position: relative;
    padding: 100px 0 50px;
    margin: 100px 0 50px;
}

.featuresec::before,
.featuresec::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    content: "";
    background: rgb(91, 46, 211);
    background: -moz-linear-gradient(left, rgba(91, 46, 211, 1) 0%, rgba(119, 72, 250, 1) 100%);
    background: -webkit-linear-gradient(left, rgba(91, 46, 211, 1) 0%, rgba(119, 72, 250, 1) 100%);
    background: linear-gradient(to right, rgba(91, 46, 211, 1) 0%, rgba(119, 72, 250, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5b2ed3', endColorstr='#7748fa', GradientType=1);
}

.featuresec::before {
    top: -60px;
    clip-path: ellipse(60% 100% at 50% 100%);
}

.featuresec::after {
    bottom: -60px;
    clip-path: ellipse(60% 60% at 50% 20%);
}

.sqrbx {
    position: relative;
}

.sqrbx.top {
    margin-top: -50px;
    position: relative;
}

.sqrbx.ptrn::before {
    content: "";
    background-color: #ff6611;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: -80px;
}

.sqrbx.top::before {
    content: "";
    background-color: rgba(255, 255, 255, 0.10);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: absolute;
    right: -90px;
    bottom: 90px;
}

.sqrbx.ptrn .bg-white {
    position: relative;
    z-index: 10;
}

.tusr {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    border: solid 8px #f1eff8;
}

.bg-lightgray {
    background-color: #fff6f2;
}

.shadow-hg {
    box-shadow: 0px 50px 140px rgba(36, 33, 181, 0.15);
}

.abstep {
    font-size: 2.5rem;
    font-weight: 900;
    color: #dddddf;
    position: absolute;
    top: -30px;
}

.abcrprtn {
    position: relative;
}

.abcrprtn::before {
    content: "";
    position: absolute;
    left: -50px;
    top: 10px;
    border-radius: 50%;
    width: 600px;
    height: 600px;
    background: #f7faff;
    background: -moz-linear-gradient(left, #f7faff 0%, #ffffff 100%);
    background: -webkit-linear-gradient(left, #f7faff 0%, #ffffff 100%);
    background: linear-gradient(to right, #f7faff 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7faff', endColorstr='#ffffff', GradientType=1);
}

.aboutussec .abtbx {
    position: relative;
    margin-bottom: 2rem;
    width: 85%;
}

.aboutussec .abtbx.second {
    margin-left: 15%;
}

.whyusec {
    position: relative;
    background-color: #f8faff;
    margin: 100px 0;
}

.whyusec::before {
    position: absolute;
    content: "";
    background: url(../images/tlp/whycurvetopbg.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 176px;
    top: -150px;
    left: 0;
}

.whyusec::after {
    position: absolute;
    content: "";
    background: url(../images/tlp/whycurvebottombg.png) no-repeat;
    background-size: cover;
    width: 100%;
    height: 202px;
    bottom: -180px;
    left: 0;
}

.btnBlock .btn-default {
    padding: .4rem 1rem;
    border-radius: 50px;
    border: solid 1px #8B6EB8;
    display: inline-block;
    vertical-align: top;
}

.brand-carousel .item {
    padding: 15px;
}

.brand-carousel.owl-carousel .owl-item img {
    width: auto;
    display: inline;
    max-height: 48px;
}

.pagefooter {
    position: relative;
}

.pagefooter::before {
    position: absolute;
    content: "";
    /*background: url(../images/footerptrnbg.png) no-repeat center 60px;*/
    background-size: contain;
    width: 100%;
    height: 100%;
}

.pagefooter .container {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.pagefooter .sitecontact {
    padding: 2rem 0;
}

.footerform .form-label {
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.footerform .form-control {
    font-size: 1rem;
    height: 50px;
    border-radius: 8px;
    border: solid 1px #fff;
}

select.form-control {
    cursor: pointer;
}

.footerform .form-group .btn {
    height: 50px;
}

.fmcnav {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.fmcnav li {
    width: auto;
    padding-right: 15px;
}

.fmcnav li .fmcbx {
    display: flex;
    width: 100%;
    align-items: center;
}

.fmcnav li .fmcbx .icon {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.fmcnav li .fmcbx .ftxt {
    width: calc(100% - 50px);
    padding-left: 15px;
}

.fmcnav li a {
    color: #fff;
}

.copyright {
    border-top: solid 1px #835fe6;
    padding: 1rem 0;
}

.snav {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    margin: 0;
}

.snav li {
    margin: 0 5px;
}

.snav li a {
    display: flex;
    width: 28px;
    height: 28px;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #6e40ed;
}

.snav li a:hover {
    background-color: #8B6EB8;
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    z-index: 999;
    width: 26px;
    height: 48px;
    right: 25px;
    background: url(../images/rocket.png) no-repeat 50% -62px;
    cursor: pointer;
    display: none;
}

/*plp page*/

.btnshadow {
    box-shadow: 0px 20px 90px rgba(255, 151, 41, 0.3)
}

.homebanner .cmnform .form-label {
    font-weight: 600;
    display: block;
}

.homebanner .cmnform .form-check-label {
    font-weight: 600;
    cursor: pointer;
}

.homebanner .cmnform .form-group {
    margin-bottom: 8px;
}

.homebanner .cmnform .form-group .form-control {
    height: 40px;
}

.qualitysec {
    margin-top: 30px;
}

.qualitysec .icon {
    min-height: 220px;
}

.betteredusec {
    background: url(../images/plp/eudbg.png) no-repeat center center;
    background-size: contain;
    width: 100%;
    height: 941px;
    position: relative;
}

.betteredusec .container {
    position: relative;
    height: 70%;
}

.betteredusec .edubtn {
    position: absolute;
    right: 350px;
    bottom: 0;
}

.bggray {
    background-color: #f7faff;
}

.toptutorplpsec {
    position: relative;
    background-color: #f5f1eb !important;
    margin: 90px 0 50px;
    padding:70px 10px 70px 10px;
}

.toptutorplpsec::before {
    position: absolute;
    content: "";
    /*background: url(../images/plp/curvebluetopbg.png) no-repeat;*/
    background-size: cover;
    width: 100%;
    height: 210px;
    top: -200px;
    left: 0;
    display:none;
}

.toptutorplpsec::after {
    display:none;
    position: absolute;
    content: "";
    /*background: url(../images/plp/curvebluebottombg.png) no-repeat;*/
    background-size: cover;
    width: 100%;
    height: 156px;
    bottom: -150px;
    left: 0;
}

.plptutorslide .toptutor-carousel .owl-item .item {
    padding: 10px;
}

.plptutorslide .toptutor-carousel.owl-carousel .owl-dots {
    display: none;
}

.plptutorslide .toptutor-carousel.owl-carousel .owl-nav {
    margin-top: 1.5rem;
    text-align: center;
}

.academsec .bg-white .icon {
    min-height: 70px;
}

.academsec .acdbx {
    position: relative;
    border-bottom: solid 6px transparent;
    transition: all 0.4s ease;
    height: 100%;
}

.academsec .acdbx:hover {
    border-bottom: solid 6px #8B6EB8;
}

.plptm-carousel.owl-carousel .owl-item img {
    width: auto;
}

.dottheme.owl-carousel .owl-dots {
    text-align: center;
    margin-top: 2rem;
}

.dottheme.owl-carousel .owl-dots button {
    position: relative;
    z-index: 10;
    margin: 0 5px;
}

.dottheme.owl-carousel .owl-dots button {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ebeff9;
    border: solid 2px transparent;
    display: inline-block;
    vertical-align: middle;
}

.dottheme.owl-carousel .owl-dots button.active {
    border: solid 2px #bab9d6;
    background-color: #fff;
}

.dottheme.owl-carousel .owl-dots button span (display:none;
) .plpabpoint {
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.plpabpoint li {
    display: flex;
    width: 100%;
    margin-bottom: 3rem;
}

.plpabpoint li .icon {
    width: 120px;
}

.plpabpoint li .content {
    width: calc(100% - 120px);
    padding-left: 20px;
}

.plpadbanner {
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    background-color: #f0edf8;
    margin-top: 100px;
    position: relative;
    color: #696479;
}

.plpadbanner::after {
    background: url(../images/bookfree.png) no-repeat;
    background-size: contain;
    width: 50%;
    height: 280px;
    content: "";
    position: absolute;
    right: 0;
    top: -85px;
}

.joinbx .row {
    position: relative;
    z-index: 10;
}

.howgetutorsec {
    clip-path: polygon(0% 5%, 100% 0%, 100% 100%, 0% 100%);
    margin-top: 0px;
    padding: 130px 0 80px;
}

.plpfooter .footerform .form-control {
    border-bottom: solid 5px #d7c8ff;
}

.ftr-formcheck {
    margin-top: 13px;
}

.footerform .ftr-formcheck .form-check-label {
    font-weight: 600;
    cursor: pointer;
}

.form-check-input:checked[type=radio] {
    background: #8B6EB8;
    box-shadow: none;
    border-color: #8B6EB8;
}

.fixbtntalk {
    position: fixed;
    top: 50%;
    transform: rotate(-90deg);
    left: -30px;
    min-width: inherit !important;
    padding: 3px 10px;
    font-weight: 400;
    margin-top: -50px;
    z-index: 99;
    font-size: 15px;
    margin-bottom: 0;
    border-radius: 3px;
    border: none;
}

.plpwhyusec {
    position: relative;
}

.plpwhyusec .container {
    position: relative;
    z-index: 10;
}

.plpwhyusec::after {
    content: "";
    background: url(../images/plp/circleptrn.png) no-repeat;
    width: 494px;
    height: 510px;
    position: absolute;
    right: 0;
    top: 90px;
}

.tlptm .tm-carousel .bg-white {
    height: 100%;
}

.tlptm .tm-carousel .tpinfo {
    width: 60%;
    margin: 0 auto;
}

.fs14 {
    font-size: 14px;
}

.plptestimonial .tm-carousel .bg-white {
    min-height: 200px;
}

.showquerywidget .backbgoverlay {
    display: block;
}

.backbgoverlay {
    background-color: rgba(0, 0, 0, .55);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
}

.backbgoverlay {
    cursor: url(../images/close.png), auto;
}

.querywidget #widgetForm {
    position: fixed;
    width: 0;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999999999;
    box-shadow: 0 0 20px rgba(0, 0, 0, .15);
    transition: all .6s;
}

.showquerywidget .querywidget #widgetForm {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    width: 300px;
    right: 0;
}

.querywidget #widgetForm label {
    display: block;
}

.querywidget #widgetForm .form-check-label {
    cursor: pointer;
}

.social_fixed_at_bottom {
    background-color: #fff;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    position: fixed;
    width: 100%;
    border-top: solid 1px #eee;
    padding: 13px;
}

.fixbotomnav {
    display: flex;
    width: 100%;
    margin: 0;
    align-items: center;
    justify-content:center;
}

.fixbotomnav li {
    width: 110px;
    text-align: center;
}

.fixbotomnav li:first-child {
    text-align: center;
}

.error {
    color: red;
    font-size: 12px;
}