:root {
    --dark-bg:#25333e;
    --dark-text:#e7e8e9;
	--bg-white:#FFFFFF;

	--dark-grey:#D4D4D4;
	--light-grey:#F4F4F4;
    --box-gradient-1:#F7F7F7;
    --box-gradient-2:#EBEBEB;

	--slider-toggle:#CCCCCC;

	--lighter-blue-bg:#3f5768;
	--lighter-blue-border:#4a6476;
}

html, body {
	margin:0px;
	padding:0px;

    padding-bottom: env(safe-area-inset-bottom, 0);
    padding-top: env(safe-area-inset-top, 0);
    padding-left: env(safe-area-inset-left, 0);
    padding-right: env(safe-area-inset-right, 0);

    height:auto;
    width:100%;
    overflow-x:hidden;
    position: relative;
    vertical-align:top;

    -webkit-overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;

	background-color: var(--dark-bg);
	color: var(--dark-text);
    font-size:16px;
	font-family: 'Maven Pro', sans-serif;
}

*:focus {
    outline:none;
}
* {
    outline:none;
    -webkit-tap-highlight-color: transparent;
	font-family: 'Maven Pro', sans-serif;

    -webkit-overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none;
}

::selection {
	color: var(--dark-bg);
	background-color: var(--dark-text);
}
::-moz-selection {
	color: var(--dark-bg);
	background-color: var(--dark-text);
}

.light_bg_select::selection {
	color: var(--dark-text);
	background-color: var(--dark-bg);
}
.light_bg_select::-moz-selection {
	color: var(--dark-text);
	background-color: var(--dark-bg);
}
.light_bg_select *::selection {
	color: var(--dark-text);
	background-color: var(--dark-bg);
}
.light_bg_select *::-moz-selection {
	color: var(--dark-text);
	background-color: var(--dark-bg);
}

.no_select::selection {
	color: inherit;
	background-color: transparent;
}
.no_select::-moz-selection {
	color: inherit;
	background-color: transparent;
}

a {
	color: inherit;
	font-weight:inherit;
	text-decoration:inherit;
}
a:visited {
	color: inherit;
	font-weight:inherit;
	text-decoration:inherit;
}
a:hover {
	color: inherit;
	font-weight:inherit;
	text-decoration:inherit;
}
a:active {
	color: inherit;
	font-weight:inherit;
	text-decoration:inherit;
}

.login_page_cont {
	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;

	margin:0px;
	padding:0px;
	width:100%;
	min-height:100vh;
}
.floating_login {
	padding:20px;
	width: 100%;
  	max-width: 300px;
}
.login_logo {
	width:75%;
	height:auto;
	max-width:300px;

	margin-left:auto;
	margin-right:auto;
}
.href_flex {
	display:flex;
}
.login_title {
	font-size:18px;
	font-weight:bold;
	margin-top:20px;
}
.login_sub {
	font-size:16px;
	font-weight:300;
	margin-top:0px;
}
.cf-turnstile {
	display:none;
}
.login_sub_row {
	width:100%;
	display:flex;
	justify-content: center;
	text-align: center;
	text-align: center;
	margin-top:20px;
}

.qr_2fa {
	width:100%;
}
.qr_2fa img {
	width:75%;
}
.hr_div {
	width:100%;
	height:1px;
	margin-top:10px;
	margin-bottom:10px;
	background-color: var(--lighter-blue-border);
}

.login_form {
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap:20px;
	margin-top:20px;
}
.form_input {
	background-color: var(--dark-text);
	border:1px solid var(--dark-grey);
	color: var(--dark-bg);
	border-radius:6px;
	padding:10px 10px;

	font-weight:300;
	font-size:18px;
	width:calc(100% - 22px);
}
.form_button {
	border-radius:6px;
	background-color: var(--lighter-blue-bg);
	border:1px solid var(--lighter-blue-border);
	padding:10px 20px;
	color:var(--dark-text);
	font-weight:600;
	font-size:18px;
	width:100%;
	cursor: pointer;
}
.login_form_message {
	border-radius:6px;
	background-color: var(--lighter-blue-bg);
	border:1px solid var(--lighter-blue-border);
	padding:10px;
	color:var(--dark-text);
	font-weight:300;
	font-size:16px;
	width:calc(100% - 22px);
}

