/*------------------------------------------------------------------
[Root Stylesheet]
Project: Ve3d.io
Version: 1.0.0
-------------------------------------------------------------------*/
:root {
    --primaryColor: #01a0c6; /* old- #2339d1 */
    --secondaryColor: #1a2139;
    --chartColor: #0055ff;
}
/*--------- Body CSS Start -------*/
body {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    line-height: 1.3;
    color: #888888;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0px;
    padding: 0px;
}
/*--------- Typography CSS Start -------*/
a,
a:hover,
a:focus {
    color: #888888;
    text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    line-height: 1.1;
    color: #000000;
    font-weight: 500;
}
img {
    max-width: 100%;
}
input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus,
.form-control:focus {
    outline: none !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}
.tooltip-inner {
    background-color: #222222;
    text-align: left;
    padding: 0.25rem 0.5rem 6px;
}
.bs-tooltip-top .arrow::before {
    border-top-color: #222222;
}
.bs-tooltip-auto[x-placement^="right"] .arrow::before,
.bs-tooltip-right .arrow::before {
    border-right-color: #222222;
}
.bs-tooltip-auto[x-placement^="left"] .arrow::before,
.bs-tooltip-left .arrow::before {
    border-left-color: #222222;
}
/*------ Preloader CSS Start ----*/

/*------ ScrollBar CSS Start ----*/
/* *::-webkit-scrollbar {
    width: 0px;
    height: 6px;
}
*::-webkit-scrollbar-track {
    background-color: #f2f2f2;
    border-radius: 10px;
}
*::-webkit-scrollbar-thumb {
    background-color: #dddddd;
    border-radius: 10px;
}
* {
    scrollbar-color: #f2f2f2 #dddddd;
    scrollbar-width: thin;
} */

/* .ved_users_page::-webkit-scrollbar {
    width: 0px;
    height: 0px; 
} */


