/* ======= common css ======== */

img {
    width: 100%;
}

.col-xs-1 {
    width: 8.33%;
}

.col-xs-2 {
    width: 16.66%;
}

.col-xs-3 {
    width: 25%;
}

.col-xs-4 {
    width: 33.33%;
}

.col-xs-5 {
    width: 41.66%;
}

.col-xs-6 {
    width: 50%;
}

.col-xs-7 {
    width: 58.33%;
}

.col-xs-8 {
    width: 66.66%;
}

.col-xs-9 {
    width: 75%;
}

.col-xs-10 {
    width: 83.33%;
}

.col-xs-11 {
    width: 91.66%;
}

.col-xs-12 {
    width: 100%;
}

a.btn:focus,
a.btn:active,
a.btn:visited {
    outline: none !important;
    box-shadow: none !important;
}

button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

button:active,
input:active,
select:active,
textarea:active {
    outline: none !important;
    box-shadow: none !important;
}

button,
input,
select,
textarea {
    outline: none !important;
    box-shadow: none !important;
}

a:hover {
    text-decoration: none;
}

* {
    font-family: 'Montserrat', sans-serif;
}

.h1-tittle {
    font-size: 66px;
    line-height: 66px;
    color: #023E86;
    font-weight: 700;
    margin-bottom: 0;
}

.h4-tittle {
    font-size: 22px;
    line-height: 24px;
    color: #023E86;
    font-weight: 700;
}

.h5-tittle {
    font-size: 24px;
    line-height: 36px;
    color: #023E86;
    font-weight: 700;
}

.h6-tittle {
    font-size: 18px;
    line-height: 24px;
    color: #023e86;
    font-weight: 600;
}

.para-desc {
    font-size: 14px;
    line-height: 18px;
    color: #023E86;
    font-weight: 700;
    margin-bottom: 5px;
}

.para-desc2 {
    font-size: 14px;
    line-height: 20px;
    color: #023E86;
    font-weight: 500;
    margin-bottom: 8px;
}

.para-desc3 {
    font-size: 12px;
    line-height: 22px;
    color: #023E86;
    font-weight: 500;
    margin-bottom: 8px;
}

.status_txt {
    font-size: 14px;
    line-height: 18px;
    color: #32C65E;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    font-size: 14px;
    line-height: 20px;
    color: #023E86;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    background-color: transparent;
    border-radius: 3px;
}

.form-control::placeholder {
    color: #00214E;
    opacity: 0.36;
}

.form-control:focus {
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}


/* for custom checkbox */

.custom_checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 14px;
    line-height: 18px;
    color: #00214E;
    opacity: 0.6;
    font-weight: 500;
}

.custom_checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 20px;
    width: 20px;
    background: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 3px;
}

.custom_checkbox input:checked~.checkmark {
    border: 1px solid #023E86;
    background: #023E86;
}

.custom_checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom_checkbox input:checked~.checkmark:after {
    display: block;
}

.custom_checkbox .checkmark:after {
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* The custom radio */

.custom_radio {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 12px;
    line-height: 18px;
    color: #023E86;
    font-weight: 500;
}

.custom_radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.custom_radio .checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 17px;
    width: 17px;
    border-radius: 50%;
    border: 1px solid #0092FF;
    box-sizing: border-box;
    background-color: transparent;
}

.custom_radio input:checked~.checkmark {
    border: 1px solid #0092FF;
}

.custom_radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom_radio input:checked~.checkmark:after {
    display: block;
}

.custom_radio .checkmark:after {
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0092FF;
}


/* ================= for dashboard page ============== */

.main_wrapper {
    width: 100%;
    overflow: hidden;
    display: inline-flex;
}


/* for sidebar */

.sideBar_section {
    width: 275px;
    position: relative;
}

.sidebar-wrapper {
    width: 275px;
    background-color: #00214e;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 2;
}

.sidebar-logo {
    padding: 12px 10px;
}

a.menu_toggle_link {
    display: inline-flex;
}

.menu_toggle_link .logo {
    width: 40px;
    margin-right: 10px;
}

.menu_toggle_link .logo_content {
    margin-top: 6px;
}

.menu_toggle_link .logo_content .h6-tittle {
    color: #fff;
    margin-bottom: 0px;
}

.menu_toggle_link .logo_content img {
    width: 65px;
}

.nav_link_icons {
    width: 18px;
    margin-right: 12px;
}

.sidebar-menu a.nav-link {
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    padding: 10px 0 10px 20px;
    position: relative;
}

