/*
 Author: Kapil Kankadiya
 @ wna infotech
*/

/*---------------------------------------------------------------------*/
/* Global Styles
/*---------------------------------------------------------------------*/
body, html {
    font-family: 'Poppins', sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    color: #07253F;
    font-size: 1rem;
}
body.home{
    padding-top: 70px
}

a {
    color: #009ede;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
button:focus,
a:focus {
    outline: none;
}
a:active {
    text-decoration: none;
}
img{
    max-width: 100%;
}
.transition-effect {
    transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.form-control:focus{
    box-shadow: none;
}
textarea{
    resize: none;
}
.gradient-line{
    height: 8px;
    display: block;
    background-image: linear-gradient(to right, #b7cb21 0%, #009ede 100%);
}
.space {
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 10px 0;
}
.w-10{
    width: 10% !important;
}
.w-15{
    width: 15% !important;
}
.w-20{
    width: 20% !important;
}
.top-0 {
    top: 0 !important;
}
.site-wrapper {
    margin: auto;
    min-height: 50vh;
}

/* Section Title */
.section-title {
    margin-bottom: 45px;
}
.section-title h2 {
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h4 {
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    color: #009ede;
}

.gutters-5 {
    margin-right:-5px;
    margin-left: -5px;
}
.gutters-5 > .col, 
.gutters-5 > [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}

/* Button */
.btn,
.btn:hover{
    transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
}
.btn.focus,
.btn:focus{
    box-shadow: none;
}
.btn-link{
    color: #009ede;
    font-size: 12px;
}
.btn-link:hover{
    color: #009ede;
}
.btn-link:hover i{
    margin-left: 5px;
}
.btn-link-gray{
    color: rgba(30,32,31,0.5);
    font-size: 12px;
}
.btn-link-gray:hover{
    color: rgba(30,32,31,0.8);
    text-decoration:underline;
}

.btn-theme {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 35px;
    padding: 10px 35px;
    border: none;
    background-color: #009ede;
    background-image: linear-gradient(109deg, #b7cb21 0%, #009ede 100%);
}
.btn-theme:hover {
    color: #fff;
    background-color: #009ede;
    background-image: linear-gradient(-109deg, #b7cb21 0%, #009ede 100%);
}
.btn-theme-alt {
    background: transparent;
    border: 2px solid #009ede;
    color: #009ede;
    font-weight: bold;
}
.btn-theme-alt:hover {
    background: #009ede;
    color: #fff;
}
.btn-white-alt {
    background: transparent;
    border: 2px solid #fff;
    color: #ffffff;
    font-size: 12px;
    font-weight: 300;
    border-radius: 35px;
    padding: 10px 35px;
}
.btn-white-alt:hover {
    color: #fff;
    background-color: #009ede;
    background-image: linear-gradient(109deg, #b7cb21 0%, #009ede 100%);
}
.btn-outline-primary {
    border-radius: 35px;
    color: #4d5150;
    border:2px solid #009ede;
}
.btn-outline-primary:hover {
    color: #fff;
    background-color: #009ede;
    border-color: #009ede;
}
.btn-secondary {
    color: #fff;
    font-size: 12px;
    font-weight: 300;
    border-radius: 35px;
    padding: 10px 35px;
    background-color: #525252;
    border-color: #525252;
}


.lg-btn {
    font-size: 24px;
    padding: 15px 30px;
}
.md-btn {
    font-size: 18px;
    padding: 12px 30px;
}
.sm-btn {
    font-size: 16px;
    padding: 6px 30px;
}
.xs-btn {
    font-size: 14px;
    padding: 4px 30px;
}
.btn-wide{
    padding-left: 60px;
    padding-right: 60px;
}

.btn-loader{
    position: relative;
    overflow: hidden;
    pointer-events: none;
}
.btn-loader::before {
    content: '';
    background: rgba(0,158,222,1);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}
.btn-loader::after {
    content: '';
    background: url('../images/oval.svg');
    position: absolute;
    left: 50%;
    top: 50%;
    width: 38px;
    height: 38px;
    margin-top: -18px;
    margin-left: -18px;
}
.text-decoration-line{
    text-decoration: underline;
}
.add-more{
    color: #4d5150;
    font-size: 12px;
    font-weight: 700;
}
.add-more:hover{
    color: #009ede;
}
.add-more img,
.add-more svg{
    margin-right: 5px;
}


/*Breadcrumb*/
.breadcrumb{
    background: transparent;
    margin-bottom: 5px;
}
.breadcrumb .breadcrumb-item + .breadcrumb-item:before{
    color: #fff;
}
.breadcrumb li,
.breadcrumb li a{
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}
.breadcrumb li a:hover{
    color: #009ede;
}


/*---------------------------------------------------------------------*/
/* Loader
/*---------------------------------------------------------------------*/
.section-loader{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    z-index: 9999999;
     background-color: #009ede;
    background-image: linear-gradient(109deg, #b7cb21 0%, #009ede 100%);
}
.section-loader .loader {
    display: inline-block;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); }
}



.site-header{
    background: #fff;
}
.navbar-brand{
    max-width: 150px
}
.navbar .navbar-nav .nav-link {
    color: #838786;
    font-size: 16px;
    font-weight: 400;
    padding-left: 15px;
    padding-right: 15px;
}
.navbar-right-side{
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
}
.navbar-right-side .btn-link{
    font-size: 16px;
}
.site-footer{

}
.site-footer .footer-top-gradient{
    height: 8px;
    background-image: linear-gradient(to right, #b7cb21 0%, #009ede 100%);
}
.site-footer .site-info{
    padding: 75px 50px;
}
.site-footer .widget-title{
    color: #838786;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
.site-footer .menu{
    list-style: none;
    padding-left: 0;
}
.site-footer .menu .nav-link{
    padding: 0;
    margin-bottom: 25px;
    color: #838786;
    font-size: 18px;
    font-weight: 400;
}
.site-footer .input-group .form-control{
    height: 70px;
    color: #838786;
    font-size: 18px;
    font-weight: 400;
    border: 1px solid #d8dad8;
}
.site-footer .input-group .btn{
    font-size: 18px;
    font-weight: 700;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}
.copyright{
    color: #a6aaa8;
    font-size: 12px;
    font-weight: 400;
    margin-top: 35px;
}
.back-to-top{
    text-align: right;
}
.back-to-top a{
    width: 81px;
    height: 81px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 4px;
    border: 1px solid #d8dad8;
    background-color: #ffffff;
    display: inline-block;
    margin-top: 45px;
    text-align: center;
}
.back-to-top a svg{
    margin-top: 30px;
}
.back-to-top a:hover{
    background-color: #009ede;
    background-image: linear-gradient(-109deg, #b7cb21 0%, #009ede 100%);
}
.back-to-top a:hover svg path{
    stroke: #fff;
}

.test-drive-modal .modal-content{
    border:none;
}
.test-drive-modal .modal-body{
    padding: 0;
    background-image: linear-gradient(180deg, #b7cb21 0%, #009ede 180%);
}
.test-drive-modal .form-wrap {
    background: #fff;
    padding: 60px;
    min-height: 100%;
}
.test-drive-modal h3{
    color: #4d5150;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
}
.test-drive-modal .theme-form .btn{
    margin-top: 50px;
}
.test-drive-modal .theme-form .btn-forgot{
    font-size: 12px;
    margin-top: 0;
    text-decoration: underline;
}
.test-drive-modal .close {
    background-color: #009ede;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    opacity: 1;
    color: #fff;
    z-index: 99;
    font-weight: 500;
    position: absolute;
    right: -12px;
    top: -12px;
}
.theme-form label{
    color: #4d5150;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
}
.theme-form .form-control{
    border: 1px solid #d8dad8;
    background-color: #f6f7f6;
    height: 48px;
    color: #a6aaa8;
    font-size: 12px;
    font-weight: 400;
}
.theme-form textarea.form-control{
    height: auto;
}
.theme-form-light .form-group{
    margin-bottom: 20px;
}
.theme-form-light label{
   color: #838786;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
}
.theme-form-light label.error{
    color: #B00020;
    display: block;
}
.theme-form-light .form-control{
    border: 1px solid #d8dad8;
    height: 48px;
    color: #a6aaa8;
    font-size: 12px;
    font-weight: 400;
}
.theme-form-light textarea.form-control{
    height: auto;
}
.theme-form .form-group{
    margin-bottom: 20px;
}
.theme-form-light .question{
    float: right;
}
label.btn-file-upload.btn-link{
    color: #009ede;
    font-size: 12px;
    font-weight: 400;
}
.test-drive-left{
    padding: 75px;
    text-align: center;
}
.test-drive-left h2{
    margin-top: 15px;
    color: #ffffff;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
}
.test-drive-left p{
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}
.test-drive-modal .mobile-gradient{
    display: none;
}
.modal-content{
    border-radius: 0;
}
.modal-md{
    max-width: 650px;
}
.modal-600{
    max-width: 600px;
}
.thankyou-modal{

}
.thankyou-modal .top-gradient{
    height: 3px;
    background-image: linear-gradient(to right, #b7cb21 0%, #009ede 100%);
}
.thankyou-wrap{
    padding: 80px 100px;
}
.thankyou-wrap h2{
    color: #4d5150;
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 15px;
}
.thankyou-wrap p{
    color: #838786;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 50px;
}
.thankyou-wrap .btn{
    margin-top: 50px;
}

.hero-section{
    background-image: linear-gradient(129deg, #b7cb21 0%, #009ede 100%);
    padding: 75px 75px 330px 75px;
}
.hero-section h1{
    color: #ffffff;
    font-size: 52px;
    font-weight: 900;
    line-height: 56px;
}
.hero-section p{
    color: #ffffff;
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 0;
}
.hero-section p.small{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
}
.hero-section .action{
    margin-top: 25px;
}
.hero-section .action .btn{
    min-width: 255px;
    margin-right: 25px;
}
.hero-section .action .btn:last-child{
    margin-right: 0;
}
.video-section{
    position: relative;
}
.video-section .video-wrap{
    position: relative;
    top: -50%;
}
.video-section .video{
    width: 100%;
}
.video-section .video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video-section .video-controls span.button {
    width: 100px;
    height: 100px;
    display: block;
    text-align: center;
    background-size: 100%;
    border-radius: 100%;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.16);
    background-image: linear-gradient(133deg, #b7cb21 0%, #009ede 100%);
}
.video-section .video-controls span.button span{
    border: 0;
    margin-top: 30px;
    margin-left: 3px;
    display: inline-block;
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 36px;
    border-color: transparent transparent transparent #fff;
    transition: 100ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 18px 0 18px 30px;
}
.video-section .video-controls span.button.pause span {
    transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    /*opacity: 0;*/
    border-style: double;
    border-width: 0px 0 0px 30px;
}
.video-section .video-controls span.button.pause {
    transition: opacity 0.6s;
    -webkit-transition: opacity 0.6s;
    opacity: 0;
}
.video-section .video-wrap:hover .video-controls span.button{
    opacity: 1;
    transition: opacity 0.1s;
    -webkit-transition: opacity 0.1s;
}

.communicate-section{
    background-color: #00789c;
    padding: 75px;
}
.deliver-section .text-side,
.report-section .text-side,
.communicate-section .text-side{
    padding: 0 10% 0 2%;
}
.text-image-section h2{
    color: #ffffff;
    font-size: 60px;
    font-weight: 900;
}
.text-image-section h3{
    color: #ffffff;
    font-size: 40px;
    font-weight: 900;
}
.text-image-section p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}
.manage-section{
    padding: 75px;
}
.manage-section .text-side{
    padding: 0 10% 0 2%;
}
.deliver-section h3,
.manage-section h3,
.deliver-section h2,
.manage-section h2{
    color: #b7cb21;
}
.deliver-section p,
.manage-section p{
    color: #838786;
}
.report-section{
    background-color: #009ede;
    padding: 75px;
}
.deliver-section{
    padding: 75px;
}

.package-section{
    padding-top: 125px;
    padding-bottom: 100px;
}
.top-content{
    text-align: center;
    margin-bottom: 75px;
}
.top-content h2{
    color: #b7cb21;
    font-size: 60px;
    font-weight: 900;
    line-height: 75px;
    margin-bottom: 20px;
}
.top-content p{
    color: #4d5150;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}
.package-box{
    text-align: center;
    padding-left: 12%;
    padding-right: 12%;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-bottom: 25px;
}
.package-box h4{
    color: #b7cb21;
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 15px;
}
.package-box h4 small{
    display: block;
    font-size: 22px;
}
.package-box p{
    color: #4d5150;
    font-size: 16px;
    font-weight: 400;
}
.package-box .price{
    margin-bottom: 20px;
    min-height: 110px;
}
.package-box .price p{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
}
.package-box .price span{
    color: #899b00;
    display: block;
    font-size: 62px;
    font-weight: 400;
    line-height: 62px;
}
.package-box .price span sup{
    font-size: 25px;
    font-weight: 300;
    top: -25px;
    margin-right: 5px;
}
.package-box .sub-title{
    margin-top: 20px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}
.package-box li{
    color: #4d5150;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
}
.package-box ul li:before{
    /*content: '✓';*/
    content: '\2713';
    color: #b7cb21;
    margin-right: 10px;
    font-weight: 900;
}
.package-box .btn{
    border-color: #b7cb21;
}
.package-box .btn:hover{
    border-color: #b7cb21;
    background: #b7cb21;
}
.package-box .price .month{
    color: #4d5150;
}
.package-box.system{
    background-image: linear-gradient(180deg, #b7cb21 0%, #009ede 100%);
}
.package-box.system h4{
    color: #fff;
}
.package-box.system p{
    color: #fff;
}
.package-box.system .price .month,
.package-box.system .price span{
    color: #fff;
}
.package-box.system  li{
    color: #fff;
}
.package-box.system ul li:before{
    color: #fff;
}
.package-box.system .btn{
    color: #fff;
    border-color: #fff;
}
.package-box.system .btn:hover{
    color: #fff;
    border-color: #009ede;
    background: #009ede;
}
.package-box.universal h4{
    color: #009ede;
}
.package-box.universal .price span{
    color: #009ede;
}
.package-box.universal ul li:before{
    color: #009ede;
}
.package-box.universal .btn{
    border-color: #009ede;
}
.package-box.universal .btn:hover{
    color: #fff;
    border-color: #009ede;
    background: #009ede;
}

/*Dashboard page*/
.left-bar{
    position: fixed;
    left: 0;
    top: 0;
    z-index: 98;
    max-width: 280px;
    width: 280px;
    min-height: 100vh;
    background: #fff;
}
.left-bar .logo{
    padding: 20px;
}
.left-menu{
    height: calc(100vh - 75px);
    overflow-y: auto;
}
.left-menu .nav-item .nav-link{
    color: #a6aaa8;
    font-size: 15px;
    font-weight: 400;
    line-height: 16px;
    padding: 20px 25px 20px 55px;
    border-left: 5px solid transparent;
    position: relative;
}
.left-menu .nav-item .nav-link img{
    filter: grayscale(100%);
    object-fit: cover;
}
.left-menu .nav-item .nav-link:hover img{
    filter: grayscale(0);
}
.left-menu .nav-item .nav-link .icon{
    width: 30px;
    margin-right: 5px;
    text-align: center;
    display: inline-block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%)
}
.left-menu .nav-item.active .nav-link,
.left-menu .nav-item .nav-link:hover{
    color: #1a1d1d;
    border-color: #009EDE;
}
.left-menu .nav-item.mobile{
    display: none;
}
.left-menu .submenu .nav-item .nav-link{
    border-left: none;
}
.left-menu .submenu .nav-item .nav-link img{
    filter: grayscale(0);
}
.lert-bar-toggle{
    display: none;
}
.dashboard-section{
    background-color: #fafbfc;
    padding-left: 280px;
    min-height: 100vh;
    padding-bottom: 100px;
}
.navbar-dashboard-right .dropdown-toggle:after{
    display: none;
}
.navbar-dashboard-right .dropdown-menu-right{
    right: -25px;
    margin-top: 15px;
}
.navbar-dashboard-right .dropdown-menu{
    padding: 0;
    margin: 10px 0 0 0;
    border:none;
    border-radius: 0;
    min-width: 250px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.2);
}
.navbar-dashboard-right .dropdown-menu:after {
    bottom: 100%;
    right: 37px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(255, 255, 255, 0);
    border-bottom-color: #fff;
    border-width: 12px;
    margin-left: -12px;
}
.navbar-dashboard-right .dropdown-footer,
.navbar-dashboard-right .dropdown-header {
    color: #4d4f5c;
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    background: #fff;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.navbar-dashboard-right .dropdown-footer a{
     font-size: 13px;
}
.navbar-dashboard-right .dropdown-footer a:hover{
    text-decoration: underline;
    color: #009ede;
}
.navbar-dashboard-right .dropdown-item{
    padding: 0;
    border-top: 1px solid #f1f1f3;
}
.navbar-dashboard-right .dropdown-item a {
    background-color: #fafafa;
    color: #4d4f5c;
    font-size: 13px;
    font-weight: 500;
    display: block;
    line-height: 20px;
    padding:15px 40px;
}
.navbar-dashboard-right .dropdown-item a span{
    font-size: 10px;
    font-weight: 400;
    display: block;
}
.navbar-dashboard-right .notification .dropdown-item a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 15px;
}
.dashboard-space{
    padding: 30px 100px 0 100px;
}
.box-title{
    color: #4d5150;
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 15px;
}
.box-title .right-side{
    float: right;
}
.box-title .right-side + .right-side{
    margin-right: 20px;
}
.box-title .right-side a{
    color: #4d5150;
    font-size: 18px;
    font-weight: 300;
}
.box-title .right-side a:hover{
    color: #009EDE;
}
.box-sub-title{
    color: #4d5150;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
}
.link-section{
    margin-bottom: 50px;
}
.icon-box{
    text-align: center;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 15px 5px;
    background-color: #ffffff;
    margin-bottom: 30px;
    min-height: 178px;
}
.icon-box a{
    display: block;
}
.icon-box span{
    display: block;
    color: #1a1d1d;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}
.icon-box img{
    max-width: 80px;
}
.icon-box:hover {
    box-shadow: 0 0 6px rgba(0, 158, 222, 0.95);
}
.icon-box:hover img{
    filter:hue-rotate(120deg);
}
.icon-box:hover span{
    color: #009ede;
}
.chart-report-section{
    margin-bottom: 40px;
}
.chart-box{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
}

.dashboard-box{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    padding: 20px;
    background-color: #ffffff;
}
.chart-box h3,
.dashboard-box h3{
    color: #838786;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    margin-bottom: 30px;
}
.chart-box h3 img,
.dashboard-box h3 img {
    margin-right: 10px;
}
.chart-box h3 small,
.dashboard-box h3 small{
    color: #d8dad8;
    font-size: 14px;
    font-weight: 400;
    margin-left: 10px;
}
.status-box {
    margin-top: 10px;
    margin-bottom: 15px;
}
.status-box .number{
    color: #4d5150;
    font-size: 52px;
    font-weight: 300;
    display: block;
    line-height: 50px;
}
.status-box .number .badge{
    border-radius: 35px;
    background-color: #b7cb21;
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    vertical-align: top;
    padding-left: 8px;
    padding-right: 8px;
}
.status-box .number .badge.red{
    background-color: #f55567;
}
.status-box p{
    color: #a6aaa8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.status-box p span{
   width: 18px;
    height: 8px;
    display: inline-block;
    border-radius: 8px;
    background-color: #b7cb21;
}
.status-box p span.blue{
    background-color: #009ede;
}
.status-box .number .small{
    color: #a6aaa8;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    vertical-align: top;
    top: 0;
}
.status-box-small .number{
    color: #4d5150;
    font-size: 22px;
    font-weight: 300;
}
.status-box-small p{
    color: #a6aaa8;
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
}
.sms-box,
.new-customers-box,
.online-forms-box{
    margin-bottom: 30px;
}
.online-forms-box hr {
    margin-bottom: 30px;
}
.emails-box{
    height: 100%;
}
.theme-form label.error{
    color: #dc3545;
    font-weight: 400;
}
.dashboard-inner-section{
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    background-color: #ffffff;
}
.dashboard-inner-left{
    padding: 60px;
    border-right: 1px solid #d8dad8;
    height: 100%;
}
.dashboard-inner-right{
    padding: 60px;
    height: 100%;
}

/*.account-section .form-left{
    padding: 60px;
    border-right: 1px solid #d8dad8;
}*/
.account-section .btn{
    margin-top: 75px;
}
/*.account-section .form-right{
    padding: 60px;
}*/
.account-section .btn-cancel{
    color: #a6aaa8;
    font-size: 12px;
    font-weight: 300;
    text-decoration: underline;
    margin-left: 15px;
}
.account-section h5{
    color: #4d5150;
    font-size: 18px;
    font-weight: 300;
}
.campaign-section h5{
    color: #4d5150;
    font-size: 18px;
    font-weight: 300;
    margin-top: 60px;
}
.campaign-section .btn-link-gray+.btn-link-gray,
.campaign-section .btn-link+.btn-link{
    margin-left: 10px;
}
.campaign-section .campaign-list-wrap{
    border-radius: 4px;
    border: 1px solid #d8dad8;
    background-color: #ffffff;
    min-height: 450px;
    margin-bottom: 50px;
    padding: 15px;
}
.campaign-list-title{
    color: #4d5150;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}
.campaign-list li{
    border-bottom: 1px solid #d8dad8;
    padding-top: 10px;
    padding-bottom: 10px;
}
.campaign-list .media{
    position: relative;
    padding-right: 25px;
}
.campaign-list .remove{
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.campaign-list h6{
    color: #4d5150;
    font-size: 12px;
    font-weight: 700;
}
.campaign-list p{
    color: rgba(77,81,80,0.5);
    font-size: 11px;
    font-weight: 400;
    margin-bottom: 10px;
}
.campaign-list p.status{
    font-size: 12px;
    margin-bottom: 0;
}
.campaign-list p.status strong{
    font-weight: 700;
}
.tooltip.show{
    opacity: 1;
}
.tooltip-inner{
    background: #fff;
    color: #555;
    padding: 10px;
    font-size: 12px;
    text-align: left;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.25);
}
.bs-tooltip-top .arrow:before{
    border-top-color: #fff;
}
.tooltip-inner span{
    color: #000;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}
.tooltip-inner .list-unstyled{
    margin: -10px;
}
.tooltip-inner .list-unstyled li{
    color: #4d4f5c;
    font-size: 10px;
    font-weight: 400;
    padding: 5px 15px;
    border-bottom: 1px solid #fff;
    background-color: #fafafa;
}
.tooltip-inner .list-unstyled li:last-child{
    border-bottom: none;
    padding-bottom: 10px;
}
.main-menu{
    width:260px;
    left: 0;
    display: block;
    position: relative; 
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.main-menu.is-hide{
    left: -290px;
    display: none;   
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.left-menu .submenu{
    display: none;
}
.left-menu .submenu.is-active{
    display: block;
}
.c-link{
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #d8dad8;
    background-color: #ffffff;
    position: relative;
}
.c-link p{
    color: #009ede;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    margin-bottom: 0;
}
.copy-clipboard{
   cursor: pointer;
    position: absolute;
    right: 10px;
    top: 15px;
    color: #4d5150;
}
.copy-clipboard svg{
    width: 28px;
    height: 28px;
}
.copy-clipboard .icon-check{
    display: none;
    color: #009ede;
}
.list-section,
.my-campaign-section{
    padding: 20px;
}
.theme-table thead th{
    border-top: none;
    border-bottom: none;
    color: #838786;
    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
}
.theme-table tr.border-row th{
    height: 2px;
    padding: 0;
    background-image: linear-gradient(to right, #b7cb21 0%, #009ede 100%);
}
.theme-table td{
    padding: 15px;
}
.theme-table td,
.theme-table td a{
    color: #838786;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}
.theme-table .action a{
    display: inline-block;
    margin: 0 10px;
    width: 25px;
    text-align: center;
}

table.dataTable > thead .sorting::after, 
table.dataTable > thead .sorting_asc::after, 
table.dataTable > thead .sorting_desc::after, 
table.dataTable > thead .sorting_asc_disabled::after, 
table.dataTable > thead .sorting_desc_disabled::after {
    right:10px;
    content: "\025BE";
    bottom: 8px;
}

table.dataTable > thead .sorting::before, 
table.dataTable > thead .sorting_asc::before, 
table.dataTable > thead .sorting_desc::before,
table.dataTable > thead .sorting_asc_disabled::before,
table.dataTable > thead .sorting_desc_disabled::before {
    right: 10px;
    content: "\25B4";
    top:8px;
}
.dropzone{
    border: 1px solid #d8dad8;
    background-color: #ffffff;
    border-radius: 5px;
}
.custom-dz-message img{
    max-width: 160px;
    margin-bottom: 10px;
}
.custom-dz-message p{
    color: #4d5150;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 5px;
    line-height: 26px;
}
.custom-dz-message p small{
    color: #a6aaa8;
    font-size: 13px;
    font-weight: 400;
}
.custom-dz-message span{
    color: #009ede;
    font-size: 16px;
    font-weight: 300;
    text-decoration: underline;
}
.file-upload-info .media{
    margin-bottom: 10px;
    position: relative;
}
.file-upload-info .file-size{
    color: #4d5150;
    font-size: 12px;
    font-weight: 400;
    display: block;
    margin-bottom: 5px;
}
.file-upload-info .progress{
    height: 8px;
    background-color: #d8dad8;
}
.progress-bar{
    background-color: #009ede;
}
.file-upload-info .upload-status{
    color: #4d5150;
    font-size: 12px;
    font-weight: 400;
}
.file-upload-info .cancel-upload{
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
.upload-customers-section .dropzone,
.content-section .dropzone{
    height: 100%;
    min-height: 600px;
}
.upload-customers-section .dropzone .custom-dz-message,
.content-section .dropzone .custom-dz-message{
    margin-top: 40%;
}
.content-section .help{
    text-align: center;
    width: 100%;
}
.content-section .help a{
    color: #4d5150;
}
.content-section .help a:hover{
    color: #009ede;
}
.custom-control-label{
    padding-top: 3px;
}
.custom-control-label:before{
    border-color: #d8dad8;
}
.custom-control-input:checked ~ .custom-control-label:before {
    border-color: #d8dad8;
    background-color: #fff;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23009ede' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none !important;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='4' fill='%23009ede'/%3e%3c/svg%3e");
}
.tags-list{
    list-style: none;
    padding-left: 0;
}
.tags-list li{
    color: #4d5150;
    font-size: 12px;
    line-height: 18px;
    padding: 15px 15px 15px 25px;
    font-weight: 400;
    position:relative;
    border-radius: 35px;
    border: 1px solid #ededed;
    background-color: #ffffff;
    display: inline-block;
    margin-right: 20px;
    margin-top: 20px;
}
.tags-list li .remove{
    margin-left: 5px;
    cursor: pointer;
}
.print-setting p{
    color: #4d5150;
    font-size: 12px;
    font-weight: 400;
}
.print-setting p strong{
    font-weight: 700;
}
.stock-box{
    max-width: 160px;
}
.stock-box .question{
    float: right;
}
.stock-box .stock-qty{
    border-radius: 4px;
    border: 1px solid #d8dad8;
    background-color: #ffffff;
    color: #4d5150;
    font-size: 49px;
    font-weight: 700;
    width: 100%;
    display: block;
    padding: 15px;
    text-align: center;
    line-height: 48px;
    margin-bottom: 20px;
}
.service-request-section{
    padding:50px 35px;
}
.service-request-section .top-part{
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}
.service-request-section .top-part p{
    color: #a6aaa8;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.service-request-section .border-r{
    border-right: 1px dotted #a6aaa8;
}
.request-box {
    text-align: center;
    padding: 50px 20px;
}
.request-box img{
    margin-bottom: 20px;
    max-width: 135px;
}
.request-box h4{
    color: #4d5150;
    font-size: 24px;
    font-weight: 300;
}
.request-box p{
    color: #a6aaa8;
    font-size: 13px;
    font-weight: 400;
}
.request-box a{
    color: #009ede;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    text-decoration: underline;
}
.service-request-section .bottom-part{
    text-align: center;
    margin-top: 50px;
}
.service-request-section .bottom-part .btn{
    min-width: 200px;
    margin-bottom: 10px;
}
.service-request-section .package-box h4{
    color: #009ede;
}
.service-request-section .package-box .price span{
    color: #009ede;
}
.service-request-section .package-box .btn{
    border-color: #009ede;
}
.service-request-section .package-box .btn:hover {
    border-color: #009ede;
    background: #009ede;
}


.form-section h5{
    color: #4d5150;
    font-size: 18px;
    font-weight: 300;
}
.form-section .btn{
    margin: 5px;
}
.view-form-modal .theme-form-light{
    padding: 20px 35px;
}
.view-form-modal h2{
    color: #4d5150;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}
.view-form-modal .agree{
    color: #a6aaa8;
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0;
}
.upload-customers-section .btn-link-gray + .btn-link-gray{
    margin-left: 10px;
}

.theme-modal .modal-content{
    border-width: 0;
}
.theme-modal .gradient-line{
    height: 3px;
}
.theme-modal .close {
    background-color: #009ede;
    border-radius: 100%;
    width: 28px;
    height: 28px;
    opacity: 1;
    color: #fff;
    z-index: 99;
    font-weight: 500;
    position: absolute;
    right: -12px;
    top: -12px;
}
.theme-modal .modal-body{
    padding: 50px 100px;
}
.theme-modal .modal-title{
    color: #838786;
    font-size: 28px;
    font-weight: 900;
    line-height: 36px;
    margin-bottom: 15px;
}
.theme-modal .details{
    color: #838786;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}
.theme-modal .btn-link{
    color: #009ede;
    font-size: 16px;
    font-weight: 300;
    text-decoration: underline;
}

.customer-details{
    padding: 30px;
    background-color: #f5f6fa;
    height: 100%;
}
.customer-details h3{
    color: #4d5150;
    font-size: 22px;
    font-weight: 900;
    line-height: 28px;
    margin-bottom: 35px;
}
.customer-details h4{
    color: #4d5150;
    font-size: 18px;
    font-weight: 700;
     margin-bottom: 35px;
}
.customer-details p{
    color: #838786;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 35px;
    text-overflow: ellipsis;
    overflow: clip;
}
.customer-details p strong{
    color: #4d5150;
    font-size: 12px;
    font-weight: 700;
    display: block;
}
.customer-details-tab .nav-tabs{
    margin-top: 25px;
    margin-bottom: 50px;
    padding-left: 30px;
    padding-right: 30px;
}
.customer-details-tab .nav-tabs a{
    color: #4d5150;
    font-size: 13px;
    font-weight: 700;
    border-width: 0 0 5px 0;
    margin-bottom: -3px;
    padding: 20px 25px;
    margin-left: 5px;
    margin-right: 5px;
}
.customer-details-tab .nav-tabs a.active{
    border-color: #b7cb21;
}
.customer-tab-details{
    padding: 0 35px;
}
.customer-tab-details h4{
    color: #4d5150;
    font-size: 22px;
    font-weight: 700;
}

.timeline-header{
    margin-top: 20px;
    margin-bottom: 30px;
}
.timeline-header p{
    color: #a6aaa8;
    font-size: 13px;
    font-weight: 400;
}
.timeline-header p strong{
    color: #4d5150;
    font-weight: 700;
    display: block;
}
.timeline{
    position: relative;
    padding-left: 25px;
}
/*Line*/
/*.timeline>li::before{
    content:'';
    position: absolute;
    width: 3px;
    background-color: #707070;
    top: 0;
    bottom: 0;
    left:-19px;
}*/

/*Circle*/
.timeline>li:after{
    text-align: center;
    z-index: 10;
    content:'';
    position: absolute;
    width: 18px;
    height: 18px;
    border:2px solid #fff;
    background-color: #009ede;
    border-radius: 50%;
    top:0;
    left:-27px;
    box-shadow: 0 0 0 2px #707070;
}
.timeline>li.active:after{
    background-color: #fff;
}
/*Content*/
.timeline>li{
    padding: 0px 10px;
    margin-left: 0px;
    min-height:90px;
    position: relative;
    list-style: none;
}
.timeline>li:last-child:before{
    width: 0px;
}
.timeline .timeline-block{

}
.timeline .timeline-block span{
    color: #4d5150;
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    display: block;
}
.timeline .timeline-block p{
    color: #a6aaa8;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}
.campaign-timeline{
    margin-left: 20px;
    margin-top: 30px;
}
.campaign-timeline>li::before{
    content:'';
    position: absolute;
    width: 3px;
    background-color: #707070;
    top: 0;
    bottom: 0;
    left:-19px;
}
.campaign-timeline>li:after{
    background-color: #b7cb21;
}
.timeline .timeline-block span.color{
    color: #009ede;
}

.help-section,
.help-top {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.help-top h2{
    color: #4d5150;
    font-size: 28px;
    font-weight: 900;
    line-height: 30px;
    text-align: center;
    margin-bottom: 30px;
}
.help-top h2.colors{
    color: #b7cb21;
}
.help-top h1{
    color: #b7cb21;
    font-size: 54px;
    font-weight: 900;
    line-height: 60px;
    text-align: center;
    margin-bottom: 30px;
}
.has-search {
    position: relative;
}
.has-search .form-control {
    padding-right: 35px;
    border-color: #d8dad8;
    border-radius: 4px;
    padding-left: 20px;
    font-size: 14px;
}
.has-search .form-control-feedback {
    position: absolute;
    right: 0;
    z-index: 2;
    display: block;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.help-section .add-questions{
    padding: 30px;
}
.help-section .btn-block{
    max-width: 500px;
    margin-top: 50px;
}
.faqs{
    padding: 30px;
    border-bottom: 1px solid #ccc;
    margin: 0;
}
.faq-list{
    padding: 10px 25px;
    list-style: none;
    margin-bottom: 0;
}
.faq-list li{
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
    color: #838786;
    font-size: 13px;
    font-weight: 700;
}
.faq-list li span {
    position: absolute;
    left: 0;
    top: 0;
}
.faq-list li a {
    color: #009ede;
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    vertical-align: top;
}
.faqs-qa{
    padding: 50px 30px 30px 30px;
}
.qa-wrap{
    position: relative;
    margin-bottom: 10px;
    padding: 20px;
}
.qa-wrap h4 {
    color: #a6aaa8;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 25px;
}
.qa-wrap h4 span {
    color: #b7cb21;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    left: 0;
    top: 0;
}
.qa-wrap p{
    color: #a6aaa8;
    font-size: 15px;
    font-weight: 400;
    padding-left: 25px;
}
.pod-block{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    margin: 5px;
}
.pod-block img {
    /* width: 100%; */
    object-fit: cover;
    min-height: 230px;
    max-height: 230px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}
.pod-block p {
    color: #838786;
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    padding: 10px;
    min-height: 75px;
}
.swiper-print-on-demand-wrap{
    position: relative;
}
.swiper-print-on-demand-wrap .swiper-button-next{
    right: -30px;
}
.swiper-print-on-demand-wrap .swiper-button-prev{
    left: -30px;
}
.swiper-print-on-demand-wrap .swiper-button-next:after, 
.swiper-print-on-demand-wrap .swiper-button-prev:after {
    font-size: 34px;
    color: #707070;
    text-shadow: 0 0 1px #000;
}
.pod-product-section{
    padding: 50px 40px;
}
.pod-product-section .top-details{
    margin-bottom: 50px;
}
.pod-product-section .top-details p{
    font-size: 14px;
    color: #838786;
}
.pod-product-section .top-details .price{
    font-size: 50px;
    line-height: 50px;
    color: #838786;
    display: block;
    margin-bottom: 10px;
}
.pod-product-section .box-sub-title{
    margin-top: 30px;
}
.cd-section h5{
    color: #4d5150;
}
.cd-report-block{
    margin-bottom: 50px;
}
.cd-color-scheme-block{
    margin-bottom: 50px;
}
.color-scheme label{
    padding-top: 1px;
}
.color-scheme label span{
    display: inline-block;
    width: 22px;
    height: 22px;
    border:1px solid transparent;
}
.cd-section .custom-switch{
    margin-bottom: 50px;
}
.custom-switch .custom-control-label:before {
    border-color: #d8dad8;
    background-color: #f6f7f6;
    height: 20px;
    border-radius: 20px;
    width: 40px;
}
.custom-switch .custom-control-label:after{
    top: 8px;
    left: -32px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.21);
    background-color: #ffffff;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:before {
    border-color: #d8dad8;
    background-color: #d8dad8;
}
.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
}
.cd-section .file-upload-info{
    margin-bottom: 50px;
}
.plan-form .plan-body{
    min-height: 250px;
}

.why-upgrade-section{
    background: transparent;
    box-shadow: none;
    padding-top: 40px;
}
.why-upgrade-section .rounded{
    border-radius: 40px !important;
}
.benefit-block{
    margin-bottom: 50px;
}
.benefit-block h4{
   color: #b7cb21;
    font-size: 18px;
    font-weight: 700; 
}
.benefit-block p{
    color: #a6aaa8;
    font-size: 15px;
    font-weight: 400;
}
.upgrade-higlight{
    text-align: center;
    margin-top: 100px;
    margin-bottom: 100px;
}
.upgrade-higlight h2{
    color: #b7cb21;
    font-size: 56px;
    font-weight: 900;
    line-height: 70px;
}
.upgrade-higlight p{
    color: #4d5150;
    font-size: 18px;
    font-weight: 400;
}

#cardNumber,#cardNumberccu{
    background-image: url(../images/card.png);
    background-position: 2px -44px;
    background-size: 45px 330px;
    background-repeat: no-repeat;
    padding-left: 54px;
}
#cardNumber.visa,#cardNumberccu.visa {
    background-position: 2px -84px;
}
#cardNumber.mastercard,#cardNumberccu.mastercard {
    background-position: 2px -164px;
}
#cardNumber.maestro,#cardNumberccu.maestro {
   background-position: 2px -204px;
}
#cardNumber.discover,#cardNumberccu.discover {
   background-position: 2px -245px;
}
#cardNumber.amex,#cardNumberccu.amex {
   background-position: 2px -286px;
}

#cardnogroup,#cardnogroupccu{
    position: relative;
}
#cardnogroup:after, #cardnogroupccu:after {
    content: '';
    position: absolute;
    background-image: url(../images/card.png);
    background-position: 5px 5px;
    background-size: 45px 330px;
    background-repeat: no-repeat;
    width: 30px;
    height: 28px;
    top: 34px;
    right: 0;
}
#cardnogroup.cardvalid:after, 
#cardnogroupccu.cardvalid:after{
    background-position: 5px -20px;
}
.short-form-section{
    padding:0px 0;
}
.campaign-header{
    text-align: center;
    margin-bottom: 40px;
}
.about-section,
.contact-section{
   padding-top: 125px;
}
.about-section h2,
.contact-section h2{
   margin-bottom: 30px;
}
.common-pages{
    padding-top: 100px;
    padding-bottom: 50px;
}
.upgradeservicepopup .test-drive-left p{
    font-size: 16px;
}
.upgradeservicepopup .form-wrap{
    height: 100%;
}

/*Gravity Forms*/
.gravity-forms-section form label,
.gravity-forms-section form label.gfield_label{
    color: #838786;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 0;
}
.gravity-forms-section form select.large,
.gravity-forms-section form input.large{
    border-radius: .25rem;
    padding: .375rem .75rem !important;
    border: 1px solid #d8dad8;
    height: 48px;
    color: #a6aaa8;
    font-size: 12px !important;
    font-weight: 400;
    background-color: #fff;
}
.gravity-forms-section .gform_legacy_markup_wrapper textarea:focus-visible,
.gravity-forms-section form input.large:focus-visible {
    outline: none !important;
}
.gravity-forms-section .gform_legacy_markup_wrapper .top_label div.ginput_container{
    margin-top: 0px;
}

.gravity-forms-section .gform_wrapper ul.gfield_checkbox li, 
.gravity-forms-section .gform_wrapper ul.gfield_radio li {
    display: inline-block;
    margin-right: 15px;
}
.gravity-forms-section .gform_legacy_markup_wrapper textarea.large{
    border-radius: .25rem;
    padding: .375rem .75rem !important;
    border: 1px solid #d8dad8;
    height: 160px;
    color: #a6aaa8;
    font-size: 12px !important;
    font-weight: 400;
}
.gravity-forms-section .gform_wrapper .gform_fileupload_multifile .button {
    background-color: #525252;
    font-size: 18px !important;
    color: #fff;
    padding: 10px 45px;
    border: 1px solid #525252;
    border-radius: 35px;
    cursor: pointer;
}
.gravity-forms-section .gform_legacy_markup_wrapper .gform_footer input[type="submit"]{
    background-color: #525252;
    font-size: 18px !important;
    color: #fff;
    padding: 10px 45px;
    border: 1px solid #525252;
    border-radius: 35px;
    cursor: pointer;
}

#campaignLinkSurvey label.error{
    display: block;
    color: #f00;
    font-size: 14px;
}

.p-on-d-section h5{

}
.custom-file{
    height: 48px;
}
.custom-file-input{
    height: 48px;
}
.custom-file-label{
    height: 48px;
    line-height: 34px;
}
.custom-file-input:lang(en) ~ .custom-file-label:after {
    content: "Select file";
    height: 46px;
    font-size: 14px;
    line-height: 34px;
}
.how-work{
    margin-top: -20%;
    padding-bottom: 50px;
    position: relative;
}
.how-work h2{
    color: #b7cb21;
    font-size: 60px;
    font-weight: 900;
}
.swiper-how-work-wrap{
    position: relative;
}
.swiper-how-work-wrap .how-work-prev,
.swiper-how-work-wrap .how-work-next{
    color: #009ede;
}
.swiper-how-work-wrap .how-work-prev:after,
.swiper-how-work-wrap .how-work-next:after{
    font-size: 28px;
}
.swiper-how-work-wrap .how-work-prev{
    left: -20px;
}
.swiper-how-work-wrap .how-work-next{
    right: -20px;
}
.swiper-how-work-wrap .how-work-pagination{
    left: 50%;
    transform: translateX(-50%);
}
.swiper-how-work-wrap .swiper-pagination-bullet{
    width:12px;
    height:12px;
    margin: 0 5px;
}
.swiper-how-work-wrap .swiper-pagination-bullet-active{
    background: #009ede;
}

.tell-me-more-section h4 {
    font-size: 20px;
    font-weight: 700;
}
.chk-option + .custom-control-label{
    font-size: 16px;
    padding-top: 0;
}
.short-form-section .hiddenRecaptcha.error{
    position: absolute;
    height: 0
}


/* Dark Mode */
.darkmode,
.darkmode .left-bar{
    background: #000;
}
.darkmode .dashboard-section{
    background: rgba(255,255,255,0.1)
}
.darkmode .dashboard-box,
.darkmode .chart-box,
.darkmode .icon-box,
.darkmode .dashboard-inner-section{
    background: rgba(255,255,255,0.15);
}
.darkmode .chart-box .highcharts-title,
.darkmode .chart .highcharts-legend-item text,
.darkmode .chart-box .highcharts-legend-item text{
    color: #fff !important;
    fill: #fff !important;
}
.darkmode .chart .highcharts-background{
    fill: none !important;
}
.darkmode .navbar .navbar-nav .nav-link path{
    stroke:#fff;
}
.darkmode .theme-form-light .form-control{
    background: rgba(0,0,0,0.15);
    color: #fff;
}
.darkmode .tags-list li .remove img,
.darkmode .box-title .right-side a img,
.darkmode .add-more svg,
.darkmode .campaign-list .remove img{
    filter: grayscale(100%) brightness(150%);
}
.darkmode .tags-list li .remove:hover img,
.darkmode .box-title .right-side a:hover img,
.darkmode .add-more:hover svg,
.darkmode .campaign-list .remove:hover img{
    filter: grayscale(100%) brightness(200%);
}
.darkmode .campaign-section .campaign-list-wrap,
.darkmode .c-link,
.darkmode .dropzone,
.darkmode .pod-block,
.darkmode .customer-details{
    background: rgba(0,0,0,0.15);
}
.darkmode .left-menu .nav-item .nav-link,
.darkmode .icon-box span,
.darkmode .status-box-small .number,
.darkmode .status-box .number,
.darkmode .dashboard-box h3,
.darkmode .dashboard-inner-right h5,
.darkmode .campaign-list p,
.darkmode .campaign-list h6,
.darkmode .campaign-list-title,
.darkmode .campaign-section h5,
.darkmode .theme-form-light label,
.darkmode .box-title .right-side a,
.darkmode .custom-dz-message p,
.darkmode .content-section .help a,
.darkmode .file-upload-info .file-size,
.darkmode .print-setting p,
.darkmode .customer-tab-details h4,
.darkmode .customer-details h4,
.darkmode .customer-details h3,
.darkmode .customer-details p strong,
.darkmode .customer-details p,
.darkmode .timeline .timeline-block span,
.darkmode .timeline-header p strong,
.darkmode .timeline-header p,
.darkmode .request-box h4,
.darkmode .help-top h2,
.darkmode .customer-details-tab .nav-tabs a{
    color: #bbb;
}
.darkmode .tags-list li,
.darkmode .nav-tabs .nav-item.show .nav-link, 
.darkmode .nav-tabs .nav-link.active{
     background: rgba(0,0,0,0.15);
     color: #bbb;
}
.darkmode .left-menu .nav-item.active .nav-link, 
.darkmode .left-menu .nav-item .nav-link:hover{
    color: #fff;
    border-color: #FFF;
}
.darkmode .icon-box img,
.darkmode .left-menu .nav-item.active .nav-link img, 
.darkmode .left-menu .nav-item .nav-link:hover img{
    filter: grayscale(100%);
}

.darkmode .box-sub-title,
.darkmode .box-title,
.darkmode .add-more,
.darkmode .btn-link-gray,
.darkmode .btn-link,
.darkmode .dashboard-inner-section .btn-outline-primary,
.darkmode .box-title .right-side a:hover,
.darkmode .icon-box:hover span {
    color: #fff;
}
.darkmode .why-upgrade-section{
    background: rgba(0,0,0,0.0);
}

/* colorScheme2 */
.colorScheme2 .icon-box img {
    filter: brightness(30%) grayscale(100%);
}
.colorScheme2 .icon-box:hover img {
    filter: brightness(60%) grayscale(100%);
}
.colorScheme2 .icon-box:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.colorScheme2 .left-menu .nav-item.active .nav-link,
.colorScheme2 .left-menu .nav-item .nav-link:hover,
.colorScheme2 .btn-outline-primary{
    border-color: #a6aaa8;
}
.colorScheme2 .chart .highcharts-series-0 .highcharts-point,
.colorScheme2 .chart-box .highcharts-series-0 .highcharts-point,
.colorScheme2 .highcharts-root .highcharts-series-0 .highcharts-point,
.colorScheme2 .highcharts-root .highcharts-series-1 .highcharts-point{
    color: #a6aaa8 !important;
    fill: #a6aaa8 !important;
}
.colorScheme2 .add-more svg path,
.colorScheme2 .navbar .navbar-nav .nav-link path,
.colorScheme2 .highcharts-root .highcharts-series-0 .highcharts-graph,
.colorScheme2 .highcharts-root .highcharts-series-1 .highcharts-graph{
    stroke:#a6aaa8 !important;
}
.colorScheme2 .highcharts-root .highcharts-series-0 .highcharts-area{
    fill:rgba(170,170,170,0.15) !important;
}
.colorScheme2 .highcharts-root .highcharts-series-1 .highcharts-area{
    fill:rgba(165,165,165,0.15) !important;
}
.colorScheme2 .status-box .number .badge,
.colorScheme2 .status-box p span{
    background-color: #1a1d1d;
}
.colorScheme2 .status-box p span.blue,
.colorScheme2 .timeline > li:after {
    background-color: #a6aaa8;
}
.colorScheme2 .btn-outline-primary:hover {
    background-color: #a6aaa8;
    border-color: #a6aaa8;
}
.colorScheme2 .icon-box:hover span,
.colorScheme2 .c-link p,
.colorScheme2 .faq-list li a,
.colorScheme2 .btn-link,
.colorScheme2 .add-more:hover,
.colorScheme2 .box-title .right-side a:hover,
.colorScheme2 .custom-dz-message span,
.colorScheme2 .request-box a{
    color: #a6aaa8;
}
.colorScheme2 .left-menu .nav-item .nav-link img,
.colorScheme2 .box-title .right-side a:hover img {
    filter: grayscale(100%);
}
.colorScheme2 .tags-list li .remove img,
.colorScheme2 .box-title .right-side a img,
.colorScheme2 .add-more svg,
.colorScheme2 .add-more img,
.colorScheme2 .campaign-list .remove img{
    filter: grayscale(100%) brightness(150%);
}
.colorScheme2 .tags-list li .remove:hover img,
.colorScheme2 .box-title .right-side a:hover img,
.colorScheme2 .add-more:hover svg,
.colorScheme2 .add-more:hover img,
.colorScheme2 .campaign-list .remove:hover img{
    filter: grayscale(100%) brightness(200%);
}

.colorScheme2 .customer-details-tab .nav-tabs a.active {
    border-color: #1a1d1d;
}

.colorScheme2 .timeline > li.active::after {
    background-color: #fff;
}
.colorScheme2 .qa-wrap h4 span{
    color: #1a1d1d;
}

.colorScheme2 .status-box .number .badge.red{
    background-color: #f55567;
}



/* colorScheme3 */
.colorScheme3 .icon-box img {
    filter: hue-rotate(285deg) saturate(2.9);
}
.colorScheme3 .icon-box:hover img {
    filter: hue-rotate(285deg) saturate(2.9);
}
.colorScheme3 .icon-box:hover {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.colorScheme3 .left-menu .nav-item.active .nav-link,
.colorScheme3 .left-menu .nav-item .nav-link:hover,
.colorScheme3 .btn-outline-primary{
    border-color: #b51a1a;
}
.colorScheme3 .chart .highcharts-series-0 .highcharts-point,
.colorScheme3 .chart-box .highcharts-series-0 .highcharts-point,
.colorScheme3 .highcharts-root .highcharts-series-0 .highcharts-point,
.colorScheme3 .highcharts-root .highcharts-series-1 .highcharts-point{
    color: #b51a1a !important;
    fill: #b51a1a !important;
}
.colorScheme3 .add-more svg path,
.colorScheme3 .navbar .navbar-nav .nav-link path,
.colorScheme3 .highcharts-root .highcharts-series-0 .highcharts-graph,
.colorScheme3 .highcharts-root .highcharts-series-1 .highcharts-graph{
    stroke:#b51a1a !important;
}
.colorScheme3 .highcharts-root .highcharts-series-0 .highcharts-area{
    fill:rgba(170,170,170,0.15) !important;
}
.colorScheme3 .highcharts-root .highcharts-series-1 .highcharts-area{
    fill:rgba(165,165,165,0.15) !important;
}
.colorScheme3 .status-box .number .badge,
.colorScheme3 .status-box p span{
    background-color: #1a1d1d;
}
.colorScheme3 .status-box p span.blue,
.colorScheme3 .timeline > li:after {
    background-color: #b51a1a;
}
.colorScheme3 .btn-outline-primary:hover {
    background-color: #b51a1a;
    border-color: #b51a1a;
}
.colorScheme3 .icon-box:hover span,
.colorScheme3 .c-link p,
.colorScheme3 .faq-list li a,
.colorScheme3 .btn-link,
.colorScheme3 .add-more:hover,
.colorScheme3 .box-title .right-side a:hover,
.colorScheme3 .custom-dz-message span,
.colorScheme3 .request-box a{
    color: #b51a1a;
}
.colorScheme3 .left-menu .nav-item .nav-link img,
.colorScheme3 .box-title .right-side a:hover img {
    filter: grayscale(100%);
}
.colorScheme3 .tags-list li .remove img,
.colorScheme3 .box-title .right-side a img,
.colorScheme3 .add-more svg,
.colorScheme3 .add-more img,
.colorScheme3 .campaign-list .remove img{
    filter: grayscale(100%) brightness(150%);
}
.colorScheme3 .tags-list li .remove:hover img,
.colorScheme3 .box-title .right-side a:hover img,
.colorScheme3 .add-more:hover svg,
.colorScheme3 .add-more:hover img,
.colorScheme3 .campaign-list .remove:hover img{
    filter: grayscale(100%) brightness(200%);
}
.colorScheme3 .customer-details-tab .nav-tabs a.active {
    border-color: #1a1d1d;
}
.colorScheme3 .timeline > li.active::after {
    background-color: #fff;
}
.colorScheme3 .qa-wrap h4 span{
    color: #1a1d1d;
}
.colorScheme3 .status-box .number .badge.red{
    background-color: #f55567;
}

.single-post .entry-header{
    margin-bottom: 30px;
}
.single-post .post-thumbnail{
    margin-bottom: 20px;
}
.single-post .post-navigation {
    margin-top: 50px;
}
.single-post .post-navigation .nav-links{
    display: flex;
    justify-content: space-between;
}
@media (min-width: 576px) {
    .blog-list-section .card-columns{
        -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    }
}

/*---------------------------------------------------------------------*/
/* Responsive Style
/*---------------------------------------------------------------------*/
@media (max-width:1500px){



}

@media (max-width: 1400px) {

    .dashboard-space {
        padding: 0 75px;
    }


}

@media (max-width: 1300px) {
    .help-top h1,
    .hero-section h1 {
        font-size: 42px;
        line-height: 44px;
    }
    .hero-section p{
        font-size: 22px;
    }
    .hero-section .action .btn {
        min-width: 200px;
        margin-right: 10px;
    }
    .icon-box span{
        font-size: 12px;
    }
    .status-box .number{
        font-size: 44px;
    }
    .upgrade-higlight h2{
        font-size: 42px;
        line-height: 50px;
    }
    .upgrade-higlight p{
        font-size: 16px;
    }



}

@media (max-width: 1200px) {
    .help-top h1,
    .hero-section h1 {
        font-size: 36px;
        line-height: 42px;
    }
    .hero-section p {
        font-size: 20px;
    }
    .hero-section .action .btn {
        min-width: 175px;
    }
    .customer-details,
    .dashboard-inner-left,
    .dashboard-inner-right{
        padding: 20px;
    }
    .customer-tab-details h4,
    .customer-details h3{
        font-size: 18px;
    }
    .customer-details-tab .nav-tabs{
        padding-left: 20px;
        padding-right: 20px;
    }
    .customer-details p{
        font-size: 16px;
    }
    .how-work h2{
        font-size: 40px;
    }


}
@media (max-width: 1100px) {
    .help-top h1,
    .hero-section h1 {
        font-size: 32px;
        line-height: 40px;
    }
    .hero-section .action .btn{
        font-size: 20px;
        min-width: 150px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .top-content h2,
    .text-image-section h2{
        font-size: 48px;
    }
    .text-image-section h3{
         font-size:34px;
    }
    .top-content h2{
        line-height: 62px;
    }
    .package-box{
        padding-left: 5%;
        padding-right: 5%;
    }
    .request-box{
        padding-left: 0px;
        padding-right: 0px;
    }
    .request-box h4{
        font-size: 20px;
    }
    .customer-details-tab .nav-tabs a{
        padding-left: 15px;
        padding-right: 15px;
    }
    .help-top{
        padding-top: 50px;
    }



}



@media (max-width: 991px) {
    .lg-btn {
        font-size: 18px;
        padding: 10px 30px;
    }
    .btn-wide {
        padding-left: 50px;
        padding-right: 50px;
    }
    .box-title{
        font-size: 18px;
    }
    .site-header .navbar{
        padding-right: 90px;
    }
    .site-header .navbar-toggler{
        position: absolute;
        right: 15px;
        top: 15px;
        color: #b7cb21;
        border-color: #b7cb21;
    }
    .site-header .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(183, 203, 33, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .navbar-right-side .btn-link {
        font-size: 12px;
    }
    .site-footer .site-info{
        padding-bottom: 0;
    }
    .back-to-top{
        text-align: center;
    }
    .back-to-top a{
        margin-top: 0;
        margin-bottom: 50px;
    }
    .site-footer .widget{
        text-align: center;
        margin-bottom: 50px;
    }
    .site-footer .menu .nav-link,
    .site-footer .widget-title{
        font-size: 16px;
    }
    .test-drive-left{
        display: none;
    }
    .test-drive-modal .mobile-gradient{
        height: 3px;
        display: block;
        background-image: linear-gradient(to right, #b7cb21 0%, #009ede 100%);
    }
    .thankyou-wrap h2,
    .test-drive-modal h3{
        font-size: 24px;
    }
    .thankyou-wrap .theme-form .btn,
    .test-drive-modal .theme-form .btn {
        width: auto;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-section{
        padding-bottom: 250px;
    }
    .hero-section h1 {
        font-size: 40px;
        line-height: 46px;
        text-align: center;
    }
    .hero-section p {
        font-size: 24px;
        text-align: center;
    }
    .hero-section .action{
        text-align: center;
        margin-bottom: 40px;
    }
    .hero-section .action .btn{
        font-size: 18px;
        min-width: 220px;
    }
    .hero-section img{
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .text-image-section{
        text-align: center;
    }
    .text-image-section .text-side{
        margin-top: 25px;
    }
    .text-image-section img{
        max-width: 70%;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
    .top-content h2 {
        line-height: 44px;
        font-size: 36px;
    }
    .top-content p{
        font-size: 16px;
    }
    .package-tab{
        border-bottom: none;
    }
    .package-tab .nav-item {
        margin-bottom: 0;
        margin-left: 5px;
        margin-right: 5px;
    }
    .package-tab .nav-item .nav-link{
        color: #4d5150;
        font-size: 14px;
        font-weight: 700;
        padding-bottom: 15px;
        border-width: 0 0 5px 0;
        border-bottom: 5px solid transparent
    }
    .package-tab .nav-item .nav-link.active{
        border-bottom-color: #b7cb21;
    }
    .mobile-package .package-box {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .mobile-package .package-box .price{
        min-height: inherit;
        margin-bottom: 40px;
        margin-top: 40px;
    }
    .mobile-package .package-box .price span{
        color: #4d5150;
        font-size: 48px;
        line-height: 50px;
    }
    .mobile-package .package-box .price span sup{
        top: -20px;
    }
    .mobile-package .package-box .price p{
        color: #4d5150;
        font-size: 12px;
        font-weight: 400;
    }
    .mobile-package .package-box .sub-title{
        color: #4d5150;
        font-size: 16px;
        font-weight: 400;
    }
    .mobile-package .package-box .btn {
         border-color: #009ede; 
    }
    .mobile-package .package-box .btn:hover {
        border-color: #009ede;
        background: #009ede;
    }
    .mobile-package .package-box ul li:before {
        color: #4d5150;
    }
    .dashboard-section{
        padding-left: 0;
    }
    .lert-bar-toggle{
        display: block;
        z-index: 99;
        position: fixed;
        height: 34px;
        width: 34px;
        border-radius: 100%;
        text-align: center;
        padding: 4px 8px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
        background-color: #b7cb21;
        left: 15px;
        top: 10px;
    }
    .lert-bar-toggle span{
        width: 16px;
        height: 2px;
        background-color: #fff;
        display: block;
        margin: 4px 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .lert-bar-toggle .line:nth-child(2){
        width: 14px;
    }
    .lert-bar-toggle .line:nth-child(3){
        width: 12px;
    }
    .lert-bar-toggle.is-active .line:nth-child(2){
        opacity: 0;
    }
    .lert-bar-toggle.is-active .line:nth-child(1){
        -webkit-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
        -o-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }
    .lert-bar-toggle.is-active .line:nth-child(3){
        width: 16px;
        -webkit-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
        -o-transform: translateY(-6px) rotate(-45deg);
        transform: translateY(-6px) rotate(-45deg);
    }
    .left-bar{
        left:-300px;
        transition: left 0.5s ease;
        -ms-transition: left 0.5s ease;
        -moz-transition: left 0.5s ease;
        -o-transition: left 0.5s ease;
        -webkit-transition: left 0.5s ease;
    }
    .left-bar.is-active{
        left:0px;
        transition: left 0.5s ease;
        -ms-transition: left 0.5s ease;
        -moz-transition: left 0.5s ease;
        -o-transition: left 0.5s ease;
        -webkit-transition: left 0.5s ease;
    }
    .left-bar-overly {
        opacity: 0;
    }
    .left-bar-overly.is-active {
        opacity: 1;
        content: '';
        position: fixed;
        background: rgba(0,0,0,0.5);
        height: 100%;
        width: 100%;
        z-index: 96;
        top: 0;
        bottom: 0;
    }
    .left-bar .logo{
        padding-top: 60px;
    }
    .left-menu{
        height: calc(100vh - 110px);
        overflow: scroll;
    }
    .left-menu .nav-item .nav-link{
        padding-top: 18px;
        padding-bottom: 18px;
    }
    .left-menu .nav-item.mobile {
        display: block;
    }
    .navbar-dashboard-right li.dropdown{
        display: none;
    }
    .icon-box span{
        color: #838786;
    }
    .dashboard-box h3{
        font-size: 16px;
    }
    .status-box .number {
        font-size: 52px;
    }
    .new-customers-box{
        margin-bottom: 40px;
    }
    .dashboard-inner-left,
    .dashboard-inner-right {
        padding: 50px;
    }
    .dashboard-inner-left{
        border-right: none;
    }
    .dashboard-inner-right{
        padding-top: 0;
    }
    .upload-customers-section .dropzone, 
    .content-section .dropzone {
         min-height: 350px;
    }
    .upload-customers-section .dropzone .custom-dz-message,
    .content-section .dropzone .custom-dz-message {
        margin-top: 20px;
    }
    .help-top h2{
        font-size: 26px;
    }
    .qa-wrap,
    .faq-list{
        padding: 10px;
    }
    .pod-product-section .top-details{
        margin-top: 20px;
    }
    .upgrade-higlight h2 {
        font-size: 32px;
        line-height: 40px;
    }
    .contact-section .theme-form{
        text-align: left;
    }




}

@media (max-width: 767px) {
    body.home {
        padding-top: 50px;
    }
    .lg-btn {
        font-size: 14px;
    }
    .md-btn{
        font-size: 14px;
        padding: 10px 30px;
    }
    .btn-wide {
        padding-left: 40px;
        padding-right: 40px;
    }
    p{
        font-size: 12px;
    }
    .navbar-brand {
        max-width: 130px;
        margin-right: 0;
        padding-top: 2px;
        padding-bottom: 2px;
    }
    .site-header .navbar {
        padding-right: 15px;
    }
    .site-header .navbar-toggler{
        right: 0px;
        top: 5px;
        border: none;
    }
    .navbar-dashboard-right .btn,
    .site-header .btn {
        font-size: 12px;
        padding: 5px 10px;
    }
    .navbar-right-side {
        padding-top: 3px;
        padding-bottom: 3px;
        padding-right: 30px
    }
    .modal-dialog{
        margin-left: 30px;
        margin-right: 30px;
    }
   .site-footer .menu .nav-link, 
   .site-footer .widget-title {
        font-size: 14px;
    }
    .site-footer .site-info{
        padding-left: 20px;
        padding-right: 20px;
    }
    .site-footer .input-group .form-control{
        height: 60px;
    }
    .site-footer .input-group .btn{
        font-size: 14px;
    }
    .thankyou-wrap h2,
    .test-drive-modal h3 {
        font-size: 18px;
    }
    .test-drive-modal .form-wrap{
        padding: 30px;
    }
    .test-drive-modal .theme-form .btn {
       margin-top: 30px;
    }
    .test-drive-modal .theme-form .btn-forgot{
        margin-top: 0px;
    }
    .thankyou-wrap {
        padding: 25px 30px;
    }
    .hero-section{
        padding-left: 30px;
        padding-right: 30px;
    }
    .hero-section h1 br{
        display: none;
    }
    .help-top h1,
    .hero-section h1 {
        font-size: 28px;
        line-height: 28px;
    }
    .hero-section p {
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 10px;
    }
    .hero-section p.small{
        font-size: 12px;
    }
    .hero-section .action .btn{
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 14px;
        min-width: 175px;
    }
    .hero-section img{
        max-width: 100%;
    }
    .hero-section {
        padding-bottom: 150px;
    }
    .video-section .video-controls span.button{
        width: 76px;
        height: 76px;
    }
    .video-section .video-controls span.button span{
        margin-top: 20px;
    }
    .deliver-section,
    .report-section,
    .manage-section,
    .communicate-section{
        padding-left: 25px;
        padding-right: 25px;
    }
    .text-image-section .text-side{
        padding-left: 0;
        padding-right: 0;
    }
    .text-image-section h2{
        font-size: 36px;
    }
    .text-image-section h3{
        font-size: 30px;
    }
    .text-image-section p{
        font-size: 12px;
    }
    .top-content h2 {
        line-height: 28px;
        font-size: 24px;
    }
    .top-content p {
        font-size: 12px;
    }
    .package-tab .nav-item .nav-link{
        padding-bottom: 10px;
    }
    .mobile-package .package-box ol li,
    .mobile-package .package-box ul li,
    .mobile-package .package-box .sub-title,
    .package-box p{
        font-size: 12px;
    }
    .package.package-tab .nav-item{
        margin-left: 0px;
        margin-right: 0px;
    }
    .package.package-tab .nav-item a{
        padding-left: 10px;
        padding-right: 10px;
    }
    .dashboard-space {
        padding: 0 30px;
    }
    .dashboard-inner-left,
    .dashboard-inner-right{
        padding: 20px;
    }
    .status-box .number {
        font-size: 48px;
    }
    .campaign-list .media{
        display: block;
    }
    .campaign-list .media-body{
        margin-top: 10px;
    }
    .custom-dz-message img{
        max-width: 100px;
    }
    .custom-dz-message p{
        font-weight: 500;
        font-size: 18px;
    }
    .service-request-section .border-r {
        border-right: none;
        border-bottom: 1px dotted #a6aaa8;
    }
    .view-form-modal h2{
        font-size: 18px;
    }
    .view-form-modal .theme-form-light {
        padding: 15px 5px;
    }
    .customer-details-tab .nav-tabs {
        padding-left: 0;
        padding-right: 0;
    }
    .customer-details-tab .nav-tabs a{
        font-size: 12px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .help-top h2 {
        font-size: 20px;
    }
    .qa-wrap, 
    .faq-list {
        padding: 0;
    }
    .faqs{
        padding: 20px;
    }
    .faq-list li{
        margin-bottom: 20px;
    }
    .qa-wrap h4{
        font-size: 16px
    }
    .qa-wrap h4 span{
        font-size: 16px;
    }
    .faqs-qa{
        padding: 50px 20px 30px 20px;
    }
    .qa-wrap p{
        font-size: 14px;
    }
    .pod-product-section {
        padding: 30px 20px;
    }
    .pod-product-section .top-details .price{
        font-size: 40px;
        line-height: 40px;
    }
    .theme-modal .modal-body{
        padding:30px 20px;
    }
    .theme-modal .details{
        font-size: 14px;
    }
    .theme-modal .modal-title{
        font-size: 20px;
        line-height: 24px;
    }
    .why-upgrade-section .rounded{
        margin-bottom: 30px;
    }
    .upgrade-higlight {
        margin-top: 30px;
        margin-bottom: 60px;
    }
    .upgrade-higlight h2 {
        font-size: 24px;
        line-height: 32px;
    }
    .box-title {
        padding-left: 25px;
    }
    .table-responsive-lg .theme-table{
        min-width: 600px;
    }
    .theme-table .action a{
        margin-left: 5px;
        margin-right: 5px;
    }
    .upload-customers-section .dropzone, .content-section .dropzone {
        min-height: 250px;
    }

    .page-template-my-content-page .table-responsive-lg .theme-table{
        min-width: 800px;
    }
    .page-template-my-campaign-page .theme-table td.action{
        min-width: 140px;
    }
    .page-template-forms-page .table-responsive-lg .theme-table{
        min-width:inherit;
    }
    .how-work h2{
        font-size:26px;
    }



}

@media (max-width: 575px) {
    .box-title.with-buttons .right-side {
        float: none;
        display: block;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
    }


}
@media (max-width: 359px) {


}