@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/******************************************************************************/
/* GENERAL STYLES */
:root {
  --bg-color: #191e31;
}
* {
    box-sizing: border-box;
    min-height: unset;
    -webkit-tap-highlight-color: transparent; 
}
.user_select_none {
    user-select: none;
}
body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    /*background: linear-gradient(to bottom, #00000055 1%, #fff 20%);*/
    display: flex;
    overflow-y: scroll;
}
[tab="updates"] {
    display: none;
}
/******************************************************************************/
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", sans-serif;
    margin: 0 0;
    font-weight: 700;
}
h1 {
    font-size: 24px;
}
h2 {
    font-size: 22px;
}
h3 {
    font-size: 18px;
}
h4 {
    font-size: 16px;
}
h5 {
    font-size: 15px;
}
h6 {
    font-size: 14px;
}
p, span {
    font-size: 14px;
    line-height: 26px;
    
}
ol, ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
li {
    font-size: 14px;
    line-height: 20px;
}
/******************************************************************************/
/* LINKS */
a {
    color: inherit;
    text-decoration: none;
}
a:not(.btn):not(nav a):not(.item):not(main_nav_sidebar a):not([tab]) {
    color: #533afd;
    font-weight: bold;
}

/******************************************************************************/
/* FORM STYLES */
input:not(label input), textarea:not(label input) {
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    font-size:13px;
    line-height: 20px;
}
select[type="filter"]:focus,
select[type="filter"]:active,
select[type="filter"]:focus-visible {
    box-shadow: none;
    outline: none !important;
    border-width: initial !important;
    border-style: none !important;
    border-color: initial !important;
    border-image: initial !important;
}
label {
    font-weight: 600;
    margin: 12px 0 10px;
    display: block;
    font-size: 15px;
}
form {
    width: 100%;
    margin-bottom: 0;
}
fieldset {
    border: none;
    padding: 0;
}
/******************************************************************************/
/* TABLE STYLES */
table {
    border: none;
    border-radius: 10px !important;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}