.page_cont {
	margin-left:auto;
	margin-right:auto;
	margin-top:40px;
	margin-bottom:40px;
	width:calc(100% - 80px);
	max-width:980px;
    padding:40px;
}
.page_content {
	margin-top:40px;

	border-radius:6px;
	padding:40px;
	background-color: var(--bg-white);
	border:1px solid var(--dark-grey);
	color:var(--dark-bg);
}
.page_title {
	font-size:24px;
	font-weight:bold;
	margin-bottom:20px;
}

.nav_cont {
	display:flex;
	justify-content: space-between;
	align-items: center;

	border-radius:6px;
	padding:40px;
	background-color: var(--lighter-blue-bg);
	border:1px solid var(--lighter-blue-border);
	color:var(--dark-text);
}
.nav_left {
	display:flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
}
.nav_logo {
	width:auto;
	height:48px;
}
.nav_right {
	display:flex;
	justify-content: flex-end;
	align-items: center;
	gap:30px;
}
.nav_item {
	width: auto;
	height:auto;
	cursor: pointer;

	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
}
.nav_visited .nav_item_text {
	font-weight:bold !important;
}
.nav_item_text {
	font-size:18px;
	font-weight:300;
	text-align: center;
	margin-top:5px;
}
.nav_item i {
	display: block;
	font-size: 28px;
	margin-left: auto;
	margin-right: auto;
}

.cp_box_cont {
	border:1px solid var(--dark-grey);
    border-radius: 6px;
    overflow: hidden;
    width:calc(100% - 2px);
}
.cp_box_header {
	font-size:20px;
	font-weight:bold;
	cursor:default;
    padding:20px;
	height:29px;

	color: var(--dark-bg);
    border-bottom:1px solid var(--dark-grey);

	display:flex;
    justify-content: space-between;
    align-items: center;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.4, var(--box-gradient-1)), color-stop(1, var(--box-gradient-2)));
	background-image: -o-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -moz-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -webkit-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -ms-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: linear-gradient(to bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);

    border-radius: 6px 6px 0px 0px;
    overflow: hidden;
}
.cp_box_inner {
	padding:20px;
}
.notify_box {
	background-color: var(--dark-bg);
	border: 1px solid var(--dark-bg);
	color: var(--bg-white);

	border-radius: 6px;

	padding: 10px;
	width: calc(100% - 22px);

	font-weight: bold;
	font-size: 16px;
}

.cp_box_form {
	width: 100%;
	text-align: left;
}
.ads_company_title {
	font-weight: bold;
	font-size: 18px;
}
.ads_title_uds {
    margin-bottom:10px;
}
.asf_left {
	width: 50%;
	padding-right: 10px;
}
.asf_right {
  width: 50%;
  padding-left: 10px;
}
.ads_billing_title {
	margin-top: 20px;
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 18px;
}
.dashboard_form_input_title {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 5px;
	display: block;
	margin-top: 20px;
}
.dashboard_form_input {
	display: block;
	width: calc(100% - 18px);
	margin: 0px;
	padding: 8px;
	border: 1px solid var(--dark-grey);
	background-color: var(--bg-white);
	color: var(--dark-bg);
	border-radius: 6px;
	font-size: 16px;
	font-weight: normal;

	transition: border-color 300ms;
}
.dashboard_form_input:focus {
    border:1px solid var(--dark-bg);
}

.account_settings_form {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	vertical-align: top;
	margin-top: -10px;
}
.dfi_select {
	padding: 7px;
	width: 100%;
	height:37px;
}
.dfi_textarea {
	resize: vertical;
}
.dashboard_form_button {
	display: block;
	margin: 0px;
	margin-top: 0px;
	padding: 8px 0px;
	border: 1px solid var(--dark-bg);
	background-color: var(--dark-bg);
	color: var(--bg-white);
	border-radius: 6px;
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	margin-top: 20px;
	cursor: pointer;
}
.dashboard_form_button i {
  margin-right: 10px;
}
.asf_right .dashboard_form_button {
	margin-top: 32px;
}