.sidebar-menu a.nav-link.active {
    background: transparent linear-gradient(271deg, #022E6A 0%, #01173500 100%) 0% 0% no-repeat padding-box;
    border-right: 5px solid #0780DB;
}

.card {
    background-color: transparent;
    padding: 0;
    border: 0px;
    border-radius: 0px;
}

.card-header {
    padding: 0px;
    margin-bottom: 0;
    background-color: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0px;
    position: relative;
    border-bottom: 0px;
}

.card-header button {
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
}

.card-header button:hover {
    color: #fff;
    text-decoration: none !important;
}

.card-header button.collapsed:hover {
    color: #fff;
    text-decoration: none !important;
}

.card-header button i.fa {
    position: absolute;
    top: 38%;
    right: 15px;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0 0 0 35px;
    border: 0px;
}

.sidebar-menu .card-body a.nav-link {
    font-weight: 500;
}

.collapse.show .card-body {
    background: #001839 0% 0% no-repeat padding-box;
}

span.en_num {
    background: #FF4D00 0% 0% no-repeat padding-box;
    border-radius: 40px;
    padding: 3px 10px;
    position: absolute;
    right: 10px;
    top: 16px;
    line-height: 14px;
}

.shield_info {
    width: 12px;
    height: 12px;
    background: #FF0000 0% 0% no-repeat padding-box;
    border-radius: 100%;
    position: absolute;
    right: 15px;
    top: 20px;
}

span.add_sol {
    border: 1px solid #FFFFFF;
    border-radius: 2px;
    line-height: 14px;
    padding: 0 5px;
    position: absolute;
    right: 15px;
    top: 18px;
}


/* for sidebar end */


/* for toggle menu */

header.md_header {
    background-color: #00214e;
    padding: 12px 10px 12px 0;
    display: none;
}

button.btn.md_toggle_btn {
    background-color: transparent;
    padding: 0;
    border-radius: 0px;
    border: 0px;
    margin-top: 8px;
}

.toggle_icon {
    width: 30px;
    height: 4px;
    background-color: #fff;
    margin: 6px 0;
    border-radius: 10px;
}


/* for toggle menu end */

.mainContent_section {
    width: 80%;
    margin: 0 auto;
    overflow: hidden;
}


/* ==============  for Enquiries page ================ */

.enquiries_left_wrapper {
    border-right: 1px solid #dcdcdc;
}

.right_side_bar {
    background-color: #fff;
    box-shadow: 0px 3px 20px #00000029;
    padding: 16px 30px 10px;
}

.enquiries_contentOne {
    margin-top: 20px;
}

.enqiries_tabOne {
    width: 100%;
    overflow-x: auto;
    padding-top: 15px;
    padding-left: 25px;
    padding-right: 10px;
}

.enqiries_tabOne .nav-tabs {
    border-bottom: 1px solid #dcdcdc;
}

.enqiries_tabOne .nav-tabs .nav-link {
    border: 0px;
    border-radius: 0px;
    font-size: 14px;
    line-height: 24px;
    color: #023E86;
    font-weight: 600;
    padding: 8px 20px;
}

.enqiries_tabOne .nav-tabs .nav-link.active {
    background-color: transparent;
    border-bottom: 3px solid #0780DB;
}

.search_boxOne {
    padding-left: 25px;
    padding-right: 10px;
}

.form-controlTwo {
    font-size: 14px;
    line-height: 24px;
    color: #023E86;
    font-weight: 500;
    background: #EFEFEF;
    border-radius: 10px;
    border: 0px;
    padding: 10px 40px;
    height: auto;
}

.form-controlTwo::placeholder {
    color: #023E86;
    opacity: 0.3;
}

.search_boxOne .form-group i {
    color: #0780DB;
    position: absolute;
    top: 16px;
    left: 12px;
    font-size: 14px;
}

.enquiry_list_wrapper li.en_list {
    padding-left: 25px;
    border-bottom: 1px solid #dcdcdc;
    padding-bottom: 5px;
    position: relative;
    margin-bottom: 20px;
    cursor: pointer;
}

.enquiry_list_wrapper li.en_list.active {
    border-right: 4px solid #0780DA;
}

.active_ico {
    width: 13px;
    height: 13px;
    background-color: #32C65E;
    border-radius: 100%;
    position: absolute;
    top: 4px;
    right: 12px;
}

span.time_indic {
    font-size: 12px;
    line-height: 18px;
    color: #00214E;
    font-weight: 500;
    position: absolute;
    right: 12px;
    bottom: 8px;
}

.enquiries_right_wrapper {
    width: 100%;
    height: 100%;
    display: block;
}

/* .enquiries_right_wrapper.wrapper_show {
    display: block;
} */

.enquiries_right_wrapperOne {
    background: transparent linear-gradient(272deg, #FFFFFF00 0%, #F0F0F0 100%);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 35%;
    padding-left: 30px;
    border-right: 1px solid #dcdcdc;
    padding-right: 15px;
    height: 133%;
}

.enquiries_right_wrapperOne .inner_box1 {
    border-bottom: 1px solid #dcdcdc;
    padding: 15px 0 10px;
}

.enquiries_right_wrapperOne .inner_box2 {
    padding: 20px 0;
}

.enquiries_right_wrapperTwo {
    padding-right: 15px;
}

.enquiries_right_wrapperTwo .inner_wrapOne {
    padding: 15px 0 10px;
}

button.btn.add_action_btn {
    background-color: transparent;
    padding: 0;
    border: 0px;
    border-radius: 0px;
    font-size: 47px;
    line-height: 30px;
    color: #023E86;
}

.enquiries_right_wrapperTwo .inner_wrapTwo .history_box {
    background: #F5F5F5 0% 0% no-repeat padding-box;
    border-radius: 10px;
    padding: 12px 25px;
}

.enquiries_right_wrapperTwo .inner_wrapTwo .para-desc3 {
    text-align: right;
    opacity: 0.4;
}


/* for modal  */

.modal.right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 410px;
    height: 100vh;
}

.modal.right .modal-dialog {
    right: -410px;
    transition: all 0.5s;
}

.modal.right.show .modal-dialog {
    right: 0;
}

.modal-content {
    height: 100%;
}

.modal.right.show .modal-dialog .close {
    float: right;
    font-size: 30px;
    font-weight: 400;
    line-height: 25px;
    color: #023E86;
    text-shadow: none;
    opacity: 1;
}

.modal.right.show .modal-dialog .modal-body {
    padding: 30px 40px;
}

.post_now_btn {
    background: #068FDF 0% 0% no-repeat padding-box;
    border-radius: 4px;
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    font-weight: 600;
    border: 0px;
    padding: 10px 30px;
}

.modal.right .modal-dialog .modal-body .post_now_btn {
    width: 100%;
}


/* ==============  for add new solution page ================ */

.wizard-inner .nav-tabs {
    border-bottom: 0px;
}

.wizard-inner .nav-tabs li a {
    font-size: 14px;
    line-height: 24px;
    color: #023E86;
    opacity: 0.34;
    font-weight: 500;
    padding-right: 40px;
    position: relative;
}

.wizard-inner .nav-tabs li.active a {
    font-weight: 700;
    opacity: 1;
}

.wizard-inner .nav-tabs li a::before {
    content: "";
    width: 42px;
    height: 42px;
    border: 1px solid;
    border-color: #e2e2e2 #e2e2e2 transparent transparent;
    position: absolute;
    top: -11px;
    right: 20px;
    transform: rotate(45deg);
    opacity: 1;
    z-index: 2;
}

.wizard-inner .nav-tabs li:last-child a::before {
    display: none;
}

.step_left_wrapper {
    border-right: 1px solid #dcdcdc;
    padding: 25px 60px;
}

.step_left_wrapper .h5-tittle {
    margin-bottom: 20px;
}

.step_left_wrapper .form-control {
    margin-top: 15px;
}

.step_left_wrapper .para-desc2 {
    opacity: 0.6;
}

.position_relative {
    width: 100%;
    display: inline-flex;
}
span.url_txt {
    font-size: 14px;
    line-height: 22px;
    color: #00214E;
    font-weight: 500;
    padding: 8px 20px;
    border: 1px solid #e0e0e0;
    border-right-color: rgb(224, 224, 224);
    border-right-style: solid;
    border-right-width: 1px;
    border-right: 0px;
    margin-top: 15px;
    height: 38px;
    width: 42%;
}

.step_left_wrapper .tag_btn_box {
    position: absolute;
    left: 15px;
    bottom: 4px;
}

button.btn.tag_btn {
    background: #D0E9FC 0% 0% no-repeat padding-box;
    border-radius: 3px;
    font-size: 14px;
    line-height: 22px;
    color: #00214E;
    font-weight: 500;
    padding: 3px 10px;
}

.continue_btn {
    background: #0092FF 0% 0% no-repeat padding-box;
    border-radius: 5px;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    font-weight: 600;
    padding: 10px 30px;
    margin-top: 20px;
}

.step_right_wrapper {
    padding: 25px 15px 25px 0;
}

.step_right_wrapper .para-desc2 {
    opacity: 0.6;
}

.step_right_wrapper ul.unstyled_list {
    list-style-type: none;
    padding-left: 30px;
}

.step_right_wrapper ul.unstyled_list li {
    position: relative;
    margin-top: 25px;
}

.step_right_wrapper ul.unstyled_list li i {
    position: absolute;
    font-size: 22px;
    left: -30px;
    color: #00D35A;
}

.step_right_wrapper .right_inner_wrap {
    border-bottom: 1px solid #dcdcdc;
    margin-bottom: 16px;
}

.step_right_wrapper .right_inner_wrap.active {
    position: relative;
}

.step_right_wrapper .right_inner_wrap.active::before {
    content: "";
    width: 4px;
    height: 96px;
    background: #0780DA 0% 0% no-repeat padding-box;
    position: absolute;
    top: -25px;
    left: -31px;
}

.find_url_input {
    border-radius: 0px 3px 3px 0px;
}

.page_biulder_boxOne {
    text-align: center;
}

.page_biulder_boxOne .para-desc2 a {
    color: #023E86;
    text-decoration: underline !important;
    margin-left: 12px;
}

.page_biulder_boxTwo {
    background: #C0E5FF 0% 0% no-repeat padding-box;
    height: 290px;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

.page_biulder_boxTwo .inner_wrap {
    width: 45%;
    margin: 0 auto;
    text-align: center;
}

#cover_img {
    display: none;
}

label.add_cover_img {
    background: #0780DA 0% 0% no-repeat padding-box;
    border: 1px solid #0780DA;
    border-radius: 4px;
    font-size: 14px;
    line-height: 32px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    padding: 0 15px;
    cursor: pointer;
}

.page_biulder_boxThree {
    margin-top: -50px;
}

#logo_img {
    display: none;
}

label.add_logo_img {
    width: 85px;
    height: 85px;
    background: #E7F5FF 0% 0% no-repeat padding-box;
    border: 5px solid #FFFFFF;
    border-radius: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 70px;
    color: #0780DA;
    font-weight: 400;
    margin-left: 20px;
    cursor: pointer;
}

.page_biulder_boxFour {
    margin-top: 20px;
    margin-bottom: 15px;
}

.common_btn {
    background: #F7F7F7 0% 0% no-repeat padding-box;
    border-radius: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #0780DA;
    font-weight: 500;
    padding: 5px 15px;
}