.filter_section {
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 15px;
}
.filter_section .filter_select {
    width: max-content;
    flex: 0 0 max-content;
    gap: 10px;
}
.filter_select select {
    width: max-content;
}
.table_container {
    /*border: 1px solid #ccc;*/
    border-radius: 10px;
    position: relative;
    
}
.table_container:before {
    content: '';
    user-select: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    z-index: 6;
    width: 99.89%;
    height: 100%;
    position: absolute;
    pointer-events: none;
    overflow: hidden;
}
thead {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #fff;
    border-radius: 10px;
}
tr:nth-child(odd):not(thead tr){
    background: #0000000a;
}
thead tr {
    /*border-bottom: 1px solid #ccc;*/
    box-shadow: 0 1px 0 #ccc;
}
th, td {
    padding: 10px;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 13px;
    align-content: start;
}
td:first-child .item_actions {
    visibility: hidden;
    max-width: max-content;
    margin-top: 5px;
}
td:first-child .item_actions a {
    font-weight: 500;
    font-size: 12px;
}
td:first-child .item_actions a:hover {
    text-decoration: underline;
}
td:first-child a {
    font-weight: 700;
    font-size: 14px;
}
td:first-child:hover .item_actions {
    visibility: visible;
}
/******************************************************************************/
/* COLOR */
nav a {
    font-weight: 600;
    color: #000;
    padding: 14px 24px;
    text-decoration: none;
    transition: ease 300ms;
    border-radius: 8px;
    font-size: 16px;
    border: 2px solid transparent;
}
nav a:hover {
    background: #eee;
    border: 2px solid #eee;
}
.transition_ease_200ms {
	transition: ease 200ms;
}
.cursor_pointer {
    cursor: pointer;
}
.btn, button, btn, .button, [type=submit] {
    padding: 11px 13px;
    text-decoration: none;
    font-weight: 600;
    color: inherit;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    border-radius: 12px;
    transition: ease 400ms;
    font-variation-settings: "wdth" 125;
    font-size: 15px;
    cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	user-select: none;
	gap: 10px;
	text-transform: capitalize;
}
.btn.sml {
    padding: 5px 9px;
    font-size: 13px;
    border-radius: 10px;
    width: fit-content;
}
.hide_desktop {
    display: none;
}
.cta_flex {
    gap: 15px;
}
.cta {
    background: var(--bg-color);
    border: 1px solid var(--bg-color);
    color: #fff;
}
#reloadButton {
    background: var(--bg-color) !important;
    border: 1px solid var(--bg-color) !important;
    color: #fff !important;
    width: max-content;
    margin: 20px auto;
    opacity: .6;
    transition: ease 200ms;
    font-size: 13px !important;
    padding: 10px 15px !important;
    line-height: 13px;
}
#reloadButton:hover {
    opacity: 1;
}
#reloadButton svg {
    display: none!important;
}
.cta_white {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
}
.cta_gray {
    background: #eee;
    border: 1px solid #eee;
    color: #000;
}
.cta:hover {
    opacity: .7;
    border: 1px solid var(--bg-color);
}
.cta.inactive {
    opacity: 0.2;
}
.cta.inactive:hover {
    background: #191e31;
    border: 1px solid var(--bg-color);
    color: #fff;
    opacity: 1;
}
.alt_cta:hover {
    background: #eee;
}
/******************************************************************************/
/* MOBILE MENU ICON */
.mmi {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    padding: 20px;
    border-radius: 500px;
    background: #fff;
    border: 2px solid #000;
}
.mmi span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #000;
    height: 2px;
    width: 100%;
    display: block;
    transform-origin: center center;
    transition: ease 200ms;
    width: 20px;
}
.mmi span:first-child:before {
    content: '';
    position: absolute;
    top: -7px;
    background: #000;
    height: 2px;
    width: 100%;
    display: block;
}
.mmi span:first-child:after {
    content: '';
    position: absolute;
    bottom: -7px;
    background: #000;
    height: 2px;
    width: 100%;
    display: block;
}
.mmi.dp_active span:first-child:after,.mmi.dp_active span:first-child:before {
    display: none;
}
.mmi.dp_active span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.mmi.dp_active span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

/******************************************************************************/
/* State Select Module */
.state_form .state_select {
    border: 1px solid #dcdcdc;
    background: #fff;
    max-width: 100%;
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 13px;
    cursor: pointer;
    flex: 0 0 300px;
    z-index: 1;
}
.state_select.dp_active {
    border: 1px solid #a573a8;
}
[role=listbox] {
    list-style: none;
    padding: 0;
    box-shadow: 0 0 0 1px #dcdcdc;
    border-radius: 5px;
    width: 300px;
    max-width: 100%;
    max-height: 300px;
    overflow-y: auto;
    margin: 8px 0;
    display: none;
    position: absolute;
    z-index: 1;
    background: #fff;
}
[role=listbox].show_popup {
    display: block!important;
}
[role=listbox]::-webkit-scrollbar {
    width: 9px;
    border-left: 1px solid #ddd;
}
[role=listbox]::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 500px;
}
[role=listbox] li {
    padding: 7px 15px;
    font-size: 14px;
    cursor: pointer;
}
[role=listbox] li:hover {
    background: #00e75933;
}
.relative {
    position: relative;
}
.homepage_hero .right img {
    margin-bottom: -62px;
}
.homepage_hero container {
    padding: 0 10px 62px;
}
.home #backButton {
    display: none;
}
.benefits h3 {
    font-size: 17px;
    margin: 0;
}
.benefits p {
    margin: 10px 0;
}
.homepage_trust_section h2, .homepage_trust_section p {
    text-align: center;
    max-width: 500px;
    margin: 10px auto;
}
.homepage_trust_section container {
    padding: 50px 10px;
}
/******************************************************************************/
/* Breadcrumbs */
 .breadcrumbs a {
     font-weight: bold;
     color: #000;
     text-decoration: none;
 }
 .breadcrumbs a:hover {
     text-decoration: underline;
 }