.ads_cont1 {
	margin-top: 0px;
}
.ads_cont2 {
	margin-top: -10px;
}

.cp_box_inner .notify_box {
	margin-bottom:20px;
}
.account_settings_form .dashboard_form_input_title {
  margin-top: 10px;
  height: 17px;
}
.dbc_margin {
    margin-top:20px;
}
.cp_box_header .dashboard_form_button {
    margin:0px;
}
.dfb_small {
    font-size:14px;
    padding:5px 10px;
}
.dfb_light {
	background-color: var(--bg-white);
	border: 1px solid var(--dark-grey);
	color: var(--dark-bg);
}

.dashboard_2fa_title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 18px;
}
.asf_email_notice {
    font-size:12px;
    margin-top:5px;
}

.spi_service_outer {
    border:1px solid var(--dark-grey);
    border-radius:6px;
}
.spi_service_cont {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:10px;
    border-bottom:1px solid var(--dark-grey);
}
.spi_service_cont:last-child {
    border-bottom:0px;
}
.spi_service_title {
    display:flex;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
    margin-right:10px;
}
.stc_toggle {
    display:flex;
    justify-content: flex-start;
    align-items: center;
}

.toggle-switch {
    display: inline-block;
    position: relative;
    width: 60px;
    height: 30px;
}
.toggle-switch input {
    display: none;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slider-toggle);
    transition: 0.4s;
    border-radius: 30px;
}
.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 3px;
    bottom: 3px;
    background-color: var(--bg-white);
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider {
    background-color: var(--dark-bg);
}
input:checked + .slider:before {
    transform: translateX(30px);
}

.toggle-switch-small {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 20px;
}
.toggle-switch-small input {
    display: none;
}
.slider-small {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--slider-toggle);
    transition: 0.4s;
    border-radius: 20px;
}
.slider-small:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: var(--bg-white);
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider-small {
    background-color: var(--dark-bg);
}
input:checked + .slider-small:before {
    transform: translateX(20px);
}

.bic_row_cont {
    width:calc(100% - 40px);
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding:20px;
    gap:20px;
    cursor: default;
}
.bic_row_cont:nth-child(even) {
    background-color: var(--light-grey);
}

.billing_invoices_cont {
    width:100%;
    overflow-x:scroll;
    overflow-y:visible;
}
.bic_row_title {
    font-weight:bold;
    padding:10px 20px;
    border-bottom: 1px solid var(--dark-grey);

    min-width:calc(896px - 40px);
}
.bicrc_invoices {
    min-width:896px;
}

.bicr_column {
    width:25%;
    height:auto;

    white-space: nowrap;
    overflow-x: hidden;
    overflow-y: visible;
    text-overflow: ellipsis;
    text-align: left;
}
.bicr_column i {
    margin-left:5px;
    font-weight:bold;
}
.bicr_column a {
    text-decoration: none;
    font-weight:normal;
}

.bicr_column_clients_1 {
	width:30%;
}
.bicr_column_clients_2 {
	width:30%;
}
.bicr_column_clients_3 {
	width:20%;
}
.bicr_column_clients_4 {
	width:20%;
}

.user_sessions_row {
    height:26px;
}
.bic_no_invoices {
    padding:20px;
}
.user_this_session {
    border-radius:6px;
    display:inline-flex;
    color:var(--bg-white);
    background-color: var(--dark-bg);
    border:1px solid var(--dark-bg);
    padding:3px 6px;
    font-weight:bold;
    font-size:14px;
}

.dfb_nostyle {
    margin:0px;
    padding:0px;
    font-weight:normal;
    font-size:20px;
    color:var(--dark-bg);
    background-color: transparent;
    border:0px;
    cursor: pointer;

    display:inline-flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    vertical-align: top;
    line-height: 1;

    width:22px;
    height:22px;
}
.dfb_nostyle i {
    margin:0px;
    padding:0px;
    line-height: 1;
}