/*--------- Button CSS Start -------*/
.ved_btn,
.ved_btn_white,
.ved_btn_red,
.daterangepicker .drp-buttons .btn {
    font-size: 13px;
    font-weight: 400;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    padding: 0 15px;
    height: 40px;
    line-height: 38px;
    min-width: 150px;
    border-radius: 0px;
    color: #ffffff;
    background-color: var(--primaryColor);
    cursor: pointer;
    outline: none !important;
    border: 1px solid var(--primaryColor);
    text-transform: capitalize;
    letter-spacing: 0.4px;
    border-radius: 4px;
    font-weight: 600;
}
.daterangepicker .drp-buttons .btn {
    min-width: 100px;
}
.ved_btn:hover,
.ved_btn:focus,
.ved_btn_white:hover,
.ved_btn_white:focus,
.daterangepicker .drp-buttons .btn:hover,
.daterangepicker .drp-buttons .btn:focus {
    box-shadow: 0px 10px 20px 0px rgba(0, 85, 255, 0.21);
    color: #ffffff;
}
.ved_btn_red {
    background-color: #f54949;
    border: 1px solid #f54949;
}
.ved_btn_red:hover,
.ved_btn_red:focus {
    background-color: #ffffff;
    border: 1px solid #f54949;
    color: #f54949;
    box-shadow: 0px 10px 20px 0px rgba(245, 73, 73, 0.21);
}
.ved_btn_white,
.daterangepicker .drp-buttons .btn-default.cancelBtn {
    background-color: #ffffff;
    color: var(--primaryColor);
}
.ved_btn_white:hover,
.ved_btn_white:focus,
.daterangepicker .drp-buttons .btn-default.cancelBtn:hover,
.daterangepicker .drp-buttons .btn-default.cancelBtn:focus {
    background-color: var(--primaryColor);
    color: #ffffff;
}
.ved_border_btn {
    background: transparent;
    color: var(--primaryColor);
}
.ved_border_btn:hover {
    background: var(--primaryColor);
    color: #ffffff;
}
.ved_border_btn:focus {
    color: var(--primaryColor);
}
.ved_border_btn:focus:hover {
    color: #ffffff;
}
/*------ Notification Messages Wrapper CSS Start ----*/
.ved_notification_wrapper {
    border-radius: 7px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    padding: 15px;
    height: auto;
    display: flex;
    align-items: center;
    position: fixed;
    right: 20px;
    top: 15px;
    z-index: 99999;
    max-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translate3d(90px, 0px, 0);
    transition: all 0.3s;
    border: 1px solid transparent;
    background-color: #ffffff;
}
.ved_notification_wrapper.ved_msg_success_active,
.ved_notification_wrapper.ved_msg_error_active,
.ved_notification_wrapper.ved_msg_info_active,
.ved_notification_wrapper.ved_msg_warning_active {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0px, 0);
    transition: 0.5s ease-in-out;
}
.ved_notification_close {
    margin-left: 15px;
    cursor: pointer;
    font-size: 15px;
    color: transparent;
    display: none;
}
.ved_notification_icon {
    margin-right: 10px;
    font-size: 28px;
    color: transparent;
    display: none;
}
.ved_notification_details {
    flex: 1;
    color: transparent;
}
.ved_notification_heading {
    margin: 0px;
    color: transparent;
    font-weight: 300;
    font-size: 14px;
}
.ved_notification_text {
    margin: 0;
    margin-top: 5px;
}
.ved_msg_success_active {
    border: 1px solid #b7e1d1;
    background-color: #ebf6f2;
}
.ved_msg_error_active {
    border: 1px solid #ba3e2c;
    background-color: #f7ebeb;
}
.ved_msg_info_active {
    border: 1px solid #3386e4;
    background-color: #c4e0ff;
}
.ved_msg_warning_active {
    border: 1px solid #ffc122;
    background-color: #ffebb8;
}
.ved_msg_success_active .ved_notification_icon,
.ved_msg_success_active .ved_notification_heading,
.ved_msg_success_active .ved_notification_close,
.ved_msg_error_active .ved_notification_icon,
.ved_msg_error_active .ved_notification_heading,
.ved_msg_error_active .ved_notification_close,
.ved_msg_info_active .ved_notification_icon,
.ved_msg_info_active .ved_notification_heading,
.ved_msg_info_active .ved_notification_close,
.ved_msg_warning_active .ved_notification_icon,
.ved_msg_warning_active .ved_notification_heading,
.ved_msg_warning_active .ved_notification_close {
    color: #030303;
}
.ved_confirmation_popup_wrapper .modal-content {
    /* border-top: 4px solid var(--primaryColor); */
}
.ved_confirmation_popup_wrapper .ved_modal_delete {
    /* border-top: 4px solid #f54949; */
    border-radius: 0;
}
.ved_confirmation_popup_wrapper .ved_modal_success {
    /* border-top: 4px solid #47d664; */
}
.ved_confirmation_popup_wrapper .ved_modal_warning {
    border-top: 4px solid #ffc122;
}
.ved_confirmation_popup_wrapper .modal-header {
    border: 0;
    padding: 0;
}
.ved_confirmation_popup_wrapper .modal-footer {
    justify-content: center;
    padding: 0px 35px 40px 35px;
    border: none;
    flex-wrap: wrap;
}
.ved_confirmation_popup_wrapper .modal-body {
    text-align: center;
    padding: 30px 10px;
}
.ved_confirmation_popup_wrapper .modal-body i {
    font-size: 38px;
    color: #ffffff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 100%;
}
.ved_confirmation_popup_wrapper .modal-body i.fa-question {
    background-color: var(--primaryColor);
}
.ved_confirmation_popup_wrapper .modal-body i.fa-trash-alt {
    background-color: #f54949;
}
.ved_confirmation_popup_wrapper .modal-body i.fa-check {
    background-color: #47d664;
}
.ved_confirmation_popup_wrapper .modal-body i.fa-exclamation {
    background-color: #ffc122;
}
.ved_confirmation_popup_wrapper .modal-body h3 {
    margin: 0px 0px 18px 0px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
}
.ved_confirmation_popup_wrapper .modal-body p {
    text-align: center;
    margin-bottom: 30px;
}
#switch_to_yearly_plan_popup .modal-body {
    padding: 40px 40px 0;
}

#switch_to_yearly_plan_popup .modal-body h3 {
    text-align: left;
    margin-bottom: 30px;
}

#switch_to_yearly_plan_popup .modal-body p {
    text-align: left;
    margin-bottom: 10px;
    color: #212121;
    line-height: 1.6;
}

#switch_to_yearly_plan_popup .modal-footer {
    margin-top: 20px;
    justify-content: flex-start;
    padding: 0 40px 40px;
}
#switch_to_yearly_plan_popup .modal-body p strong span {
    color: #1fc16b;
}
#switch_to_yearly_plan_popup .modal-dialog {
    max-width: 515px;
}
/*------ Checkmark CSS Start ----*/
.ved_checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    background-color: var(--primaryColor);
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    border-radius: 2px;
    box-shadow: 0px 10px 15px 0px rgba(35, 57, 209, 0.1);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