.common_btn:hover {
    background: #0780DA 0% 0% no-repeat padding-box;
    color: #fff;
}

.page_biulder_boxFive {
    padding: 15px 0;
    border-top: 1px solid #dcdcdc;
}

.page_biulder_boxFive .para-desc {
    margin-top: 8px;
}

.done_status_btn {
    background: #32C65E 0% 0% no-repeat padding-box;
    color: #fff;
    padding: 5px 23px;
}

.done_status_btn:hover {
    background: #32C65E 0% 0% no-repeat padding-box;
}

.back_btn {
    background-color: transparent;
    padding: 0px;
}

.back_btn img {
    width: 40px;
}

.add_about_wrapper .inner_wrapTwo,
.add_priceList_wrapper .inner_wrapTwo {
    margin: 20px 0;
}

.add_about_wrapper .inner_wrapTwo .h5-tittle,
.add_priceList_wrapper .inner_wrapTwo .h5-tittle {
    margin-bottom: 0;
}

.add_about_wrapper,
.add_priceList_wrapper {
    display: none;
}

.price_inner_wrapOne {
    padding: 25px 0;
    border-top: 1px solid #dcdcdc;
    position: relative;
    width: 100%;
    overflow-x: auto;
}

.price_inner_wrapOne::before {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    border: 1px solid;
    border-color: #dcdcdc #dcdcdc transparent transparent;
    position: absolute;
    top: -8px;
    right: 5%;
    transform: rotate(-45deg);
}

.price_inner_wrapOne .table tr td {
    padding: 30px 0;
    vertical-align: middle;
    border-top: 0px;
    border-bottom: 1px solid #dcdcdc;
}

.price_inner_wrapOne .table tr:nth-child(1) td {
    padding-top: 10px;
}

.price_inner_wrapOne .table tr td:last-child {
    text-align: right;
}

.price_inner_wrapOne .table tr td .switch {
    top: 6px;
}

.price_inner_wrapOne .form-control {
    width: 115px;
    margin-right: 10px;
    margin-top: 0px;
}

.price_inner_wrapOne .add_btnTwo {
    margin-left: 20px;
}

.add_btnTwo {
    background: #0092FF 0% 0% no-repeat padding-box;
    border-radius: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 600;
    padding: 5px 20px;
}

.price_inner_wrapTwo {
    padding: 25px 0;
    border-top: 1px solid #dcdcdc;
}

.price_inner_wrapTwo .para-desc {
    margin-right: 10px;
}

.edit_delete_btn {
    background-color: transparent;
    padding: 0px;
    border: 0px;
    font-size: 14px;
    line-height: 21px;
    color: #023E86;
    font-weight: 700;
}

.price_inner_wrapTwo .edit_delete_btn {
    margin-left: 10px;
}


/* for custom switch */

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 14px;
    margin-top: 6px;
    margin-left: 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 0;
    bottom: -2px;
    background-color: #0780DA;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch input:checked+.slider {
    background-color: #BBE2FF;
}

.switch input:focus+.slider {
    box-shadow: 0 0 1px #BBE2FF;
}