.dfb_nobutton {
    margin:0px;
    padding:0px;
    border:0px;

    background-color: transparent;
    color:var(--dark-bg);

    font-size:inherit;
    font-weight: inherit;

    width:100%;
    cursor: pointer;
    height:auto;
}

.loading_popup {
    position:fixed;
    top:-100px;
    right:20px;

    color:var(--dark-text);
    background-color: var(--lighter-blue-bg);
    border:1px solid var(--lighter-blue-border);

	border-radius:6px;
    padding:20px;

    display:flex;
    justify-content: space-between;
    align-items: center;

    transition: top 0.5s ease;
    height:58px;
    z-index: 11;
}
.lp_left {
    font-size:24px;
}
.lp_right {
    font-size:48px;
    margin-left:40px;
}

.ci_title {
	font-size: 24px;
	font-weight: bold;
}
.ci_sub {
	font-size:16px;
	font-weight:300;
}
.ci_support_pin {
	font-size:20px;
	font-weight:300;
	margin-top:20px;
}
.ci_header {
	display:flex;
	justify-content: space-between;
	vertical-align: top;
	align-items: center;
}

.ci_header_right {
	display:flex;
	justify-content: flex-end;
	align-items: center;
	vertical-align: top;
}
.ci_header_right button {
	margin:0px;
	padding:8px 16px;
}

.private_notes_cont {
	width:100%;
}
.private_notes_cont textarea {
	min-height:150px;
}

#add_user_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    
    display:none;
    background-color: rgba(34, 34, 34, 0.4);
    z-index:10;

}
#add_user_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;

    width:calc(100% - 40px);
    max-width:500px;

    z-index:11;

    display:none;
    max-height:80%;
    overflow-y:scroll;
    overflow-x:hidden;
}

.dashboard_form_button_right {
    width:100%;
    display:flex;
    justify-content: right;
    margin-top:20px;
}
.dfb_auto_button {
    margin-top:0px;
    padding:8px 16px;
    width:auto;
}
.dfit_notopmargin {
    margin-top:0px;
}
.notify_box_notopmargin {
    margin-top:0px;
	margin-bottom:20px;
}
.dbc_content {
    width:100%;
    background-color: var(--bg-white);
}
.dpbc_content {
    padding:20px;
    width:auto;
}
.dpbc_close {
    cursor: pointer;
}
.user_row_clickable {
    cursor: pointer;
}

#delete_dr_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;

    background-color: rgba(34, 34, 34, 0.4);
    display:none;
    z-index:10;
}
#delete_dr_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;

    width:calc(100% - 40px);
    max-width:500px;

    display:none;
    z-index:11;
}
.dns_delete_title {
    font-size:18px;
    text-align: center;
    cursor: default;
}
.dfb_middle_yesno {
    width:100%;
    display:flex;
    justify-content: center;
    align-items: center;
    margin-top:10px;
}
.dfb_middle_yesno .dashboard_form_button:first-child {
    margin-right:20px;
}

#new_dr_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    
    background-color: rgba(34, 34, 34, 0.4);
    z-index:10;
    display:none;
}
#new_dr_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;

    max-width:500px;
    width:calc(100% - 40px);

    z-index:11;
    display:none;

    max-height:80%;
    overflow-y:scroll;
    overflow-x:hidden;
}

#SA_RESPONSE_CODE {
    display:none;
}
#SA_RESPONSE_REDR {
    display:none;
}

.dfi_ta {
    font-family: 'Maven Pro', sans-serif;
    color: var(--dark-bg);
    resize:none;
    min-height:150px;
    height:150px;
}
.dfi_ta_resize {
    resize:vertical;
}
.dfi_100px {
    min-height:100px;
    height:100px;
}

.support_pin_cont {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    margin: 0px;
    padding: 8px 16px;
    cursor: pointer;

    border: 1px solid var(--dark-bg);
    background-color: var(--dark-bg);
    color: var(--bg-white);

    border-radius: 6px;
    font-size: 20px;
    font-weight: 300;
}
.support_pin_cont i {
    margin-left:20px;
}

