@font-face {
    font-family: danstevis;
    src: url("../font/danstevis.otf");
}

@font-face {
    font-family: vazirM;
    src: url("../font/vazir/Vazir-Medium-FD.eot"), url("../font/vazir/Vazir-Medium-FD.ttf"), url("../font/vazir/Vazir-Medium-FD.woff"), url("../font/vazir/Vazir-Medium-FD.woff2");
}

@font-face {
    font-family: vazirB;
    src: url("../font/vazir/Vazir-Bold-FD.eot"), url("../font/vazir/Vazir-Bold-FD.ttf"), url("../font/vazir/Vazir-Bold-FD.woff"), url("../font/vazir/Vazir-Bold-FD.woff2");
}

@font-face {
    font-family: vazirL;
    src: url("../font/vazir/Vazir-Light-FD.eot"), url("../font/vazir/Vazir-Light-FD.ttf"), url("../font/vazir/Vazir-Light-FD.woff"), url("../font/vazir/Vazir-Light-FD.woff2");
}

html {
    scroll-behavior: smooth;
    text-align: right;
    direction: rtl;
    font-size: 90%;
}

body {
    text-align: right;
    font-family: vazirM;
    font-size: 1rem;
    color: #363F5A;
}

p {
    line-height: 2;
}

a, a:hover, button {
    text-decoration: unset !important;
}

button:focus, input:focus {
    box-shadow: unset !important;
    outline: unset !important;
}

.form-control {
    height: 2.5rem;
    border-radius: 1rem;
    border-color: #DDE3F0;
}

.form-control:focus {
    box-shadow: none !important;
}

.form-group {
    margin-bottom: 2rem;
}

textarea {
    border-radius: 1rem !important;
}

::placeholder {
    color: #ACB8C0 !important;
    font-size: .9rem;
    font-family: vazirM;
}

.fontB {
    font-family: vazirB;
}

.fontM {
    font-family: vazirM;
}

.text_primary {
    color: #6f42c1;
}

.bg_dark {
    background-color: #363F5A;
}

.bg_light {
    background-color: #ffffff;
}

.text_dark {
    color: #363F5A !important;
}

.bg_primary {
    background-color: #6f42c1;
}

.home_bg_content {
    padding: 5rem 0;
}

/**** CUSTOM SCROLL BAR ****/
::-webkit-scrollbar {
    width: .7rem;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(93, 114, 138, 0.2);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(93, 114, 138, 0.8);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(93, 114, 138, 0.8);
}

.form_error {
    border-color: #FF6D6D !important;
}

/**** CUSTOM CHECKBOX AND RADIO BUTTON ****/
input[type='checkbox']:not(.new_board_theme),
input[type='radio']:not(.new_board_theme) {
    --active: #0083FF;
    --active-inner: #fff;
    --focus: 2px rgba(#0083FF, .3);
    --border: #BBC1E1;
    --border-hover: #0083FF;
    --background: #fff;
    --disabled: #F6F8FF;
    --disabled-inner: #E1E6F9;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background .3s, border-color .3s, box-shadow .2s;
}

input[type='checkbox']:not(.new_board_theme):after,
input[type='radio']:not(.new_board_theme):after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
}

input[type='checkbox']:not(.new_board_theme):checked,
input[type='radio']:not(.new_board_theme):checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: .3s;
    --d-t: .6s;
    --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
}

input[type='checkbox']:not(.new_board_theme):disabled,
input[type='radio']:not(.new_board_theme):disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: .9;
}

input[type='checkbox']:not(.new_board_theme):disabled:checked,
input[type='radio']:not(.new_board_theme):disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
}

input[type='checkbox']:not(.new_board_theme):disabled + label,
input[type='radio']:not(.new_board_theme):disabled + label {
    cursor: not-allowed;
}

input[type='checkbox']:not(.new_board_theme):hover:not(:checked):not(:disabled),
input[type='radio']:not(.new_board_theme):hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
}

input[type='checkbox']:not(.new_board_theme):focus,
input[type='radio']:not(.new_board_theme):focus {
    box-shadow: 0 0 0 var(--focus);
}

input[type='checkbox']:not(.new_board_theme):not(.switch),
input[type='radio']:not(.new_board_theme):not(.switch) {
    width: 21px;
}

input[type='checkbox']:not(.new_board_theme):not(.switch):after,
input[type='radio']:not(.new_board_theme):not(.switch):after {
    opacity: var(--o, 0);
}

input[type='checkbox']:not(.new_board_theme):not(.switch):checked,
input[type='radio']:not(.new_board_theme):not(.switch):checked {
    --o: 1;
}

input[type='checkbox']:not(.new_board_theme) + label,
input[type='radio']:not(.new_board_theme) + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
}

input[type='checkbox']:not(.switch) {
    border-radius: 7px;
}

input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
}

input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
}

input[type='checkbox'].switch {
    width: 38px;
    border-radius: 11px;
}

input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
}

input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
}

input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: .6;
}

input[type='radio']:not(.new_board_theme) {
    border-radius: 50%;
}

input[type='radio']:not(.new_board_theme):after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
}

input[type='radio']:not(.new_board_theme):checked {
    --s: .5;
}