.switch input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch .slider.round {
    border-radius: 20px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.add_services_wrapper {
    display: none;
}

.services_inner_wrapOne {
    margin-bottom: 30px;
}

button.btn.add_more_btn {
    background-color: transparent;
    border: 0px;
    padding: 0;
    font-size: 14px;
    line-height: 18px;
    color: #023E86;
    font-weight: 600;
}

.add_features_wrapper {
    display: none;
}

.features_inner_wrapOne {
    background-color: #F4F9FC;
    padding: 10px 15px;
}

.features_inner_wrapOne .para-desc2 {
    margin-top: 8px;
    margin-bottom: 0px;
}

.features_inner_wrapOne .form-control {
    margin-top: 0px;
    border: 0px;
    border-left: 1px solid #e0e0e0;
    border-radius: 0px;
}

.features_inner_wrapTwo {
    padding: 10px 15px;
}

.features_inner_wrapTwo .para-desc2 {
    margin-top: 8px;
    margin-bottom: 0px;
}

.features_inner_wrapTwo .form-control {
    margin-top: 0px;
    border: 0px;
    border-left: 1px solid #e0e0e0;
    border-radius: 0px;
}

.add_ourclients_wrapper {
    display: none;
}

.ourclients_inner_wrapOne {
    width: 100%;
    display: inline-flex;
}

button.btn.add_logo_btn {
    background-color: transparent;
    border: 1px solid #E0E0E0;
    border-radius: 3px;
    font-size: 14px;
    line-height: 18px;
    color: #023E86;
    font-weight: 500;
}

.ourclients_inner_wrapOne .add_logo_btn {
    margin-right: 12px;
}

.ourclients_inner_wrapOne .form-control {
    margin-top: 0px;
    margin-right: 12px;
}

.ourclients_inner_wrapOne .continue_btn {
    margin-top: 0px;
    padding: 3px 30px;
}

.ourclients_inner_wrapTwo img {
    width: 60px;
    margin-right: 15px;
}

.ourclients_inner_wrapTwo .para-desc span {
    margin-right: 30px;
}

.ourclients_inner_wrapTwo .switch {
    top: 5px;
}

.add_awards_wrapper {
    display: none;
}

.add_resallers_wrapper {
    display: none;
}

.resellers_inner_wrapOne {
    border: 1px solid #dcdcdc;
    margin-top: 25px;
    margin-bottom: 25px;
    padding-top: 10px;
}

.reseller_table .first_td img {
    width: 120px;
}

.reseller_table td {
    vertical-align: middle;
}

p.star_icon i {
    color: #ffc107;
}

.reseller_table td.second_td .para-desc2 span {
    background: #068fdf21;
    border-radius: 5px;
    padding: 4px 16px;
}

button.btn.invite_btn {
    background: #def0fb80;
    border-radius: 4px;
    font-size: 14px;
    line-height: 20px;
    color: #023E86;
    font-weight: 700;
}

span.pending_txt {
    font-size: 14px;
    line-height: 22px;
    color: #C5C5C5;
    font-weight: 600;
}

span.accept_txt {
    font-size: 14px;
    line-height: 22px;
    color: #0CB500;
    font-weight: 600;
}

.add_testimonials_wrapper {
    display: none;
}

.faqs_inner_wrapTwo .switch {
    top: 5px;
}

.add_faqs_wrapper {
    display: none;
}

.trustseal_img_wrap {
    width: 200px;
    margin: 0 auto;
}

button.btn.next-step.skip-btn {
    background-color: transparent;
    padding: 0px;
    border: 0px;
    font-size: 14px;
    line-height: 23px;
    color: #00214E;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 60px;
    margin-top: 15px;
}

.getverified_main_wrapper {
    margin-top: 50px;
}

.getverified_video_wrap {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

.getverified_video_wrap svg {
    position: absolute;
    top: 35px;
    left: 35%;
}

.getverified_main_wrapper .progress {
    height: 13px;
    border-radius: 20px;
    background-color: #f5f5f5;
}

.getverified_main_wrapper .progress-bar {
    width: 30%;
    background-color: #32C65E;
    border-radius: 20px;
}

.getverified_table_wrapper {
    margin-top: 30px;
}

.getverified_table tr td {
    vertical-align: middle;
}

.getverified_table tr td:nth-child(2) {
    width: 130px;
}

.add_business_wrapper {
    display: none;
}

.finalstep_inner_wrapOne {
    background: #D9FDE4;
    padding: 12px 0;
    text-align: center;
}

.finalstep_left_wrapper {
    border-right: 1px solid #dcdcdc;
}

.finalstep_inner_wrapOne .para-desc {
    color: #32C65E;
}

.finalstep_inner_wrapTwo {
    padding: 25px 40px;
}

.finalstep_inner_wrapTwo_boxOne .circle_box {
    width: 54px;
    height: 54px;
    background: #E7E7E7;
    border-radius: 100%;
    margin-bottom: 12px;
}

.grading_process_wrapper .left_wrapper {
    border-right: 1px solid #dcdcdc;
    padding: 30px 50px;
}

.grading_process_wrapper .inner_wrapTwo {
    margin-top: 30px;
}

.gp_inner_boxOne {
    border: 1px solid #d6d6d6;
    margin-top: 20px;
    padding: 15px 10px 0;
    border-radius: 5px;
}

p.tick_ico {
    margin-bottom: 0px;
    color: #32C65E;
}

.marketing_wrapper .left_wrapper {
    border-right: 1px solid #dcdcdc;
    padding: 30px;
    background-image: linear-gradient( #068fdf14 0%, #068FDF00 30%);
}

.marketing_wrapper .left_wrapper .h5-tittle {
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 30px;
}

.marketing_inner_boxOne {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #DDDDDD;
    border-radius: 10px;
    padding: 37px 24px;
    margin-top: 20px;
}

.marketing_inner_boxOne.bd_active {
    border: 3px solid #068FDF;
}

.marketing_inner_boxOne .circle_wrap {
    width: 47px;
    height: 47px;
    background: #EFEFEF;
    border-radius: 100%;
    margin-bottom: 15px;
}

button.btn.remove_btn {
    background: #FFA1A1 0% 0% no-repeat padding-box;
    border-radius: 5px;
    font-size: 14px;
    line-height: 24px;
    color: #FF0000;
    font-weight: 700;
    margin-top: 20px;
}

button.btn.select_btn {
    border: 1px solid #99BDF2;
    border-radius: 5px;
    background-color: transparent;
    font-size: 14px;
    line-height: 24px;
    color: #023E86;
    font-weight: 700;
    margin-top: 20px;
}

button.btn.select_btn:hover {
    background-color: #023e86;
    color: #fff;
}

a.edit-solution-link {
    border: 1px solid #CECECE;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 14px;
    line-height: 22px;
    color: #023E86;
    position: relative;
    top: -6px;
}

.products_wrapper {
    margin-top: 60px;
    border-top: 1px solid #dcdcdc;
}

.product_left_wrapper {
    margin-left: 40px;
    border-left: 1px solid #dcdcdc;
    border-right: 1px solid #dcdcdc;
}

.product_left_wrapper .inner_wrapOne {
    padding: 0 25px;
}

.product_left_wrapper .inner_wrapOne .img_boxOne {
    margin-top: -20px;
    width: 90%;
}

.product_left_wrapper .inner_wrapOne .content_wrapOne {
    padding-top: 30px;
}

.product_left_wrapper .inner_wrapOne .content_wrapOne .para-desc2 span {
    background: #FFFAAD 0% 0% no-repeat padding-box;
    border-radius: 3px;
    font-size: 11px;
    padding: 5px 10px 5px 30px;
}

img.sol_img {
    width: 24px;
    margin-top: -52px;
}

.product_left_wrapper .inner_wrapTwo {
    padding: 30px 25px;
    border-bottom: 1px solid #dcdcdc;
}

.small_business_box {
    width: 100%;
    display: inline-flex;
}

.product_left_wrapper .inner_wrapThree .grp_prog_service {
    padding-top: 40px;
}

.product_left_wrapper .inner_wrapThree .row.row_spacerr.load_bar {
    margin-top: 30px;
}

.product_left_wrapper .inner_wrapThree .comp_prog.position-relative .icon_pos {
    position: absolute;
    top: -26px;
}

.product_left_wrapper .inner_wrapThree .comp_prog.position-relative .icon_pos p.real_time_num {
    font-size: 14px;
    color: #023E86;
}

.product_left_wrapper .inner_wrapThree .comp_prog.position-relative span.target_num {
    position: absolute;
    right: -20px;
    top: -2px;
    font-size: 14px;
}

.product_left_wrapper .inner_wrapThree .progress.h14.prog.prog_only_blue.no_radius {
    margin-top: 3px;
}

.product_left_wrapper .inner_wrapThree p.triangle {
    width: 0;
    height: 0;
    border: 5px solid;
    border-color: #656565 transparent transparent;
    position: absolute;
    bottom: -8px;
}

.product_right_wrapper .nav-tabs {
    border-bottom: 1px solid #D4D4D4;
    margin-top: 15px;
}

.product_right_wrapper .nav-tabs .nav-link {
    border: 0px;
    border-radius: 0px;
    font-size: 14px;
    line-height: 24px;
    color: #02377D;
    font-weight: 700;
}

.product_right_wrapper .nav-tabs .nav-link.active {
    color: #023e86;
    border-bottom: 3px solid #0691E0;
}

.small_business_box .img-box1 {
    background: transparent linear-gradient(180deg, #0082FF 0%, #00B2FF 100%) 0% 0% no-repeat padding-box;
    width: 46px;
    height: 46px;
    padding: 12px;
    border-radius: 100%;
    margin-right: 12px;
}

.small_business_box .img-box2 {
    background: transparent linear-gradient(180deg, #FF9900 0%, #FFDD00 100%) 0% 0% no-repeat padding-box;
    width: 46px;
    height: 46px;
    padding: 12px;
    border-radius: 100%;
    margin-right: 12px;
}

.small_business_box .para-desc2 {
    font-size: 12px;
    margin-bottom: 4px;
}

.small_business_box img {
    filter: brightness(0) invert(1);
}

.wrapper_pf {
    padding-left: 36px;
    padding-top: 26px;
    padding-bottom: 12px;
    padding-right: 36px;
}

.micro_metre_wrap {
    padding-top: 10px;
    padding-bottom: 22px;
    border-bottom: 1px solid #dcdcdc;
}

.brf_box {
    width: 177px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 11px 1px rgba(0, 0, 0, 0.1);
}

.brf_ss {
    align-self: center;
    padding-left: 16px;
    font-weight: 700;
    color: #023E86;
}

.brf_num {
    font-size: 28px;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}

.blue_green_gradient {
    background: #04fd8c;
    background: -moz-linear-gradient(top, #04fd8c 0%, #00acfc 100%);
    background: -webkit-linear-gradient(top, #04fd8c 0%, #00acfc 100%);
    background: linear-gradient(to bottom, #04fd8c 0%, #00acfc 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#04fd8c', endColorstr='#00acfc', GradientType=0);
    color: #fff;
}

.row_scvorr {
    padding-top: 20px;
    padding-bottom: 0px;
    border-bottom: 1px solid #dcdcdc;
}

.metre_wrapper {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
}

.mertre_location {
    width: 200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.mertre_location svg {
    position: absolute;
    left: 32%;
    top: 16%;
}

.avr_rating {
    margin-top: 10px;
    text-align: center;
}

.avr_rating span {
    background: transparent linear-gradient(90deg, #FFF700 0%, #FFEF5D 100%) 0% 0% no-repeat padding-box;
    font-size: 18px;
    line-height: 26px;
    color: #023E86;
    font-weight: 700;
    border-radius: 100px;
    padding: 10px 23px;
    position: relative;
}

.avr_rating>span::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #fff608 transparent;
    content: "";
    position: absolute;
    left: 90px;
    top: -10px;
}

.grp_prog_service .h6-tittle {
    color: #023e86;
}

.icon_pos {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

label.error {
    color: var(--red);
    font-size: 14px;
}


/* ---------11 March (Mustafa)--------- */

.url_txt.w_40_perc{
    width: 40%;
}
.h_45{
    height: 45px !important;
}

span.url_txt.h_45{
    display: flex;
    align-items: center;
}
.p_10{
    padding: 10px !important;
}
.tag_pdng .bootstrap-tagsinput{
    padding: 10px;
}

.p_t_70{
    padding-top: 70px;
}
.p_r_100{
    padding-right: 100px;
}
.w_30{
    width: 30px;
}
.mr_20{
    margin-right: 20px;
}

.cmn_f_size_clr{
    color: #023E86;
    font-size: 14px;
    font-weight: 700;
}
.m_rl_7{
    margin-right: 7px;
    margin-left: 7px;
}
.header_nav_pdng li{
    padding: 0px 10px;
}

.micro_switch{
    width: 50px;
    margin-left: 0;
    height: 15px;
}
.micro_switch.switch input:checked+.slider{
    background-color: #B9FFBC;
}

.micro_switch.switch input:checked+.slider:before{
    background-color: #00D35A;
}

.micro_switch.switch .slider:before{
    background-color: #848484;
    width: 22px;
    height: 22px;
    bottom: -3px;
}

.micro_switch.switch input:checked+.slider:before{
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}
.f_20{
    font-size: 20px;
}

.max_w_60{
    max-width: 60%;
}
.m_tb_20{
    margin-top: 20px;
    margin-bottom: 20px;
}
.border_bottom{
    border-bottom: 1px solid #dcdcdc;
}
.sol_table{
    margin: 80px 0;
}

.sol_table_row{
    padding: 15px 0;
    border-top: 1px solid #dcdcdc;
    align-items: center;
}
.clr_green{
    color: #00D35A;
}
.clr_grey{
    color: #848484;
}

.sol_table_row p{
    margin: 0 !important;
}

.foo_style{
    padding-left: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D1D1D1;
    /* justify-content: center; */
}

.foo_belwo.foo_style > div{
    padding-right: 17px;
    padding-top: 9px;
    padding-bottom: 9px;
    position: relative;
    min-height: 70px;
    /* min-width: 180px; */
}
.foo_style .border_right{
    border-right: 1px solid #D1D1D1;
}

.foo_belwo > div{
    margin-right: 16px;
}
.f10{
    font-size: 10px;
}
.color_blue{
    color: #023e86 !important;
}
.progress.w_45{
    width: 45px !important;
}

.wrp_tab_liner .dash_tab_active .active{
    border-bottom: 3px solid #02377D !important;
}


.left-content,
.right-content{
    width: 50%;
}

.tab_controller .nav-tabs .nav-link.active{
    background-color: #068fdf !important;
    border-color: #068fdf !important;
}

.tab_controller .nav-tabs .nav-link:hover{
    border-bottom: none;
}

.tab_controller .first_tab a{
    border-top-left-radius: 3px !important;
    border-bottom-left-radius: 3px !important;
}

.tab_controller .last_tab a{
    border-top-right-radius: 3px !important;
    border-bottom-right-radius: 3px !important;
}


.d_inline_block{
    display: inline-block;
}


.date_tabs{
    margin-left: 30px;
}

.date_tabs li{
    padding: 8px 20px;
    border: 1px solid #D1D1D1;
}


.date_tabs li a{
    font-size: 14px;
    font-weight: 500;
    color: #02377D;
}

.date_tabs .first_tab{
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.date_tabs .last_tab{
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    border-left: none;
}

.input-group-addon.pos_b_4{
    bottom: 0px !important;
    color: #02377D !important;
    margin-left: 10px;
    position: unset !important;
}
.input-group-addon.pos_b_4 img{
    margin-top: -3px;
}

.date_tabs input{
    position: absolute !important;
    visibility: hidden;
}

.sm_date_w.w_100{
    width: 100% !important;
    align-items: center;
}

.cursor_point{
    cursor: pointer;
}


/* ---------12 March (Mustafa)--------- */

.light_blue_cir{
    background-color: #CDEDFF;
}
.green_cir{
    background-color: #00E135;
}

.custom_order{
    width: 20%;
}

.m_b_120{
    margin-bottom: 120px;
}

.video_wrapper{
    position: relative;
}
.ex_solution_video.video_wrapper{
    position: relative;
}

.ex_solution_video.video_wrapper::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(at 78%, #0000002e, #000000ba, #000);
    z-index: 0;
}


.ser_vidd{
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.vid_control{
    position: absolute;
    top: 0px;
    display: flex;
    width: 100%;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
}

.vid_control a{
    position: relative;
    z-index: 1;
}

.vid_control a i{
    font-size: 120px;
    color: #fff;
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 20%);
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.cyber_logo{
    position: absolute;
    top: -18px;
    right: 0px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    left: 0px;
}

.m_b_50{
    margin-bottom: 50px;
}

.w_auto{
    width: auto;
}

.d_none{
    display: none;
}

.d_none.show{
    display: block;
}
.p_t_50{
    padding-top: 50px;
}
.ser_sec_top .container.p_b_25{
    padding-bottom: 25px;
}
.m_t_10{
    margin-top: 10px;
}
.up_down{
    list-style: none;
}
.ser_sec_top .wrpper_dbb .m_b_20{
    margin-bottom: 20px;
}
.up_down li{
    width: 70px;
}
.up_down li:first-child a{
    border-radius: 6px 0 0 6px;
}
.up_down li:first-child a{
    border-right: none;
}
.up_down li a {
    width: 100%;
    border: 1px solid #ddd;
    padding: 7px 0;
}
.up_down li:last-child a {
    border-radius: 0px 6px 6px 0px;
}
.m_l_10{
    margin-left: 10px;
}
.f600 {
    font-weight: 600;
}

.wrp_srv_top{
    width: 145px;
    /* margin: 0px auto; */
}

.cyber_sol {
    margin-top: 18px;
    margin-bottom: 10px;
}
.cyber_sol img{
    width: 12px;
    background-color: #FFFDE2;
}
.f11 {
    font-size: 11px;
}
.bg_yellow_sol_light {
    background: #FFFDE2;
    font-style: italic;
}
.quee {
    width: 15px;
    height: 15px;
    display: inline-block;
    text-align: center;
    border: 1px solid #022E6A !important;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    font-size: 10px;
    font-weight: 700;
    line-height: 14px;
    margin-left: 2px;
    color: #022E6A !important;
    vertical-align: middle;
}
.star_rating i {
    color: var(--yellow-star);
    font-size: 21px;
}
.pos_t_20 {
    top: 20px;
}
.m_r_ch_8 > div {
    /* margin-right: 32px; */
    position: relative;
    padding-right: 20px;
    padding-left: 20px;
    /* flex: 1; */
}
.m_r_ch_8 > div h5.f16{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.m_r_ch_8 > div p.f12{
    font-size: 14px;
    font-weight: 500;
}

.f12 {
    font-size: 12px;
    line-height: 17px;
}
.m_r_ch_8 > div::after {
    content: "";
    background: #ddd;
    height: 70%;
    width: 1px;
    position: absolute;
    top: 0px;
    right: -0px;
}
.serv_third > div:first-child{
    padding-left: 0;
}

.serv_third > div:last-child::after{
    display: none;
}
.m_b_15 {
    margin-bottom: 15px;
}

.p_b_12 {
    padding-bottom: 12px;
}
.fix_width {
    width: 40px;
}
.w_50{
    width: 50px !important;
}
.price_wrapper {
    margin-bottom: 10px;
}
.f24 {
    font-size: 24px;
    line-height: 34px;
}
.prc_btn {
    margin-top: 20px;
}
.no_border {
    border: none !important;
}
.prc_btn a {
    display: block;
    width: 100%;
    text-align: center;
}
.price_sec_serive a {
    margin-right: 0px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
}
.btn_counter.bg_shine_blue.no-border.solid_btn {
    margin-right: 19px;
}
.grd_blue__light {
    background: #0690e0;
    background: -moz-linear-gradient(left, #0690e0 0%, #00c3fe 100%);
    background: -webkit-linear-gradient(left, #0690e0 0%,#00c3fe 100%);
    background: linear-gradient(to right, #0690e0 0%,#00c3fe 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0690e0', endColorstr='#00c3fe',GradientType=1 );
}


.btn_counter {
    font-weight: 700;
    padding: 12px 20px 12px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.solid_btn {
    border-color: #00abf8;
    color: #fff;
}
.price_sec_serive .prc_btn > div:last-child {
    margin-top: 10px;
}
.bg_dark_blue {
    background: #082c58;
}
.prc_btn > div:last-child a, .btn_mobb > a:last-child {
    border-color: var(--shine-blue);
}

.btn_counter.bg_shine_blue.no-border.solid_btn:hover, .btn_counter:hover, .inline_btn > li a:hover, .right_ar >a:hover {
    color: #fff !important;
    background: #082c58;
    border-color: #082c58;
}
.mas_left_wrapper .about_top_box {
    margin-bottom: 60px;
    padding-right: 40px;
}
.m_b_8 {
    margin-bottom: 8px;
}
.m_t_18 {
    margin-top: 18px;
}
.hide {
    display: none;
}
.mission_vision h5 > :first-child {
    margin-right: 8px;
}
.para_desc {
    font-size: 14px;
    line-height: 22px;
    color: #023E86;
}
.opa_60 {
    opacity: 0.60;
}
.mas_right_wrapper {
    width: 80%;
}
.demo-gallery > ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 0;
}
.demo-gallery > ul > li {
    width: 25.5%;
    padding: 15px 10px;
    position: relative;
}
.demo-gallery .gal_img {
    width: 100%;
    height: 105px;
    border-radius: 5px;
    overflow: hidden;
}
.demo-gallery > ul > li a .demo-gallery-poster {
    -webkit-transition: background-color 0.15s ease 0s;
    -o-transition: background-color 0.15s ease 0s;
    transition: background-color 0.15s ease 0s;
}
.demo-gallery .gal_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.demo-gallery > ul > li a .demo-gallery-poster > img {
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    -webkit-transition: opacity 0.3s ease 0s;
    -o-transition: opacity 0.3s ease 0s;
    transition: opacity 0.3s ease 0s;
    display: none;
}
.lg-toolbar{
    display: none;
}

.counter{
    background: var(--red);
    color: #fff;
    border-radius: var(--radius-10);
    padding: 1px 6px;
}
.counter_thumb .counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    background-color: transparent;
    font-size: 32px;
    font-weight: 700;
    cursor: pointer;
}
.wrp_thrice {
    padding: 30px 20px 30px 20px;
}
body .p_l_0 {
    padding-left: 0px;
}
@media only screen and (min-width: 1200px){
    .wrapper_mtr {
        margin-left: -45px;
        margin-bottom: 40px;
    }

}
.m_b_26 {
    margin-bottom: 26px;
}
.brf_box {
    width: 177px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    display: flex;
    justify-content: space-between;
    -webkit-border-radius: var(--radius-5);
    border-radius: var(--radius-5);
    -webkit-box-shadow: 0 0 11px 1px rgb(0 0 0 / 10%);
    box-shadow: 0 0 11px 1px rgb(0 0 0 / 10%);
}
.brf_ss {
    align-self: center;
    padding-left: 16px;
}
.blue_green_gradient {
    background: #04fd8c;
    background: -moz-linear-gradient(top, #04fd8c 0%, #00acfc 100%);
    background: -webkit-linear-gradient(top, #04fd8c 0%,#00acfc 100%);
    background: linear-gradient(to bottom, #04fd8c 0%,#00acfc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#04fd8c', endColorstr='#00acfc',GradientType=0 );
    color: #fff;
}
.brf_num {
    font-size: 28px;
    font-weight: 700;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}
.metrr_boundry {
    width: 240px;
}
.needle_point {
    display: inline-block;
    transform-origin: bottom;
    height: 136px;
    transform: rotate(-0deg);
    position: absolute;
    left: 105px;
    top: -15px;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
    width: 29px;
}

img[data-percentage="1"]{
    transform: rotate(-88.2deg);
}
img[data-percentage="2"]{
    transform: rotate(-86.2deg);
}
img[data-percentage="3"]{
    transform: rotate(-84.4deg);
}
img[data-percentage="4"]{
    transform: rotate(-82.6deg);
}
img[data-percentage="5"]{
    transform: rotate(-80.2deg);
}
img[data-percentage="6"]{
    transform: rotate(-78.4deg);
}
img[data-percentage="7"]{
    transform: rotate(-76.4deg);
}
img[data-percentage="8"]{
    transform: rotate(-73deg);
}
img[data-percentage="9"]{
    transform: rotate(-71.2deg);
}
img[data-percentage="10"]{
    transform: rotate(-69.4deg);
}

img[data-percentage="11"]{
    transform: rotate(-67.6deg);
}
img[data-percentage="12"]{
    transform: rotate(-65.8deg);
}
img[data-percentage="13"]{
    transform: rotate(-64deg);
}
img[data-percentage="14"]{
    transform: rotate(-62.2deg);
}
img[data-percentage="15"]{
    transform: rotate(-60.4deg);
}
img[data-percentage="16"]{
    transform: rotate(-58.6deg);
}
img[data-percentage="17"]{
    transform: rotate(-56.8deg);
}
img[data-percentage="18"]{
    transform: rotate(-55deg);
}
img[data-percentage="19"]{
    transform: rotate(-53.2deg);
}
img[data-percentage="20"]{
    transform: rotate(-51.4deg);
}

img[data-percentage="21"]{
    transform: rotate(-49.6deg);
}
img[data-percentage="22"]{
    transform: rotate(-47.8deg);
}
img[data-percentage="23"]{
    transform: rotate(-46deg);
}
img[data-percentage="24"]{
    transform: rotate(-44.2deg);
}
img[data-percentage="25"]{
    transform: rotate(-42.4deg);
}
img[data-percentage="26"]{
    transform: rotate(-40.6deg);
}
img[data-percentage="27"]{
    transform: rotate(-38.8deg);
}
img[data-percentage="28"]{
    transform: rotate(-37deg);
}
img[data-percentage="29"]{
    transform: rotate(-35.2deg);
}
img[data-percentage="30"]{
    transform: rotate(-33.4deg);
}

img[data-percentage="31"]{
    transform: rotate(-31.6deg);
}
img[data-percentage="32"]{
    transform: rotate(-29.8deg);
}
img[data-percentage="33"]{
    transform: rotate(-28deg);
}
img[data-percentage="34"]{
    transform: rotate(-26.2deg);
}
img[data-percentage="35"]{
    transform: rotate(-24.4deg);
}
img[data-percentage="36"]{
    transform: rotate(-22.6deg);
}
img[data-percentage="37"]{
    transform: rotate(-20.8deg);
}
img[data-percentage="38"]{
    transform: rotate(-19deg);
}
img[data-percentage="39"]{
    transform: rotate(-17.2deg);
}
img[data-percentage="40"]{
    transform: rotate(-15.4deg);
}

img[data-percentage="41"]{
    transform: rotate(-13.6deg);
}
img[data-percentage="42"]{
    transform: rotate(-11.8deg);
}
img[data-percentage="43"]{
    transform: rotate(-10deg);
}
img[data-percentage="44"]{
    transform: rotate(-8.2deg);
}
img[data-percentage="45"]{
    transform: rotate(-6.4deg);
}
img[data-percentage="46"]{
    transform: rotate(-4.6deg);
}
img[data-percentage="47"]{
    transform: rotate(-2.8deg);
}
img[data-percentage="48"]{
    transform: rotate(-1deg);
}
img[data-percentage="49"]{
    transform: rotate(-0.8deg);
}
img[data-percentage="50"]{
    transform: rotate(-0deg);
}

img[data-percentage="51"]{
    transform: rotate(1.8deg);
}
img[data-percentage="52"]{
    transform: rotate(3.6deg);
}
img[data-percentage="53"]{
    transform: rotate(5.4deg);
}
img[data-percentage="54"]{
    transform: rotate(7.2deg);
}
img[data-percentage="55"]{
    transform: rotate(9deg);
}
img[data-percentage="56"]{
    transform: rotate(10.8deg);
}
img[data-percentage="57"]{
    transform: rotate(12.6deg);
}
img[data-percentage="58"]{
    transform: rotate(14.4deg);
}
img[data-percentage="59"]{
    transform: rotate(16.2deg);
}
img[data-percentage="60"]{
    transform: rotate(18deg);
}

img[data-percentage="61"]{
    transform: rotate(19.8deg);
}
img[data-percentage="62"]{
    transform: rotate(21.6deg);
}
img[data-percentage="63"]{
    transform: rotate(23.4deg);
}
img[data-percentage="64"]{
    transform: rotate(25.2deg);
}
img[data-percentage="65"]{
    transform: rotate(27deg);
}
img[data-percentage="66"]{
    transform: rotate(28.8deg);
}
img[data-percentage="67"]{
    transform: rotate(30.6deg);
}
img[data-percentage="68"]{
    transform: rotate(32.4deg);
}
img[data-percentage="69"]{
    transform: rotate(34.2deg);
}
img[data-percentage="70"]{
    transform: rotate(36deg);
}

img[data-percentage="71"]{
    transform: rotate(37.8deg);
}
img[data-percentage="72"]{
    transform: rotate(39.6deg);
}
img[data-percentage="73"]{
    transform: rotate(41.4deg);
}
img[data-percentage="74"]{
    transform: rotate(43.2deg);
}
img[data-percentage="75"]{
    transform: rotate(45deg);
}
img[data-percentage="76"]{
    transform: rotate(46.8deg);
}
img[data-percentage="77"]{
    transform: rotate(48.6deg);
}
img[data-percentage="78"]{
    transform: rotate(50.4deg);
}
img[data-percentage="79"]{
    transform: rotate(52.2deg);
}
img[data-percentage="80"]{
    transform: rotate(54deg);
}

img[data-percentage="81"]{
    transform: rotate(55.8deg);
}
img[data-percentage="82"]{
    transform: rotate(57.6deg);
}
img[data-percentage="83"]{
    transform: rotate(59.4deg);
}
img[data-percentage="84"]{
    transform: rotate(61.2deg);
}
img[data-percentage="85"]{
    transform: rotate(63deg);
}
img[data-percentage="86"]{
    transform: rotate(64.8deg);
}
img[data-percentage="87"]{
    transform: rotate(66.6deg);
}
img[data-percentage="88"]{
    transform: rotate(68.4deg);
}
img[data-percentage="89"]{
    transform: rotate(70.2deg);
}
img[data-percentage="90"]{
    transform: rotate(72deg);
}

img[data-percentage="91"]{
    transform: rotate(73.8deg);
}
img[data-percentage="92"]{
    transform: rotate(75.6deg);
}
img[data-percentage="93"]{
    transform: rotate(77.4deg);
}
img[data-percentage="94"]{
    transform: rotate(79.2deg);
}
img[data-percentage="95"]{
    transform: rotate(81deg);
}
img[data-percentage="96"]{
    transform: rotate(82.8deg);
}
img[data-percentage="97"]{
    transform: rotate(84.6deg);
}
img[data-percentage="99"]{
    transform: rotate(86.4deg);
}
img[data-percentage="99"]{
    transform: rotate(88.2deg);
}
img[data-percentage="100"]{
    transform: rotate(90deg);
}
.avr_rating_1 {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 100%;
}
.f79 {
    font-size: 60px;
    line-height: 61px;
}
.avr_rating_1 > span {
    color: #022E6A;
    border-radius: 100px;
    position: relative;
    display: block;
}
.avr_rating_1 > span {
    color: #022E6A;
    border-radius: 100px;
    position: relative;
    display: block;
}

.avr_rate {
    background: #fff700;
    background: -moz-linear-gradient(top, #fff700 0%, #ffaa00 100%);
    background: -webkit-linear-gradient(top, #fff700 0%,#ffaa00 100%);
    background: linear-gradient(to bottom, #fff700 0%,#ffaa00 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff700', endColorstr='#ffaa00',GradientType=0 );
    padding: 8px 18px 8px 18px;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block !important;
    position: relative;
    margin-top: 11px;
}

.avr_rate::before {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 12px 7px;
    border-color: transparent transparent #FFF700;
    content: "";
    position: absolute;
    top: -10px;
    left: 45%;
}

.metre_wrapper_1{
    width: 277px;
    margin: 0 auto;
    margin-top: 0px;
    margin-left: auto;
    margin-left: auto;
    margin-left: auto;
    position: relative;
    margin-top: 40px;
}
.minus_lr_15 {
    margin-left: -15px;
    margin-right: -15px;
}
.wrapper_grp_pff {
    position: relative;
}
.grp_pff {
    margin-bottom: 9px;
}
.no_line .grp_pff {
    border-bottom: 1px solid #ddd;
    padding-top: 10px;
    padding-bottom: 10px;
}
.wrapper_grp_pff .row.grp_pff p {
    margin-bottom: 0 !important;
}
.comp_prog_1 {
    width: 84%;
}
.icon_pos {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    position: relative;
}
.triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 4px 0 4px;
    border-color: #595959 transparent transparent transparent;
}
.no_radius{
    border-radius: 0 !important;
}
.prog_only_blue > div {
    background: #0694e2 !important;
    background: -moz-linear-gradient(left, #0694e2 0%, #00c3ff 100%) !important;
    background: -webkit-linear-gradient(left, #0694e2 0%,#00c3ff 100%) !important;
    background: linear-gradient(to right, #0694e2 0%,#00c3ff 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0694e2', endColorstr='#00c3ff',GradientType=1 );
}
.real_time_num {
    font-size: 12px;
    position: absolute;
    top: -20px;
    color: #022E6A;
}

.target_num_1 {
    position: absolute;
    right: -23px;
    font-size: 14px;
    top: 2px;
    color: #023E86;
    font-weight: 500;
}
.progress.prog.no_radius{
    width: 100% !important;
}
.btn_transpaent > a {
    border: 1px solid;
    padding: 6px 12px;
    border-radius: 4px;
}
.max_w_70{
    max-width: 70%;
}
.p_t_80 {
    padding-top: 80px;
}
.specificationss {
    background: #f6f6f6;
    padding-left: 30px;
    padding-right: 30px;
}

.wrp_bgf {
    padding-top: 34px;
    padding-bottom: 38px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #D4D4D4;
    border-top: 3px solid #00abf8;
    background: #fff;
    border-radius: 0px 0px 5px 5px;
}
.popular {
    border: 3px solid #00abf8;
    background: #F5F9FE !important;
    position: relative;
}
.popular::before {
    position: absolute;
    right: 0px;
    content: "";
    width: 10px;
    height: 10px;
    border-style: solid;
    border-width: 0 26px 18px 0;
    border-color: transparent #00abf8 transparent transparent;
    top: 94px;
}
.popular::after {
    content: "Popular";
    position: absolute;
    right: -25px;
    background: #00abf8;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transform: rotate(90deg);
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 2px;
    padding-bottom: 4px;
    top: 43px;
}
.tag_month {
    display: inline-block;
    padding: 4px 20px;
    border-radius: 15px;
}
.tag_green {
    background: #00ffba;
}
a.btn_transparent {
    border: 1px solid #023e86;
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 7px;
    padding-bottom: 7px;
    border-radius: 8px;
    color: #023e86;
    transition: all 0.3s linear;
}
.btn_transparent:hover {
    background: #023e86;
    color: #fff;
}
.specificationss .owl-nav, .our_clientss.owl-carousel .owl-nav.disabled, .clientss .owl-nav, .testimonials_slider_wrapper .owl-nav{
    position: absolute;
    top: -77px;
    right: 25px;
    display: flex;
}
.owl-theme .owl-nav {
    margin-top: 10px;
}

.owl-theme .owl-nav button:hover {
    background: none !important;
    color: #022E6A !important;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
    font-size: 24px;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
    color: #023e86;
    background: none;
    margin: 0;
    width: 15px;
}

.p_tb_80 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.specificationss.p_b_50 {
    padding-bottom: 50px;
}
.m_b_40 {
    margin-bottom: 40px;
}
.wrp_data_comp {
    background: #fff;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 20px;
    padding-bottom: 25px;
    border-radius: 8px;
    overflow-y: auto;
    min-height: 205px;
}
.m_b_12 {
    margin-bottom: 12px;
}
.no_space{
    list-style: none;
    padding-left: 0;
}
.m_t_5 {
    margin-top: 5px;
}
.material-icons.arnglel {
    border: 1px solid #36BDFF;
    border-radius: 100%;
    font-size: 14px;
    text-align: center;
    display: block;
    color: #36BDFF;
}
.specificationss i.arnglel {
    color: #023e86;
    border-color: #023e86;
}
.m_b_20 {
    margin-bottom: 20px;
}

.features_serv{
    background: #022E6A;
}

.border_b_light {
    border-bottom: 1px solid rgba(255,255,255,0.13);
    margin-bottom: 22px;
    padding-bottom: 5px;
}
body .color_white {
    color: #fff !important;
}
.col_30 {
    width: 30%;
}
.col_70 {
    width: 70%;
}
.m_r_15 {
    margin-right: 15px;
}
.p_b_50 {
    padding-bottom: 50px;
}

.award_certif_section{
    padding: 0px 30px;
    padding-top: 80px;
}
.award_certif_section .acs_wrapper {
    margin-top: 40px;
}
.p_b_80 {
    padding-bottom: 80px;
}

.ngf,
.our_clientss.width_,
.testim_sl, 
.clientss.width_{
    margin-top: 40px;
} 

.clientss.width_ .acs_wrapper{
    width: 200px;
    margin: 0px auto;
    margin-top: 40px;
}

.our_clientss.width_ .acs_wrapper{
    width: 200px;
    margin: 0px auto;
}

.testim_sl .owl-dots{
    display: none;
}

.fre_ask_que .card-body{
    padding: 0;
}

.fre_ask_que .collapse.show .card-body{
    background: transparent;
}
.fre_ask_que .card-header button{
    padding-left: 0;
}
.accordion.fre_ask_que .card .card-header .btn {
    text-align: left;
    width: 100%;
    position: relative;
    padding: 20px 0;
    padding-right: 60px;
}
.accordion.fre_ask_que  .card .card-header .btn span {
    position: absolute;
    top: 10px;
    right: 0px;
    font-size: 48px;
    line-height: 50px;
    font-weight: 300;
    color: #082c58;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion.fre_ask_que .card{
    border-bottom: 1px solid #7070704a !important;
}
.form-input {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border: 1px solid #8692A2;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    padding: 0px 20px !important;
    height: 48px;
}
.contactForm input[type="text"], .contactForm input[type="email"], .contactForm input[type="number"], .contactForm input[type="tel"] {
    font-size: 14px;
    height: 48px;
    border-color: #BBB;
}

.place_clr_blue::placeholder{
    color: #023E86 !important;
    opacity: 1;
}

.contactForm textarea {
    font-size: 14px;
    border: 1px solid #BBB;
}
.contactForm textarea {
    padding: 24px 20px !important;
    width: 100%;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
}
.contactForm textarea {
    padding-top: 10px !important;
}
.submit_inline {
    width: auto !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
}
input.submit_inline[type="submit"] {
    background: #0780da;
    color: #fff;
    border: none;
    width: 100%;
    display: block;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 0;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    cursor: pointer;
}

input.submit_inline[type="submit"]:hover{
    background: #082c58;
}

body .reseller_serv {
    padding-top: 60px;
}

.testimonials_slider_wrapper .testim_sl .owl-nav{
    display: block;
}

.right_side_bar.no_shadow{
    box-shadow: none;
}

/* -------13 March-------- */
.shadow_below::after {
    position: absolute;
    content: "";
    bottom: -18px;
    width: 140px;
    box-shadow: 0 -2px 17px 3px rgba(0,0,0,0.4);
    height: 0px;
    left: 6px;
}

.youtube_vid .modal-content{
    background-color: transparent;
    border: none;
}
.service_detail_header{
    padding: 30px 25px;
}
.p_l_25{
    padding-left: 25px;
}
.header_nav_pdng .p_l_25{
    padding-left: 25px;
}
.m_rl_15{
    margin-right: 15px;
    margin-left: 15px;
}

.ser_sec_top .custom_width{
    flex: 0 0 10%;
}

.p_rl_15{
    padding-right: 15px;
    padding-left: 15px;
}
.f13{
    font-size: 13px;
}
.text_underline{
    text-decoration: underline;
}
.m_t_15{
    margin-top: 15px;
}
.fre_ask_que .card-header h6{
    font-size: 14px;
    font-weight: 500;
    overflow: hidden;
}
.structure_scosys_section{
    padding-top: 50px;
    padding-bottom: 50px;
    background: #F6F6F6;
}
.testimonials_slider_wrapper .slide_wrap1 .content_box p {
    max-width: 80%;
}

.inside_traffic_modal.right .modal-dialog{
    top: 0;
    width: 40vw !important;
    height: 100vh !important;
    margin: 0;
    max-width: 100%;
    display: block;
}

.inside_traffic_modal.right.fade .modal-dialog {
    right: -700px;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.inside_traffic_modal.right.fade.show .modal-dialog {
    right: 0;
}

.inside_traffic_modal .modal-dialog .modal-content{
    border-radius: 0;
    border: none;
}
.inside_traffic_modal .modal-body{
    overflow: auto;
}

.f_wrap{
    flex-wrap: wrap;
}

.traffic_popup_ .left-content,
.traffic_popup_  .right-content{
    width: 100%;
}

.popup_chart_w .custom_order{
    width: 33%;
    margin: 15px 0;
}
.popup_chart_w .custom_order p{
    margin: 0;
}

.popup_tab .nav-tabs .nav-link{
    padding: 5px 15px;
}
.popup_date_tabs li{
    padding: 5px 15px;
}

.youtube_vid .modal-header{
    border: none;
    padding: 0px 1rem;
}
.youtube_vid .close{
    color: #fff;
    opacity: 1;
    transition: all 0.3s linear;
}
.p_b_20{
    padding-bottom: 20px !important;
}
.cover_img{
    object-fit: cover;
    height: 292px;
    cursor: pointer;
}
.logo_img{
    width: 85px;
    height: 85px;
    border-radius: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: 50px;
    margin-left: -5px;
    margin-top: -5px;
    cursor: pointer;
}
.hide_input{
    display: none;
}
.custom_img{
    width: 60px;
}
.w100{
    width: 100%;
}
.prime_business{
    display: none;
}
.prime_customer{
    display: none;
}
.prime_price{
    display: none;
}
.prime_features{
    display: none;
}
.prime_security{
    display: none;
}
.prime_integrations{
    display: none;
}
.prime_deployment{
    display: none;
}
.prime_ui_experience{
    display: none;
}
.prime_partnerships{
    display: none;
}
.prime_performance{
    display: none;
}
.MuiRadio-colorPrimary.Mui-checked{
    color:#00214e !important
}
.pop_categories1 h2 {
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0;
}
button.bg_light_blue {
    width: 100%;
    padding: 17px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
.profile_img{
        width: 55px;
    border-radius: 50%;
}

table {
  font-family: 'Montserrat', sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td{
  /* border: 1px solid #dddddd; */
  text-align: center;
    color: #023E86;
  font-size: 14px;
  border-radius: 4px;
  line-height: 30px;
font-weight: 500;
  padding: 8px;
}
    

th {
  /* border: 1px solid #dddddd; */
  text-align: center;
color: #023E86;
  font-size: 16px;
  border-radius: 4px;
  line-height: 30px;
    font-weight: 700;
  padding: 8px;
}

/* tr:nth-child(even) {
  background-color: #dddddd;
} */
.showSetHtml p{
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    color: #3c72ad;
    text-align: justify !important;
    margin: 0;
    margin-bottom: 20px;
}