.contact_button_cont {
	width:272px;
	justify-content: flex-start;
	text-align: left;
}
.contact_button_cont i {
	margin:0px;
	margin-right:20px;
}
.contact_buttons_cont {
	display:flex;
	justify-content: center;
	align-items: center;
	vertical-align: top;
	flex-direction: column;
	text-align: center;
	gap:20px;
}

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

.support_attach_cont {
    margin-top:20px;
}
.sac_title {
    font-weight:bold;
    font-size:14px;
    cursor: pointer;
}
.sac_browse {
    font-weight:bold;
    cursor:pointer;
}
.sac_drop_cont {
    margin-top:5px;
    border-radius:6px;
    border: 1px solid var(--dark-grey);
    padding:20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.sacdc_subtitle {
    font-size:12px;
}
.sa_fileupload {
    position:absolute;
    top:-10px;
    left:-10px;
    overflow: hidden;
    width:0px;
    height:0px;
}
.sa_filelist {
    margin:0px;
    padding:0px;
    list-style-type: none;
}
.sa_filelist li {
    margin-top:10px;
    border-radius:6px;
    border: 1px solid var(--dark-grey);
    padding:10px;
    text-align: left;
    font-size:14px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sa_filelist li:first-child {
    margin-top:20px;
}
.sa_dragover {
    border-color: var(--dark-bg);
    transition: border-color 200ms;
}
.sa_progress {
    margin-right:10px;
    border-radius:6px;

    display:none;

    padding: 8px 16px;
    border: 1px solid var(--dark-bg);
    background-color: var(--dark-bg);
    color: var(--bg-white);
    font-size: 16px;
    font-weight: bold;
    cursor:default;
}

.hr_stm_line {
    width:100%;
    height:1px;
    background-color: var(--dark-grey);
    margin-top:20px;
    margin-bottom:20px;
}

.st_button_right {
    border-radius:0px 6px 6px 0px;

	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.st_button_middle {
    border-radius:0px;

	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.st_button_left {
    border-radius:6px 0px 0px 6px;

	display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.st_solo_button {
    display:flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.support_ticket_subject {
    font-size:20px;
    margin-bottom:40px;
}

.str_time {
    font-weight:normal;
    font-size:16px;
}
.str_name {
    font-size:18px;
}

.str_message {
    padding:0px;
    margin:0px;

    width:100%;
    
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

.stmac_cont {
    margin-top:10px;
    border-radius:6px;
    border: 1px solid var(--dark-grey);
    padding:10px;
    text-align: left;
    font-size:14px;
    cursor: pointer;

    display:flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.stmac_cont:hover {
    background-color: var(--dark-grey);
}
.stmac_cont:first-child {
    margin-top:0px;
}

.dns_popup_box_cont {
    width:500px;
    margin-left:auto;
    margin-right:auto;
    margin-bottom:20px;
    display:none;
}
.supportpin_popup_cont {
    width:100%;
    max-width:450px;
	margin-top:40px;
    margin-bottom:40px;
}
.support_pin_title {
	font-weight:bold;
	margin-bottom:10px;
	font-size:24px;
}

.dopt_cont {
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dashboard_overview_page_title {
    font-size:24px;
    font-weight:bold;
    line-height:1;
}
.cdn_page_buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dnz_zone_list_cont {
    margin-top:10px;
}

.dzlc_titles {
    display:flex;
    justify-content:start;
    align-items: center;

    width:100%;
    min-width:898px;

    font-weight:bold;
    font-size:18px;
}
.dzlct_1_title {
    width:48%;
}
.dzlct_2_title {
    width:15%;
}
.dzlct_3_title {
    width:37%;
}

.dzlct_1 {
    width:48%;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dzlct_2 {
    width:15%;
}
.dzlct_3 {
    width:22%;
}
.dzlct_4 {
    width:15%;
    display:flex;
    justify-content: end;
    align-items: center;
}
.dzlct_4 .dfb_small {
    width:auto;
    margin:0px;
}

.dzlc_indv {
    font-weight: normal;
    padding:10px;

    width:calc(100% - 22px);
    min-width:calc(898px - 22px);

    border:1px solid var(--dark-grey);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.4, var(--box-gradient-1)), color-stop(1, var(--box-gradient-2)));
	background-image: -o-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -moz-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -webkit-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -ms-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: linear-gradient(to bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
    border-top:0px;
}
.dzlc_indv:first-child {
    border-top:1px solid var(--dark-grey);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.dzlc_indv:last-child {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.support_page_ticket_list {
	margin-top:40px;
}
.support_page_title {
	margin-bottom:0px;
}
.support_no_tickets {
	margin-top:20px;
}
.support_ticket_title {
    margin-bottom:0px;
}
.support_message_box_header {
	height:auto;
}
.dbc_inner_content {
    padding:20px;
}
.support_popup_cont {
    width:100%;
    max-width:600px;
	margin-top:40px;
	margin-bottom:40px;
}

.st_email_option {
    margin-top:20px;
}
.new_ticket_stt {
    margin-bottom:20px;
}

.str_account {
    font-size:14px;
    font-weight:300;
}
.st_account_name {
    margin-bottom:5px;
    font-size:20px;
    font-weight:300;
}

.pm_message_cont {
    margin-top:40px;
    margin-bottom:40px;
    text-align: center;
}
.pm_message_title {
    font-weight:900;
    font-size:48px;
}
.pm_message_icon {
    font-size:96px;
}
.pm_message_sub {
    width:80%;
    margin-left:auto;
    margin-right:auto;
    margin-top:20px;
    margin-bottom:20px;
}

.pm_c1 {
    width:55%;
}
.pm_c2 {
    width:15%;
}
.pm_c3 {
    width:30%;
}

.ili_c1 {
    width:80%;
}
.ili_c2 {
    width:20%;
}
.ili_c2_cont {
    display:flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: top;
}
.ili_c2_buttons {
    display:flex;
    justify-content: flex-end;
    align-items: center;
    vertical-align: top;
    gap:5px;
}

.clients_stats_row {
    display:flex;
    justify-content: space-between;
    align-items: flex-start;
    vertical-align: top;
    gap:20px;

    margin-bottom:20px;
}
.csr_indv {
    width:100%;

	cursor:default;
    padding:20px;

	color: var(--dark-bg);
    border:1px solid var(--dark-grey);
    border-radius:6px;

	display:flex;
    justify-content: space-between;
    align-items: center;
    vertical-align: top;
    gap:20px;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0.4, var(--box-gradient-1)), color-stop(1, var(--box-gradient-2)));
	background-image: -o-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -moz-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -webkit-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: -ms-linear-gradient(bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
	background-image: linear-gradient(to bottom, var(--box-gradient-1) 40%, var(--box-gradient-2) 100%);
}
.csri_item1 {
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.csri_item1_1 {
    font-size:22px;
    font-weight:900;
}
.csri_item1_2 {
    font-size:18px;
    font-weight:500;
}
.csri_item2 {
    font-weight:900;
    font-size:48px;
}

.more_menu_cont {
    display: inline-block;
}
.more_menu_popup {
    display: none;
    position: fixed;
    overflow: hidden !important;

    bottom:20px;
    right:20px;

    background-color: var(--bg-white);
    border:1px solid var(--dark-grey);

    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 9999;
}

.mmp_show {
    display:block;
}
.cbc_overflow, .cbc_overflow .bic_row_cont * {
    overflow:unset;
}
.mmp_item {
    padding:10px;
    display:flex;
    justify-content: flex-start;
    align-items: center;
    vertical-align: top;
    text-align: left;
    cursor: pointer;
}
.mmp_item:hover {
    background-color: var(--light-grey);
}

.invoice_generate {
    margin-top:80px;
    margin-bottom:80px;

    display:flex;
    justify-content: center;
    align-items: center;
    vertical-align: top;
    text-align: center;
    flex-direction: column;
}
.ig_1 {
    font-size:24px;
    font-weight:900;
}
.ig_2 {
    font-size:20px;
}
.ig_3 {
    font-size:60px;
    margin-top:20px;
}

#send_iers_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    
    display:none;
    background-color: rgba(34, 34, 34, 0.4);
    z-index:10;

}
#send_iers_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;

    width:calc(100% - 40px);
    max-width:500px;

    z-index:11;

    display:none;
    max-height:80%;
    overflow-y:scroll;
    overflow-x:hidden;
}

#pm_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;
    
    display:none;
    background-color: rgba(34, 34, 34, 0.4);
    z-index:10;

}
#pm_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;

    width:calc(100% - 40px);
    max-width:500px;

    z-index:11;

    display:none;
    max-height:80%;
    overflow-y:scroll;
    overflow-x:hidden;
}

.nav_toggle {
	display:none;

	border-radius:6px;
	background-color: var(--dark-bg);
	border:1px solid var(--dark-bg);
	padding:10px 15px;
	color:var(--dark-text);

	font-weight:600;
	font-size:18px;

	flex-direction: column;
	cursor: pointer;
	gap: 5px;
}
.nav_toggle span {
  height: 3px;
  width: 26px;
  background-color: var(--dark-text);
  border-radius: 2px;
}

.unsupported_popup_wrap {
    position:fixed;
    top:0px;
    left:0px;
    width:100%;
    height:100%;

    display:none;
    background-color: rgba(34, 34, 34, 0.4);
    z-index:10;
}
.unsupported_popup {
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);

    padding-top:0px;
    padding-bottom:0px;
    margin:0px;
    width:calc(80% - 40px);

    border:1px solid var(--lighter-blue-border);
    border-radius:6px;
    background-color: var(--lighter-blue-bg);
    padding:20px;

    z-index:11;

    display:none;
    max-height:80%;
    overflow-y:scroll;
    overflow-x:hidden;
}
.up_title {
    font-size:20px;
    font-weight:bold;
    text-align: center;
}
.up_sub {
    font-size:16px;
    font-weight:300;
    text-align: center;
    margin-top:10px;
}

.support_tickets_cont {
    width:100%;
    overflow-x: scroll;
}



@media screen and (max-width: 900px) {
    .page_cont {
        margin-top:0px;
        margin-bottom:0px;
        padding:20px;
        width: calc(100% - 40px);
    }
    .page_content {
        margin-top:20px;
        padding:20px;
    }
    .nav_cont {
        padding:20px;
        flex-direction: column;
        gap:0px;
    }
    .nav_mobile_menu {
        display:none;

        border-top: 1px solid var(--lighter-blue-border);
        width: 100%;
        padding-top: 20px;
        margin-top:20px;
    }
    .nav_right {
        flex-direction: column;
        width:100%;
    }
    .nav_right {
        gap:20px;
    }
    .nav_left {
        width:100%;
        justify-content: space-between;
    }
    .nav_toggle {
        display:flex;
    }

    .account_settings_form {
        flex-direction: column;
    }
    .asf_left {
        width:100%;
        padding:0px;
    }
    .asf_right {
        width:100%;
        padding:0px;
    }
    .asf_right .dashboard_form_button {
        margin-top:20px;
    }

    .dopt_cont, .ci_header {
        flex-direction: column;
        gap:20px;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .support_ticket_subject {
        margin-top:20px;
        margin-bottom:20px;
    }
    .support_page_ticket_list {
        margin-top:20px;
    }
    .st_account_name {
        margin-top:20px;
        margin-bottom:0px;
    }

    .clients_stats_row {
        flex-direction: column;
    }
    .csr_indv {
        width:calc(100% - 42px);
    }
}

@media screen and (max-width: 440px) {
    .cp_box_header {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height:auto;
        gap:20px;
    }
    .cdn_page_buttons, .ci_header_right {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .cdn_page_buttons button, .ci_header_right button  {
        width:100%;
        min-width: 200px;
    }
    .cdn_page_buttons .st_button_left, .ci_header_right .st_button_left {
        border-radius: 6px 6px 0px 0px;
    }
    .cdn_page_buttons .st_button_right, .ci_header_right .st_button_right {
        border-radius: 0px 0px 6px 6px;
    }
    .contact_button_cont {
        width:100%;
    }
}

@media screen and (max-width: 360px) {
    .unsupported_popup_wrap, .unsupported_popup {
        display:block;
    }
}