.custom_primary_btn {
    padding: .4rem 2rem;
    height: 2.5rem;
    background-image: linear-gradient(-179deg, #9e4dff, #8c62ff);
    box-shadow: 0 3px 16px 0 rgba(137, 56, 255, 0.5);
    color: #ffffff;
    border-radius: 4rem;
    border-color: transparent !important;
}

.custom_primary_btn:hover, .custom_primary_btn:focus {
    box-shadow: 0 3px 16px 0 rgba(137, 56, 255, 0.5);
    background-image: linear-gradient(-179deg, #9e4dff, #8c62ff) !important;
    color: #ffffff;
}

.custom_primary_btn img {
    margin-left: .5rem;
    width: 1rem;
    height: 1rem;
}

.custom_secondary_btn {
    padding: .4rem 2rem;
    height: 2.5rem;
    background-image: linear-gradient(to bottom, #ffa330, #ff9346, #ff8559, #fb7a6a, #f07379);
    box-shadow: 0 3px 16px 0 rgba(243, 124, 108, 0.5);
    color: #ffffff;
    border-radius: 4rem;
    border-color: transparent !important;
}

.custom_secondary_btn:hover, .custom_secondary_btn:focus {
    box-shadow: 0 3px 16px 0 rgba(243, 124, 108, 0.5);
    background-image: linear-gradient(to bottom, #ffb04e, #ffa159, #ff9367, #ff8775, #ff7e84) !important;
    color: #ffffff;
}

.custom_border_white_btn {
    padding: .4rem 2rem;
    height: 2.5rem;
    background: unset;
    box-shadow: 0 3px 16px 0 rgba(137, 56, 255, 0.5);
    color: #ffffff;
    border-radius: 4rem;
    border-color: #ffffff !important;
}

.custom_border_white_btn:hover, .custom_border_white_btn:focus {
    box-shadow: unset;
    background: #ffffff !important;
    color: #6f42c1;
}

.custom_primary_border_btn {
    height: 3.1rem;
    background-color: transparent;
    color: #6f42c1;
    border-radius: 4rem;
    border-color: #6f42c1;
}

.custom_primary_border_btn svg {
    fill: #6f42c1;
    width: 1rem;
    height: 1rem;
}

.custom_primary_border_btn:hover, .custom_primary_border_btn:focus {
    background-color: #528eff;
    color: #ffffff;
}

.custom_primary_border_btn:hover svg, .custom_primary_border_btn:focus svg {
    fill: #ffffff;
}

.custom_icon {
    width: 2.5rem;
    height: 2.5rem;
}

/****LOGIN****/
.login_container {
    background-color: #fdfeff;
    height: 100vh;
    width: 100%;
}

.login_container_img {
    flex: 0 50%;
    background-color: #6f42c1;
    position: relative;
}

.login_container_img img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    top: 70% !important;
    width: 85%;
}

.login_container_form {
    flex: 50%;
}

.login_container_form_content {
    height: auto;
    max-width: 24rem;
    margin: 0 auto;
    margin-top: 5rem;
}

.forget_pass_txt {
    color: rgba(93, 114, 138, 0.8);
    font-size: .9rem;
    display: block;
    text-align: center;
}

.forget_pass_txt:hover, .forget_pass_txt:focus {
    color: rgba(72, 89, 108, 0.8);
}

.sign_up_txt {
    color: #6f42c1;
}

.sign_up_txt:hover, .sign_up_txt:focus {
    color: #363F5A;
}

.login_icon {
    fill: rgba(93, 114, 138, 0.8);
    width: 1rem;
    height: 1rem;
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    cursor: pointer;
}

/**** MODAL ****/
.modal {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.modal {
    transform: scale(0) !important;
    opacity: 0;
    -webkit-transition: .5s all 0s;
    -moz-transition: .5s all 0s;
    -ms-transition: .5s all 0s;
    -o-transition: .5s all 0s;
    transition: .5s all 0s;
    display: block !important;
}

.modal.show {
    opacity: 1;
    transform: scale(1) !important;
    transform: none;
}

.modal-backdrop {
    background-color: rgba(54, 63, 90, 0.5);
}

.modal-title {
    width: 100%;
    /*text-align: center;*/
}

.modal-footer {
    border-top: unset !important;
    /*padding-bottom: 2rem;*/
}

.modal-sm {
    max-width: 400px;
}

/*MAIN NAVBAR*/
.dropdown-submenu {
    position: relative;
}

.dropdown-menu {
    text-align: right !important;
    width: fit-content;
}

.dropdown-menu_submenu1 {
    right: 0 !important;
}

.dropdown-submenu a::after {
    transform: rotate(90deg);
    position: absolute;
    left: 6px;
    top: .8em;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100%;
    margin-left: .1rem;
    margin-right: .1rem;
}

.main_header {
    height: 100vh;
}

.header {
    height: max-content;
}

.header .navbar {
    padding-top: 2rem;
}

.header .navbar .dropdown-menu {
    /*font-family: vazirL;*/
    font-size: .9rem;
}

.header .navbar .dropdown-menu li {
    margin-bottom: 1.3rem;
}

.header .navbar .nav-link {
    color: #363F5A !important;
}

.header_options {
    position: absolute;
    top: 2rem;
    left: 4rem;
}

.header_options_lang {
    cursor: pointer;
}

.header_options_lang a {
    color: #363F5A;
}

.header_options img {
    width: auto;
    height: 2rem;
}

.header_options_content_title {
    font-size: 2.5rem;
}

.header_options_content_txt {
    font-size: 1.5rem;
}

.header_options_content_btn {
    padding: 0 .7rem;
    height: 4.5rem;
    font-size: 1.3rem;
}

.header_options_content_btn_cloud {
    width: 3rem;
    height: 3rem;
    background-color: #ffffff;
    position: relative;
    border-radius: 100%;
}

.header_options_content_btn_cloud svg {
    fill: #6f42c1;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.header_options_content_btn_arrow {
    fill: #ffffff;
    width: 1rem;
    height: 1rem;
}

.header_content {
    margin-top: 8rem;
}

.main_page_title {
    font-family: vazirB;
    font-size: 2rem;
    color: #6f42c1;
}

.main_page_section {
    margin-top: 8rem;
    margin-bottom: 8rem;
}

.main_page_section_img {
    width: 28rem;
    height: 28rem;
    background-color: #6f42c1;
    border-radius: 100%;
    position: relative;
}

.main_page_section_img img {
    width: 23rem;
    height: 23rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.main_page_section_platform {
    width: 20rem;
    height: 20rem;
}

.main_page_video_bg .bg_primary, .main_page_video_bg .bg_dark {
    padding: 5rem;
    text-align: center;
    width: 100%;
    height: 25rem;
}

.main_page_video_bg .bg_primary img, .main_page_video_bg .bg_dark img {
    height: 100%;
}

.main_page_video_bg_content {
    padding: 5rem;
    width: 100%;
}

.footer {
    color: #ffffff !important;
    background-color: #363F5A;
}

.footer_mail {
    width: 60%;
    margin: 0 auto;
}

.footer_mail_row {
    border-bottom: 1px solid #505d84;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.footer_mail .btn {
    position: absolute;
    top: 0rem;
    left: -2rem;
}

.footer_title_img {
    width: 3rem;
    height: 3rem;
    margin-left: .5rem;
}

.footer_socialmedia a {
    transition: all .3s;
    cursor: pointer;
}

.footer_socialmedia a:hover, .footer_socialmedia a:focus {
    transform: translateY(-0.2rem);
}

.footer_socialmedia img {
    width: 2rem;
    height: 2rem;
}

.footer_access {
    margin-left: 5rem;
}

.footer_access_title {
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.footer_access_item {
    line-height: 2;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: .9rem;
    font-family: vazirL;
}

.footer_access_item:hover, .footer_access_item:focus {
    color: #6f42c1 !important;
}

/*PRODUCTS*/
.products_detail {
    margin-bottom: 1.5rem;
}

.products_detail .title {
    color: #6f42c1;
}

.products_package_item {
    cursor: pointer;
    border-radius: 100%;
    width: 15rem;
    height: 15rem;
    position: relative;
    background-color: #6f42c1;
    color: #ffffff;
}

.products_package_item img {
    width: 5rem;
    height: 5rem;
}

.products_package_item:after {
    content: '';
    background-color: #afcbffa8;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    top: 0;
    left: 0;
}

.products_package .active:after {
    background-color: transparent !important;
}

.rSlider {
    position: relative;
}

.rSlider .slide {
    background: red;
    height: 5px;
    width: 80px;
    position: absolute;
    right: 0;
    top: 9px;
    z-index: 2;
}

input[type=range] {
    position: relative;
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #ddd;
    outline: none;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    background: red;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 15px;
    height: 15px;
    background: red;
    cursor: pointer;
}

/****RESPONSIVE****/
@media (max-width: 992px) {
    html {
        font-size: 86%;
    }
}

@media (max-width: 768px) {
    .header_options {
        left: 8rem;
    }

    .login_container_form_content {
        margin-top: 4rem;
    }

    html {
        font-size: 70%;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 75%;
    }
}
@media (min-width: 1200px){
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1440px;
    }
}



/**** MODAL ****/
.modal {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.modal {
    transform: scale(0) !important;
    opacity: 0;
    -webkit-transition: .5s all 0s;
    -moz-transition: .5s all 0s;
    -ms-transition: .5s all 0s;
    -o-transition: .5s all 0s;
    transition: .5s all 0s;
    display: block !important;
}

.modal.show {
    opacity: 1;
    transform: scale(1) !important;
    transform: none;
}

.modal-backdrop {
    background-color: rgba(54, 63, 90, 0.5);
}

.modal-title {
    width: 100%;
    /*text-align: center;*/
}

.modal-footer {
    border-top: unset !important;
    /*padding-bottom: 2rem;*/
}

.modal-sm {
    max-width: 400px;
}

/*DASHBOARD*/
.header {
    position: fixed;
    z-index: 3;
    width: 100%;
    height: auto;
    padding: .8rem 0;
    background-color: #ffffff;
    border-bottom: 1px solid #E1E5F2; }
.header .custom_icon {
    cursor: pointer; }
.header_profile {
    cursor: pointer; }
.header_profile img {
    height: 1.5rem;
    width: 1.5rem; }
.header_profile_dropdown_mail {
    font-size: .8rem;
    font-family: vazirL; }
.header_icon {
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem;
    fill: rgba(93, 114, 138, 0.8); }
.header_search input {
    padding-right: 2rem;
    border: none !important; }
.header_search svg {
    fill: #ACB8C0;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    top: .8rem; }

/*DROPDOWN MENU*/
.dashboard {
    height: 100vh;
    background-color: #f2f5fe;
    position: relative; }
.dashboard_menu {
    padding-top: 4rem;
    /*MOBILE MODE*/
    height: 100%;
    z-index: 2; }
.dashboard_menu_main {
    overflow-y: auto;
    z-index: 2;
    transition: all 1s;
    width: 7rem;
    background-color: #6f42c1; }
.dashboard_menu_main .custom_hr {
    transition: all 1s;
    width: 3rem;
    height: 3rem; }
.dashboard_menu_main_icon {
    transition: all 1s;
    cursor: pointer;
    padding: .9rem;
    margin-top: 1rem;
    font-size: .9rem; }
.dashboard_menu_main_icon img {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto; }
.dashboard_menu_main_icon span {
    margin: 0 auto;
    color: #ffffff; }
.dashboard_menu_main_icon:hover, .dashboard_menu_main_icon:focus {
    background-color: #528eff; }
.dashboard_menu_main_icon:hover span, .dashboard_menu_main_icon:focus span {
    color: #ffffff; }
.dashboard_menu_main_icon_active {
    background-color: #6b9eff;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-left: 0.5rem; }
.dashboard_menu_main_icon_active svg {
    fill: #6f42c1; }
.dashboard_menu_main_icon_active span {
    color: #ffffff; }
.dashboard_menu_subContent {
    margin-left: 1rem;
    overflow-y: auto;
    z-index: 1;
    padding: 1rem;
    transition: all 1s;
    width: 16rem;
    background-color: #1f6cff; }
.dashboard_menu_subContent_active {
    background-color: #055cff !important;
    border-radius: 4rem !important; }
.dashboard_menu_subContent .main-menu {
    height: max-content; }
.dashboard_menu_subContent_img {
    width: 7rem;
    height: 7rem;
    margin: 0 auto;
    display: block;
    transition: all 1s; }
.dashboard_menu_subContent .custom_icon {
    width: 1.5rem;
    height: 1.5rem; }
.dashboard_menu_subContent a {
    width: 100%;
    display: block;
    transition: all 1s;
    margin-left: 2rem;
    color: #ffffff;
    margin-top: .25rem;
    padding: .5rem .8rem;
    background: transparent;
    border: none; }
.dashboard_menu_subContent a:focus {
    outline: none !important; }
.dashboard_menu_subContent .collapse .list-group-item {
    font-size: .9rem;
    padding-right: 1.5rem; }
.dashboard_menu_subContent_active {
    background: #6f42c1;
    color: #ffffff;
    border-radius: 4rem; }
.dashboard_body {
    flex: 1;
    overflow-x: auto;
    /*MOBILE MODE*/
    padding-top: 5rem;
    z-index: 1;
    height: 100%; }
.dashboard_body_container {
    box-shadow: 0 0 10px rgba(56, 125, 255, 0.1);
    background-color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    padding: 1rem; }
.dashboard_body_items {
    border-radius: 100%;
    width: 6rem;
    height: 6rem;
    background-image: linear-gradient(-179deg, #4786FF, #4887FF);
    position: relative; }
.dashboard_body_items img {
    width: 3rem;
    height: 3rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
.dashboard_body_items_container {
    justify-content: space-between;
    border-radius: 1rem;
    border: 2px solid #6f42c1;
    padding: 2rem;
    background: rgba(56, 125, 255, 0.1); }
.dashboard_body_items_container span {
    color: #363F5A !important; }
.dashboard_body_income {
    box-shadow: 0 0 10px rgba(56, 125, 255, 0.1);
    background-color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    padding: 1rem; }
.dashboard_body_income_img {
    width: 10rem;
    height: 10rem; }
.dashboard_body_income_price {
    font-size: 1.5rem;
    color: #363F5A; }
.dashboard_body_income_title {
    font-family: vazirB;
    color: #6f42c1; }
.dashboard_body_income .custom_icon {
    width: 3.6rem;
    height: 3.6rem; }
.dashboard_body_transaction {
    box-shadow: 0 0 10px rgba(56, 125, 255, 0.1);
    background-color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    padding: 1rem; }
.dashboard_body_transaction .table-responsive {
    height: 38rem;
    white-space: nowrap;
    overflow-y: auto; }
.dashboard_body_transaction .custom_icon {
    width: 3.5rem;
    height: 3.5rem; }
.dashboard_body_transaction .table {
    color: #363F5A; }
.dashboard_body_transaction thead tr th {
    border-top: none !important; }
.dashboard_body_transaction .table tbody td {
    padding: 2rem .75rem; }

.nav_toggle_class {
    width: 0 !important; }
.nav_toggle_class .dashboard_menu_main_icon, .nav_toggle_class .custom_hr {
    transform: translateX(10rem); }

.subContent_nav_toggle_class {
    width: 0px !important;
    padding: 0; }
.subContent_nav_toggle_class a, .subContent_nav_toggle_class img {
    transform: translateX(10rem); }

/*ABR BIT*/
.description_container_img {
    width: 8rem;
    height: 8rem; }

.description_container .btn {
    height: auto !important; }
.description_container .btn .custom_icon {
    width: 2rem;
    height: 2rem; }
.description_container .btn .rounded-circle {
    background-color: #6f42c1;
    width: 2.8rem;
    height: 2.8rem;
    position: relative;
    margin-left: .5rem; }
.description_container .btn .rounded-circle img {
    margin-left: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

.dashline_img {
    height: 1rem; }

.new_abrbi_cart {
    cursor: pointer;
    color: #363F5A;
    margin-left: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    width: 10rem;
    border: .1rem solid #e4e5e7;
    border-radius: 1rem;
    transition: all .5s; }
.new_abrbi_cart_city img {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem; }
.new_abrbi_cart_logo {
    margin-left: .5rem;
    width: 4rem;
    height: 4rem; }

.new_abrbi_pricing_cart {
    cursor: pointer;
    color: #363F5A;
    margin-left: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    width: 100%;
    border: .1rem solid #e4e5e7;
    border-radius: 1rem;
    transition: all .5s; }
.new_abrbi_pricing_cart:hover, .new_abrbi_pricing_cart:focus, .new_abrbi_pricing_cart:checked {
    color: #363F5A; }
.new_abrbi_pricing_cart_icon {
    margin-left: .5rem;
    width: 1.5rem;
    height: 1.5rem; }

.new_abrbit_steps input[type=radio] {
    appearance: none !important;
    display: none; }

.new_abrbit_steps input[type=radio]:checked + .new_abrbi_cart, .new_abrbit_steps input[type=radio]:checked + .new_abrbi_pricing_cart, .new_abrbit_steps input[type=radio]:checked + .new_abrbit_step4_cart {
    border-color: #6f42c1; }

.new_abrbit_steps select {
    font-size: .8rem !important; }

.new_abrbit_steps .nav-pills {
    padding-right: 0;
    margin: 0 auto;
    max-width: max-content; }
.new_abrbit_steps .nav-pills a {
    font-size: .9rem; }
.new_abrbit_steps .nav-pills .nav-item a {
    border: 1px solid #6f42c1;
    border-radius: 0; }
.new_abrbit_steps .nav-pills .nav-item:first-child a {
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem; }
.new_abrbit_steps .nav-pills .nav-item:last-child a {
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem; }

.new_abrbit_step3 .new_abrbi_pricing_cart {
    position: relative; }
.new_abrbit_step3 .new_abrbi_pricing_cart:after {
    cursor: pointer !important;
    content: '' !important;
    background-image: url(../image/checkbox-gray.svg) !important;
    background-repeat: no-repeat !important;
    width: 2rem !important;
    height: 2rem !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important; }

.new_abrbit_step3 input[type=radio]:checked + .new_abrbi_pricing_cart:after {
    cursor: pointer !important;
    content: '' !important;
    background-image: url(../image/checkbox-blue.svg) !important;
    background-repeat: no-repeat !important;
    width: 2rem !important;
    height: 2rem !important;
    position: absolute !important;
    top: 1rem !important;
    right: 1rem !important; }

.new_abrbit_step4_cart {
    height: 100%;
    border-radius: 1rem;
    cursor: pointer;
    color: #363F5A;
    margin-left: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    border: .1rem solid #e4e5e7;
    background: #ffffff; }
.new_abrbit_step4_cart .custom_icon {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: .7rem; }
.new_abrbit_step4_cart_img {
    width: 5rem;
    height: 5rem; }

.new_abrbit_step5_factor {
    border-radius: 1rem;
    background: rgba(137, 56, 255, 0.5); }
.new_abrbit_step5_factor_price {
    padding: 1rem;
    flex: 0 40%;
    border-left: 2px dashed #ffffff; }
.new_abrbit_step5_factor_price .barcode {
    width: 9rem;
    margin: 1rem 0; }
.new_abrbit_step5_factor_price span {
    font-family: danstevis;
    color: #ffffff; }
.new_abrbit_step5_factor_price .total_price {
    color: #ffffff;
    background-color: #146AF4;
    width: max-content;
    border-radius: 1rem;
    padding: 1rem;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 1rem; }
.new_abrbit_step5_factor_name {
    flex: 1; }
.new_abrbit_step5_factor_name_form {
    color: #ffffff;
    flex: 1;
    padding: 1rem;
    margin-bottom: 0;
    background-color: #146AF4;
    border-bottom-left-radius: 1rem; }
.new_abrbit_step5_factor_name .add {
    padding: .5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    position: relative; }
.new_abrbit_step5_factor_name .add:after {
    content: '';
    position: absolute;
    background-image: url(../image/add.svg);
    background-repeat: no-repeat;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
.new_abrbit_step5_factor_name .add:hover:after, .new_abrbit_step5_factor_name .add:focus:after {
    content: '';
    background-image: url(../image/add-blue.svg); }
.new_abrbit_step5_factor_name .minus {
    padding: .5rem;
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    position: relative; }
.new_abrbit_step5_factor_name .minus:after {
    content: '';
    position: absolute;
    background-image: url(../image/minus-white.svg);
    background-repeat: no-repeat;
    width: 1.5rem;
    height: .5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
.new_abrbit_step5_factor_name .minus:hover:after, .new_abrbit_step5_factor_name .minus:focus:after {
    content: '';
    background-image: url(../image/minus-blue.svg); }

.new_abrbit_step6_form {
    flex: 0 40%;
    margin-left: 1.5rem; }
.new_abrbit_step6_form input {
    background: transparent !important;
    border: none !important;
    width: 100%; }

.new_abrbit_step6_img {
    flex: 1; }
.new_abrbit_step6_img img {
    max-width: 85%; }

.new_abrbit_step6_item {
    margin-left: .5rem;
    width: 3rem;
    height: 3rem;
    position: relative;
    background-image: linear-gradient(to bottom, #15d999, #36ecb0);
    border-radius: 100%; }
.new_abrbit_step6_item .custom_icon {
    width: 1.5rem;
    height: 1.5rem; }
.new_abrbit_step6_item img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

.new_abrbit_step6_eye {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    position: relative; }
.new_abrbit_step6_eye:after {
    content: '';
    background-image: url("../image/eye-close.svg");
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    background-repeat: no-repeat;
    background-position: bottom;
    top: -1rem;
    right: -1rem; }

.new_abrbit_step6_eye_open:after {
    content: '';
    background-image: url("../image/eye-open.svg") !important;
    width: 2.5rem;
    height: 2.5rem;
    position: absolute;
    background-repeat: no-repeat;
    background-position: bottom;
    top: -1rem;
    right: -1rem; }

.border_primary_color {
    border-color: #6f42c1; }

.success_label {
    background-color: rgba(21, 217, 153, 0.1);
    padding: .3rem .8rem;
    border-radius: .5rem;
    color: #15d999; }

.error_label {
    background-color: rgba(255, 0, 76, 0.1);
    padding: .3rem .8rem;
    border-radius: .5rem;
    color: #FF004C; }

/*PROFILE*/
.profile_container {
    height: 35rem;
    box-shadow: 0 0 10px rgba(56, 125, 255, 0.1);
    background-color: #ffffff;
    border-radius: 1rem;
    width: 100%;
    padding: 1rem; }
.profile_container_img {
    text-align: center;
    position: relative;
    height: 100%; }
.profile_container_img img {
    width: 20rem;
    height: 20rem; }
.profile_container_img_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
.profile_container_form {
    flex: 0 50%; }
.profile_container_form .tab-content {
    width: 80%;
    margin: 0 auto; }
.profile_container_form .nav-pills {
    width: max-content;
    margin: 0 auto;
    padding-right: 0; }
.profile_container_form .nav-pills a {
    padding-right: 2.5rem;
    position: relative;
    border: 1px solid #6f42c1; }
.profile_container_form .nav-pills .nav-item:nth-child(1) a {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 4rem;
    border-bottom-right-radius: 4rem; }
.profile_container_form .nav-pills .nav-item:nth-child(1) a:before {
    content: '';
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    background-repeat: no-repeat;
    background-image: url("../image/cart-blue.svg");
    bottom: 0.4rem;
    right: 0.4rem; }
.profile_container_form .nav-pills .nav-item:nth-child(1) .active:before {
    content: '';
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    background-repeat: no-repeat;
    background-image: url("../image/cart-white.svg");
    bottom: 0.4rem;
    right: 0.4rem; }
.profile_container_form .nav-pills .nav-item:nth-child(2) a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 4rem;
    border-bottom-left-radius: 4rem; }
.profile_container_form .nav-pills .nav-item:nth-child(2) a:before {
    content: '';
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    background-repeat: no-repeat;
    background-image: url("../image/lock-blue.svg");
    bottom: 0.4rem;
    right: 0.4rem; }
.profile_container_form .nav-pills .nav-item:nth-child(2) .active:before {
    content: '';
    position: absolute;
    width: 1.7rem;
    height: 1.7rem;
    background-repeat: no-repeat;
    background-image: url("../image/lock-white.svg");
    bottom: 0.4rem;
    right: 0.4rem; }


/*ABR BIT LISTS*/
.abrbit_lists_empty {
    display: block;
    margin: 0 auto;
    width: 20rem;
    height: 20rem; }

.abrbit_lists_operation_icon {
    cursor: pointer;
    width: 1.5rem;
    height: 1.5rem; }

.abrbit_lists .table-responsive {
    min-height: 50vh;
    white-space: nowrap;
    overflow-y: hidden; }

.abrbit_lists_items {
    margin-left: 2rem;
    width: max-content;
    margin-bottom: 2rem;
    cursor: pointer;
    padding: .7rem 1rem;
    border-radius: 1rem;
    border: 0.1rem solid rgba(93, 114, 138, 0.4); }
.abrbit_lists_items_active {
    border-color: #6f42c1; }
.abrbit_lists_items_active span {
    color: #6f42c1 !important; }
.abrbit_lists_items_active .dash-line {
    color: #6f42c1 !important; }
.abrbit_lists_items span {
    color: rgba(93, 114, 138, 0.4); }
.abrbit_lists_items .dash-line {
    width: .5rem;
    height: 2rem;
    border-right: 0.1rem dashed rgba(93, 114, 138, 0.4); }
.abrbit_lists_items .custom_icon {
    width: 1.5rem;
    height: 1.5rem; }

.abrbit_list_table_option_content {
    padding: 1rem 1rem 1rem 2rem;
    border-radius: 1rem;
    background: #ffffff; }
.abrbit_list_table_option_content a {
    font-size: .8rem; }
.abrbit_list_table_option_content a:not(:last-child) {
    margin-bottom: 1.5rem; }
.abrbit_list_table_option_content a:hover, .abrbit_list_table_option_content a:focus {
    color: #15d999 !important; }
.abrbit_list_table_option_content img {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem; }

/*TICKET MODAL*/
.new_ticket_modal_item_inp {
    display: none; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item {
    border: 0.1rem solid #6f42c1; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item span {
    color: #363F5A; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item-1 {
    position: relative; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item-1:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url("../image/support2-blue.svg");
    background-repeat: no-repeat; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item-2 {
    position: relative; }
.new_ticket_modal_item_inp:checked ~ .new_ticket_modal_item-2:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url("../image/money.svg");
    background-repeat: no-repeat; }

.new_ticket_modal_item {
    cursor: pointer;
    border: 0.1rem solid rgba(93, 114, 138, 0.8);
    border-radius: 1rem;
    padding: 1rem;
    margin-left: 2rem; }
.new_ticket_modal_item span {
    color: rgba(93, 114, 138, 0.8);
    padding-right: 3rem; }
.new_ticket_modal_item-1 {
    position: relative; }
.new_ticket_modal_item-1:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url("../image/support-gray.svg");
    background-repeat: no-repeat; }
.new_ticket_modal_item-2 {
    position: relative; }
.new_ticket_modal_item-2:before {
    content: '';
    position: absolute;
    width: 2rem;
    height: 2rem;
    background-image: url("../image/money-gray.svg");
    background-repeat: no-repeat; }

.new_ticket_modal_upload_inp {
    display: none; }

.new_ticket_modal_upload_content {
    cursor: pointer;
    padding: 1rem;
    text-align: center;
    background-color: rgba(56, 125, 255, 0.1);
    border: 0.1rem dashed #6f42c1;
    width: 100%;
    border-radius: 1rem; }
.new_ticket_modal_upload_content .custom_icon {
    width: 3rem;
    height: 3rem; }

.new_ticket_uploaded_files_img {
    width: 2rem;
    height: 2rem;
    background-color: #6f42c1;
    position: relative;
    border-radius: 100%; }
.new_ticket_uploaded_files_img img {
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

.myProgress {
    width: 100%;
    background-color: rgba(93, 114, 138, 0.2);
    height: 1rem;
    border-radius: 4rem; }

.myBar {
    width: 10%;
    height: 1rem;
    border-radius: 4rem;
    background-color: #15d999;
    text-align: center;
    line-height: 30px;
    color: white;
    position: relative; }

.upload_percent {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translate(-50%, -50%); }

.new_ticket_uploaded_files .custom_icon {
    cursor: pointer;
    width: 1rem;
    height: 1rem; }

.new_ticket_uploaded_files_name {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%); }

/*TICKET DETAIL - COMMENTS*/
.ticket_comments_avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 100%;
    background-color: #6f42c1;
    position: relative; }
.ticket_comments_avatar img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem; }

.ticket_comments_user {
    text-align: justify;
    font-size: .9rem;
    padding: 1rem;
    background-color: rgba(56, 125, 255, 0.1);
    color: #363F5A;
    border-top-right-radius: 0 !important;
    border-radius: 1rem; }

.ticket_comments_admin {
    text-align: justify;
    font-size: .9rem;
    padding: 1rem;
    background-color: #6f42c1;
    color: #ffffff;
    border-top-left-radius: 0 !important;
    border-radius: 1rem; }

.ticket_comments_msg {
    position: relative; }
.ticket_comments_msg .btn, .ticket_comments_msg_pin {
    padding: .1rem !important;
    border-radius: 100% !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    position: relative; }
.ticket_comments_msg .btn img, .ticket_comments_msg_pin img {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0; }
.ticket_comments_msg input[type=file] {
    display: none; }
.ticket_comments_msg_pin {
    cursor: pointer;
    margin: 0;
    background-color: #15d999;
    box-shadow: 0 0 10px rgba(21, 217, 153, 0.5); }
.ticket_comments_msg_pin:hover, .ticket_comments_msg_pin:focus, .ticket_comments_msg_pin:active {
    background-color: #36ecb0;
    box-shadow: 0 0 10px rgba(21, 217, 153, 0.5); }
.ticket_comments_msg_btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem; }

.ticket_comments_number {
    padding: 0 1rem;
    border: 0.2rem dashed #6f42c1; }

.new_ticket_uploaded_files_comment_img {
    width: 2rem;
    height: 2rem;
    background-color: #6f42c1;
    position: relative;
    border-radius: 100%; }
.new_ticket_uploaded_files_comment_img img {
    width: 1rem;
    height: 1rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }

.new_ticket_uploaded_files_comment .custom_icon {
    cursor: pointer;
    width: 1rem;
    height: 1rem; }

.new_ticket_uploaded_files_comment_name {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(-50%, -50%); }

.custom_container_height {
    max-height: 60vh;
    overflow-y: auto; }

/****RESPONSIVE****/
@media (max-width: 992px) {
    .dashboard_body_items_container {
        justify-content: start; }
    .dashboard_body {
        padding-top: 8rem; }
    .dashboard_menu {
        padding-bottom: 0;
        position: fixed; }
    html {
        font-size: 75%; } }

@media (max-width: 768px) {
    .new_abrbit_step5_factor_price {
        border-bottom: 2px dashed #ffffff;
        border-left: none !important; }
    html {
        font-size: 70%; }
    .circle {
        width: 3rem !important;
        height: 3rem !important; }
    .circle img {
        width: 2rem !important;
        height: 2rem !important; }
    .dashboard_menu {
        bottom: -3.5rem; } }

@media (max-width: 576px) {
    .new_abrbit_step2 .nav-pills {
        overflow-x: auto;
        width: 100%;
        padding-right: 10rem;
        flex-wrap: nowrap;
        white-space: nowrap; }
    .dashboard_body_items_container a {
        margin-left: 0 !important;
        margin-right: 0 !important;
        flex: 0 50%; } }

.progress-bar-container {
    position: relative; }

.progress-bar-container::before {
    content: "";
    position: absolute;
    border-top: 1px dashed #e4e5e7;
    border-width: medium;
    height: 10px;
    width: 100%;
    top: 56%;
    left: 0px;
    transform: translateY(-50%); }

#progress-bar {
    position: absolute;
    background-color: #6f42c1;
    height: .2rem;
    width: 0%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s ease; }

.circles-container {
    display: flex;
    justify-content: space-between;
    max-width: 100%; }

.circle {
    width: 4rem;
    height: 4rem;
    border-radius: 100%;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border: 1px solid #e4e5e7;
    transition: 0.4s ease;
    position: relative; }
.circle img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 3rem;
    height: 3rem; }

.circle.new_abrbit_progressbar_active {
    background-color: #6f42c1; }

/*DATA TABLE*/
.dataTables_filter input[type=search]{
    height: 2.5rem;
    border-radius: 1rem;
    border: none;
    border: 1px solid #DDE3F0 !important;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover{
    border-radius: 4rem !important;
    background-color: #6f42c1 !important;
    background-image: none !important;
    color: #ffffff !important;
    border-color: #6f42c1 !important;
    outline: none !important;
    /*width: 3rem;*/
    /*height: 3rem;*/
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    /*width: 3rem;*/
    /*height: 3rem;*/
    color: #363F5A !important;
    border-color: #6f42c1 !important;
    background-color: #387dff47 !important;
    border-radius: 4rem !important;
    background-image: none !important;
}
.dataTables_wrapper .dataTables_paginate .previous:hover,.dataTables_wrapper .dataTables_paginate .next:hover{
    width: auto !important;
    height: auto !important;
    color: #363F5A !important;
    border-color: transparent !important;
    background-color: transparent !important;
    border-radius: unset !important;
    background-image: none !important;
}

/*SWEET ALERT*/
/*.swal-icon--success{
    content: '';
    !*background-image: url("../image/success.svg");*!
    width: 30rem;
    height: 8rem;
    border: none;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.swal-icon--success__line,.swal-icon--success__ring,.swal-icon--success__hide-corners{
    display: none !important;
}
.swal-icon--success:before,.swal-icon--success:after{
    display: none;
}
.swal-icon--error{
    content: '';
    background-image: url("../image/error.svg");
    width: 30rem;
    height: 8rem;
    border: none;
    background-color: transparent !important;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}
.swal-icon--error__line{
    background-color: transparent !important;
}*/

.btn-color-trans{
    color:transparent !important;
}
.loading-box{
    align-items: center !important;
    display: flex !important;
    justify-content: center !important;
    position: relative !important;
}
.loading-box:disabled{
    opacity: 0.8;
}

.animation-dot-flashing {
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color:  #fff;
    animation: animation-dot-flashing 1s infinite linear alternate;
    animation-delay: 0.5s;
}
.animation-dot-flashing::before, .animation-dot-flashing::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0;
}
.animation-dot-flashing::before {
    left: -15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    animation: animation-dot-flashing 1s infinite alternate;
    animation-delay: 0s;
}
.animation-dot-flashing::after {
    left: 15px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: #fff;
    color: #fff;
    animation: animation-dot-flashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes animation-dot-flashing {
    0% {
        background-color: #fff;
    }
    50%, 100% {
        background-color: rgba(255, 255, 255, 0.2);
    }
}

table.table-bordered.dataTable th, table.table-bordered.dataTable td {
    border-left-width:1px ;
}

table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable th:last-child, table.table-bordered.dataTable td:last-child, table.table-bordered.dataTable td:last-child {
    border-right-width: 1px;
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #8480ff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(68, 0, 255, 0.25);
}