/*------ Main / Header Wrapper CSS Start ----*/
.ved_header_wrapper {
    display: flex;
    padding: 0px 0px;
    background-color: #fcfcfc;
    box-shadow: 0px 2px 0px 0px rgba(162, 162, 162, 0.15);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 99;
}
.ved_logo {
    display: flex;
    align-items: center;
    /* border-right: 1px solid #f1f1f1; */
    padding: 0px 45px;
}
.ved_header_wrapper .ved_logo img {
    max-width: 110px;
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    transform: translateY(-4px);
}
.ved_menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ved_template_header .ved_menu {
    justify-content: flex-end;
}
.ved_menu > ul {
    margin: 0px;
    padding: 0px;
    font-size: 0;
}
.ved_menu > ul > li {
    list-style: none;
    display: inline-block;
}
.ved_menu > ul > li > a {
    padding: 36px 0px;
    margin: 0px 20px;
    font-size: 13px;
    color: #000000;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
    position: relative;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.ved_menu > ul > li:first-child > a {
    margin-left: 20px;
}
.ved_menu > ul > li > a img {
    height: 20px;
    width: 20px;
    margin-right: 7px;
    object-fit: contain;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    transform: translateY(-1px);
}
.ved_menu > ul > li > a:hover,
.ved_menu > ul > li.active > a,
.ved_menu > ul > li > a:hover i,
.ved_menu > ul > li.active > a i {
    color: var(--primaryColor);
}
.ved_menu > ul > li > a i {
    margin-right: 5px;
}
.ved_menu > ul > li > a i::before {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.ved_header_wrapper .ved_head_btn {
    margin-top: 25px;
    /* margin-right: 40px; */
}
.ved_header_wrapper .ved_head_btn .ved_btn {
    height: 45px;
    line-height: 43px;
    transform: translateY(-1px);
    border-radius: 4px;
    font-weight: 600;
}
.ved_head_profile {
    display: flex;
    align-items: center;
    /* border-left: 1px solid #f1f1f1; */
}
.ved_head_profile > ul {
    margin: 0px;
    padding: 0px;
    display: flex;
}
.ved_head_profile > ul > li {
    list-style: none;
    padding: 25px 25px;
    /* background-color: #fbfbfb; */
    position: relative;
}
.ved_profile_point {
    border-radius: 50%;
    background-color: var(--primaryColor);
    position: absolute;
    right: 25px;
    top: 25px;
    width: 10px;
    height: 10px;
    cursor: pointer;
}
.ved_head_profile > ul > li > p,
.ved_head_profile > ul > li > img {
    width: 38px;
    height: 38px;
    background-color: var(--primaryColor);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.4px;
    object-fit: cover;
}
.ved_head_profile > ul > li > img {
    background: transparent;
}
.ved_head_profile > ul > li > p {
    margin: 0;
}
.ved_head_profile > ul > li .ved_profile_options.active {
    opacity: 1;
    visibility: visible;
    top: 80px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.ved_profile_options {
    position: absolute;
    top: 120px;
    right: 25px;
    min-width: 150px;
    border-radius: 5px;
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 6px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
}
/* .ved_profile_options:before {
      content: "";
      position: absolute;
      top: -9px;
      right: 12px;
      width: 0;
      height: 0;
      border-left: 6px solid transparent;
      border-right: 6px solid transparent;
      border-bottom: 8px solid #e8e8e8;
  }
  .ved_profile_options:after {
      content: "";
      position: absolute;
      top: -8px;
      right: 13px;
      width: 0;
      height: 0;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 8px solid #ffffff;
  } */
.ved_profile_options ul {
    margin: 0px;
    padding: 0px;
}
.ved_profile_options ul li {
    list-style: none;
    width: 100%;
}
.ved_profile_options ul li a {
    display: flex;
    align-items: center;
    color: #000000;
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #e6e6e6;
    white-space: nowrap;
    padding-right: 12px;
    padding: 11px 14px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
    color: #2a2a2a;
}
.ved_profile_options ul li:last-child a {
    border-bottom: 0px;
}
.ved_profile_options ul li a i {
    margin-right: 10px;
    color: #000000;
    width: 12px;
}
.ved_profile_options ul li a:hover {
    background-color: #f0f0f0;
    color: #2a2a2a;
}
/*------ dark moda popup css ------*/
.ved_dark_popup_wrapper {
    position: fixed;
    top: -150px;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.02);
    display: flex;
    left: 50%;
    border: 1px solid #dcdcdc;
    transform: translateX(-50%);
    padding: 20px 30px;
    border-radius: 10px;
    align-items: center;
    max-width: 700px;
    width: 100%;
    transition: all 0.3s;
}
.ved_dark_popup_wrapper .title {
    margin: 0;
    padding-right: 20px;
}
.ved_close_dark_popup {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    position: absolute;
    top: 4px;
    right: 5px;
}
.ved_dark_popup_open .ved_dark_popup_wrapper {
    top: 30px;
}
.ved_header_wrapper .ved_head_btn .ved_btn_white {
    margin-right: 10px;
    height: 45px;
    line-height: 43px;
}
/*------ Responsive CSS Start ----*/
@media (min-width: 992px) and (max-width: 1199px) {
    .ved_menu > ul > li:first-child > a {
        margin-left: 15px;
    }
    .ved_menu > ul > li > a {
        margin: 0px 15px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .ved_logo {
        padding: 0px 25px;
    }
    .ved_menu > ul > li > a {
        margin: 0px 5px;
    }
    .ved_menu > ul > li:first-child > a {
        margin-left: 5px;
    }
    .ved_header_wrapper .ved_head_btn {
        margin-right: 6px;
    }
}
@media (max-width: 767px) {
    .ved_logo {
        padding: 0px 25px;
    }
    .ved_menu {
        text-align: left;
        position: fixed;
        top: 0;
        left: -200px;
        height: 100%;
        width: 200px;
        background-color: #ffffff;
        box-shadow: 0px 0px 21px 1px rgba(0, 0, 0, 0.06);
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        z-index: 99;
        display: block;
    }
    .ved_header_wrapper.active {
        z-index: 1000;
    }
    .active .ved_menu {
        left: 0;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .active .ved_menu ~ .ved_menu_overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 79;
    }
    .ved_menu > ul {
        height: 100%;
        overflow-y: auto;
    }
    .ved_menu > ul::-webkit-scrollbar-track {
        box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.3);
        background-color: #f3f7ff;
    }
    .ved_menu > ul::-webkit-scrollbar {
        width: 2px;
        background-color: #f3f7ff;
    }
    .ved_menu > ul::-webkit-scrollbar-thumb {
        background-color: var(--clr-main);
        border-radius: 10px;
    }
    .ved_menu > ul > li {
        width: 100%;
    }
    .ved_menu > ul > li > a {
        padding: 10px 20px;
        margin: 0;
        width: 100%;
    }
    .ved_menu > ul > li:first-child > a {
        padding-top: 20px;
        margin-left: 0px;
    }
    .ved_head_btn {
        flex: 1;
        text-align: right;
    }
    .ved_menu_line {
        position: absolute;
        top: 23px;
        left: 84px;
        cursor: pointer;
        display: inline-block;
        z-index: 2;
        width: 30px;
        height: 22px;
    }
    .ved_menu_line span,
    .ved_menu_line span:before,
    .ved_menu_line span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        height: 2px;
        width: 30px;
        display: block;
        border-radius: 2px;
        background: var(--primaryColor);
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }
    .ved_menu_line span:before {
        top: -10px;
    }
    .ved_menu_line span:after {
        bottom: -10px;
    }
    .ved_menu_line.active span {
        background-color: transparent;
    }
    .ved_menu_line.active span:before,
    .ved_menu_line.active.active span:after {
        top: 0;
    }
    .ved_menu_line.active span:before {
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .ved_menu_line.active span:after {
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    .ved_header_wrapper .ved_head_btn {
        margin-top: 15px;
        margin-right: 60px;
    }
    .ved_head_profile > ul > li {
        padding: 15px 15px;
    }
    .ved_profile_point {
        right: 15px;
        top: 15px;
    }
    .ved_dark_popup_wrapper {
        max-width: 95%;
    }

    .ved_dark_popup_open .ved_dark_popup_wrapper {
        top: 15px;
    }
}
@media (max-width: 576px) {
    .ved_dark_popup_wrapper {
        display: block;
        text-align: center;
    }
    .ved_dark_popup_wrapper .title {
        margin-bottom: 12px;
    }
}
@media (min-width: 480px) and (max-width: 767px) {
}
@media (max-width: 479px) {
}

/*--------  invalid page css --------*/
.hero-header .tagline {
    font-size: 27px;
    line-height: 30px; 
    font-weight: 700;
}
.hero-header .tagline img {
    width: 30px;
} 
.hero-header p {
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: #212121;
    margin-top: 10px;
}
input#ved_user_email {
    width: 100%;
    padding: 10px 25px;
    border: 1px solid #dedede;
    border-radius: 3px;
    height: 55px;
    margin-bottom: 10px;
    outline: none;
}
section.gif-animation {
    width: 100%;
    padding: 34px 0;
}
.button_signup {
    background: #1fc16b;
    display: inline-block;
    padding: 18px 20px;
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 4px;
    min-width: 240px;
    width: 100%;
    border: none;
    margin-bottom: 10px;
}
.ved_wrapper_invalid_box {
    width: 100%;
    height: 100%;
    padding-top: 60px;
}
.ved_click_more_anim_wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.ved_click_more_animations.hide {
    display: none;
}