.breadcrumbs {
    font-size: 15px;
    z-index: 49999;
    margin-top: -14px;
    margin-left: -17px;
}
.breadcrumbs ul {
    max-width: max-content;
    background: #fff;
    padding: 7px 20px;
    border-radius: 0 0 20px 20px
}
/* End of Breadcrumbs */

/******************************************************************************/
/* HEADER SEARCH STYLES */
.header_search {
    border: 1px solid #ffffff;
    border-radius: 500px;
    background: #ffffff;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 337px;
    max-width: 100%;
}
.header_search button {
    padding: 13px 15px;
    border: none;
    background: transparent;
	align-items: stretch;
	flex: 0 0 45px;
}
.header_search input {
    padding: 13px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
}
.header_search input:focus-within, .header_search input:active {
    box-shadow: none;
    outline: none;
    border: none;
}
/******************************************************************************/
/* SINGLE PAGE STYLES  */
.single_title_section h1 {
    font-size: 28px;
    line-height: 32px;
    margin: 0 0 6px;
}
.single_title_section .btn {
    padding: 8px 9px;
}
.single_title_section .alt_cta {
    border: 1px solid #f0f0f0;
    background: #f0f0f0;
}
.alt_cta {
    border: 1px solid;
    background: #fff;
}
.single_tabs {
    background: #fff;
    border-radius: 20px;
    justify-content: center;
}
.single_tabs .btn {
    padding: 20px 18px!important;
    border-radius: 0 0 0 0;
    border-bottom: 3px solid transparent;
}
.single_tabs .btn:hover {
    background: #f0f0f0;
}
.single_tabs .btn.active {
    border-bottom: 3px solid #000!important;
}

/******************************************************************************/
/* MOBILE MENU */
.mobile_menu {
    width: 300px;
    max-width: 100%;
    top: 76px;
    margin-right: -16px;
    box-shadow: 0 0 10px #00000022;
    padding: 15px 0;
    display: none;
}
.admin-bar .mobile_menu {
	top: 120px;
}
.mobile_menu.show_popup {
	display: flex;
}
.mobile_menu a {
	padding: 15px 20px;
	display: flex;
	align-items: center;
	color: #000;
	text-decoration: none;
	font-weight: 500;
	transition: ease 200ms;
}
.mobile_menu a:hover {
	background: #f8f8f9;
}
.post_activity .btn {
    padding: 7px;
}
main .filters .btn:not(.cta) {
    padding: 10px 20px;
    border: 1px solid transparent;
}
main .filters form {
    border: 1px solid #fff;
    border-radius: 500px;
    background: #fff;
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 337px;
    max-width: 100%;
}
main .filters form button {
    padding: 13px 15px;
    border: none;
    background: transparent;
	align-items: stretch;
	flex: 0 0 45px;
}
main .filters form input {
    padding: 13px 15px;
    border: none;
    background: transparent;
    font-size: 16px;
    flex: 1;
}
main .filters form input:focus-within, main .filters form input:active {
    box-shadow: none;
    outline: none;
    border: none;
}
/* MISC */
.highlight_list span {
    white-space: nowrap;
    border-radius: 500px;
    background: #eff0f2;
    padding: 7px 15px;
    font-weight: 500;
    font-size: 15px;
    color: #777;
}
td:first-child svg {
    display: none;   
}
.row_title {
    max-width: 400px;
}
#pay_tasks {
    width: 100%;
    background-image: none!important;
}
#pay_tasks::-webkit-scrollbar {
    width: 0;
}
select {
    appearance: none; /* Remove default dropdown icon */
    -webkit-appearance: none; /* Safari */
    -moz-appearance: none; /* Firefox */
    background-color: white;
    padding: 10px 15px;
    background: #fff;
    border-radius: 8px;
    background-image: url('https://cdn-icons-png.flaticon.com/128/9126/9126125.png');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 13px;
    line-height: 20px;
    width: 100%; /* Adjust as needed */
    border: 1px solid #ddd!important;
    cursor: pointer;
}
.main_content {
    padding-bottom: 85px;
}
.main_content table label {
    font-size: 13px;
    margin-bottom: 3px;
    display: none;
}
.top_header_section p {
    margin: 8px 0 0;
    font-size: 16px;
}
.top_header_section {
    padding: 25px 0 50px;
}
.top_header_section h1 {
    font-size: 36px;
}
.main_sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 0 0 370px;
    border-left: 1px solid #ddd;
    padding: 15px 15px 80px;
    position: sticky;
    top: 0;
    justify-content: start;
    z-index: 0;
}
.home .main_sidebar {
    display: none;
}
.main_sidebar .btn {
    max-width: max-content;
}
div[sidebar_tab_content="notes"] {
    z-index: 2 !important;
}
.product_summary_tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.product_summary_tags > p {
    background-color: aquamarine;
    border-radius: 5px;
    padding: 5px 15px;
    margin: 5px;
    height: 37px;
    text-align: center;
}

/******************************************************************************/
/*WIZYWIG EDITOR STYLES*/
.ql-editor {
  overflow-y: auto !important;
  scrollbar-width: thin; /* for Firefox */
}

.ql-editor::-webkit-scrollbar {
  width: 6px;
}

.ql-editor::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

/*TABLET STYLE*/
@media(max-width: 1450px) {
    .main_sidebar {
        display: none;
    }
}
/******************************************************************************/
/*MOBILE STYLES*/
@media (max-width: 900px) {
    .hide_desktop {
        display: flex;
    }    
    th, td {
        padding: 10px 10px;
    }
    .tab_content th, .tab_content td {
        padding: 10px 0;
    }
    td svg {
        flex: 0 0 12px;
    }
    .flex_wrap_mobile {
        flex-wrap: wrap;
    }
    .top_header_section h1 {
        font-size: 28px;
    }
    body {
        flex-wrap: wrap;
    }
	hero h1 {
	    font-size: 38px;
    	line-height: 48px;
	    margin: 47px 0px 34px;
	}
	.mobile_flex_column {
		flex-direction: column;
	}
	.hide_mobile {
		display: none;
	}
	.mobile_flex_0_fit_content {
		flex: 0 0 fit-content;
	}
	hero container {
	    flex-direction: column;
	}
	hero form {
	    flex-direction: column;
	}
	hero .cta {
	    width: 100%;
	}
    hero container section:first-child {
        padding: 15px;
        max-width: 100%;
        flex: 1;
    }
    hero container section:last-child {
        flex: 1;
        max-width: 100%;
    }
    tr {
        display: flex;
        flex-direction: column;
    }
    thead {
        display: none;
    }
    td:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    td:first-child svg {
        display: block;
        pointer-events: none
    }
    td:first-child.active svg {
        transform: rotate(-180deg);
    }     
    td:not(:first-child) {
        display: none;
    }
    td:first-child.active ~ td:not(:first-child) {
        display: block;
    }
    td:first-child .item_actions {
        visibility: visible;
    }   
    .main_sidebar {
        display: none;
    }
    .main_content table label {
        display: block;
    }
    .main_content .filter_select label {
        display: none;
    }
    select {
        appearance: none; /* Remove default dropdown icon */
        -webkit-appearance: none; /* Safari */
        -moz-appearance: none; /* Firefox */
        background-color: white;
        padding: 8px 12px;
        background: #eee;
        border-radius: 8px;
        background-image: none
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        width: 100%; /* Adjust as needed */
    }    
}