
/* call to action section */
.d2c_call_to_action{
    padding: 1.875rem;
    border-radius: var(--bs-border-radius);
    background: linear-gradient(90deg, #10284A 0%, #286D72 100%);
    background-repeat: no-repeat;
    -webkit-border-radius: var(--bs-border-radius);
    -moz-border-radius: var(--bs-border-radius);
    -ms-border-radius: var(--bs-border-radius);
    -o-border-radius: var(--bs-border-radius);
}

/************************** 
Content Generator 
***************************/

.d2c_content_generator 
.d2c-ai-container .btn-outline-primary{
    --bs-btn-color: var(--paragraph_color);
    --bs-btn-border-color: var(--paragraph_color);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--paragraph_color);
    --bs-btn-hover-border-color: var(--paragraph_color);
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--paragraph_color);
    --bs-btn-active-border-color: var(--paragraph_color);
    --bs-btn-active-shadow: inset 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: var(--paragraph_color);
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: var(--paragraph_color);
    --bs-gradient: none;
}


/* Image Generator  */
.d2c_image_generate .image-container {
    width: 18.75rem;
    height: 12.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.0625rem solid #ccc;
    background-color: #f8f8f8;
    font-size: 1.125rem;
    overflow: hidden;
}

#outputImages img {
    width: 100%;
    object-fit: cover;
    border-radius: 0.3125rem;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    -ms-border-radius: 0.3125rem;
    -o-border-radius: 0.3125rem;
}


/* --------------------------------------------------
    Chat Page page
----------------------------------------------------- */
.d2c_chatAi {
    max-width: 46.875rem;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}
.chat-box-container {
    width: 100%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.chat-box-header {
    display: block;
    text-align: center;
}
.ai,
.person {
    text-align: left;
}
.chat-box {
    flex-grow: 1;
    background-color: #fff;
    overflow-y: scroll;
}
.ai,
.d2c-ai-container,
.d2c-person-container,
.person {
    overflow: auto;
}
.chat-box::-webkit-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: none;
}
.chat-box p {
    margin: 0;
}
.ai,
.person {
    margin: 0rem 0.625rem;
    border-radius: 0.625rem;
    display: inline-block;
    -webkit-border-radius: 0.625rem;
    -moz-border-radius: 0.625rem;
    -ms-border-radius: 0.625rem;
    -o-border-radius: 0.625rem;
}
.ai {
    background: rgba(53, 38, 117, 0.02);
    border: 0.0313rem solid #ebe9f1;
    float: left;
    padding: 0.9375rem;
    margin: initial;
}
.person {
    background-color: var(--primary_shade);
    float: right;
    padding: 0.3125rem 0.9375rem;
}
.person p {
    color: var(--primary_color);
}
.d2c-ai-container .btn-outline-primary{
    border-color: var(--primary_color) !important;
    color: var(--primary_color) !important;
}
.d2c-ai-container .btn-outline-primary:hover{
    background: var(--primary_shade) !important;
}
.regenerate-btn {
    float: left;
    margin-left: 2.6875rem;
}
.person-date {
    float: right;
    margin-right: 0.375rem;
}

.d2c_chatAi .ai .btn-outline-primary {
    --bs-btn-color: #10284A;
    --bs-btn-border-color: #10284A;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #10284A;
    --bs-btn-hover-border-color: #10284A;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #10284A;
    --bs-btn-active-border-color: #10284A;
    --bs-btn-active-shadow: inset 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #10284A;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #10284A;
    --bs-gradient: none;
}

.chat-input-container {
    position: relative;
    height: 3.75rem;
    width: 100%;
    display: flex;
    bottom: 0;
    align-items: center;
    justify-content: center;
    overflow: auto;
}
.d2c_avatar {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: cover;
    border-radius: 0.375rem;
    -webkit-border-radius: 0.375rem;
    -moz-border-radius: 0.375rem;
    -ms-border-radius: 0.375rem;
    -o-border-radius: 0.375rem;
}
.d2c-person-container .image-container {
    float: right;
}
.d2c-ai-container .image-container {
    float: left;
}
.response-body {
    margin: 0.625rem 0;
}
.d2c-ai-container .response-body,
.d2c-person-container .response-body {
    display: flex;
    align-content: center;
    align-items: flex-start;
}
.d2c-person-container .response-body {
    justify-content: flex-end;
}
.d2c-ai-container .response-body {
    justify-content: flex-start;
}
.d2c-ai-container .response-body .ai {
    order: 2 !important;
}

.chat-type-content .btn-outline-primary{
    --bs-btn-color: #707E92;
    --bs-btn-border-color: #D7E2E8;
    --bs-btn-hover-color: #707E92;
    --bs-btn-hover-bg: #D7E2E8;
    --bs-btn-hover-border-color: #D7E2E8;
    --bs-btn-focus-shadow-rgb: 13,110,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #D7E2E8;
    --bs-btn-active-border-color: #D7E2E8;
    --bs-btn-active-shadow: inset 0 0.1875rem 0.3125rem rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #D7E2E8;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #D7E2E8;
    --bs-gradient: none;
}


.d2c_all_ai_image img{
    height: 19.375rem;
    object-fit: cover;
    border-radius: 0.3125rem;
    -webkit-border-radius: 0.3125rem;
    -moz-border-radius: 0.3125rem;
    -ms-border-radius: 0.3125rem;
    -o-border-radius: 0.3125rem;
}

@media only screen and (min-width:0rem) and (max-width:47.9375rem){
    .d2c_content_generator .border-end{
        border-right: 0rem !important;
    }
}
@media only screen and (min-width:48rem) and (max-width:61.9375rem){
    .d2c_content_generator .border-end{
        border-right: 0rem !important;
    }
}
@media only screen and (min-width:62rem) and (max-width:74.9375rem){
    .d2c_content_generator .border-end{
        border-right: 0rem !important;
    }
}

/*---------------------------------------------------
    Advanced Form page
-----------------------------------------------------*/

#d2c_form_step {
    max-width: 100%;
}
#d2c_form_step .d2c_step_form_header {
    gap: 0.313rem;
    text-align: center;
    font-size: 0.9em;
}
#d2c_form_step .d2c_step_form_header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 1.25rem;
}
#d2c_form_step .d2c_step_form_header .stepIndicator.active {
    font-weight: 700;
    color: var(--accent_color);
}
#d2c_form_step .d2c_step_form_header .stepIndicator.finish {
    font-weight: 600;
    color: var(--bs-secondary);
}
#d2c_form_step .d2c_step_form_header .stepIndicator::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary_shade);
    border-radius: 50%;
    border: 0.188rem solid #ecf5f4;
}
#d2c_form_step .d2c_step_form_header .stepIndicator.active::before {
    background-color: var(--accent_color);
}
#d2c_form_step .d2c_step_form_header .stepIndicator.finish::before {
    background-color: var(--primary_color);
    border: 0.188rem solid #bef2da;
}
#d2c_form_step .d2c_step_form_header .stepIndicator::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 0.063rem;
    background-color: #f3f3f3;
}
#d2c_form_step .d2c_step_form_header .stepIndicator.active::after {
    background-color: var(--accent_color);
}
#d2c_form_step .d2c_step_form_header .stepIndicator.finish::after {
    background-color: var(--primary_color);
}
#d2c_form_step .d2c_step_form_header .stepIndicator:last-child:after {
    display: none;
}
#d2c_form_step input,
#d2c_form_step textarea {
    width: 100%;
    background-color: #e7f9ec;
    border: 0.063rem solid rgba(229, 227, 242, 0.5);
    border-radius: 0.313rem;
    padding: 0.5rem 1.25rem;
    color: rgba(56, 56, 56, 0.6);
    font-size: 0.875rem;
    font-weight: 400;
}
#d2c_form_step input:focus,
#d2c_form_step textarea:focus {
    border: 0.063rem solid #009688;
    outline: 0;
}
#d2c_form_step input.invalid,
#d2c_form_step textarea.invalid {
    border-color: #ffaba5 !important;
}
#d2c_form_step .step {
    display: none;
}
#d2c_form_step .form-footer {
    overflow: auto;
    gap: 1.25rem;
}
#d2c_form_step .form-footer #prevBtn {
    background-color: #fff;
}
#editor{
    border-radius: 0rem 0rem 0.5rem 0.5rem;
}
.ql-toolbar{
    border-radius: 0.5rem 0.5rem 0rem 0rem;
}
.ck-editor__editable{
    height: 15.625rem;
}
.tox .tox-notification--in{
    display: none !important;
}
.ck-content{
    border-radius: 0rem 0rem 0.5rem 0.5rem !important;
}
.ck-toolbar{
    border-radius: 0.5rem 0.5rem 0rem 0rem !important;
}

/* multi step form validation */
.stepwizard-step p {
    margin-top: 0.625rem;
}
.stepwizard-row {
    display: table-row;
}
.stepwizard {
    display: table;
    position: relative;
}
.stepwizard-step .d2c_btn[disabled] {
    /* filter: alpha(opacity=100) !important; */
    background: var(--primary_shade);
}
.stepwizard-row:before {
    top: 1.25rem;
    bottom: 0;
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.0625rem;
    background-color: #ccc;
    z-index: 0;
}               
.stepwizard-step {                             
    display: table-cell;
    text-align: center;
    position: relative;
}
.btn-circle {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
/*---------------------------------------------------
    advanced table page
-----------------------------------------------------*/
.dt-button{
    background: transparent !important;
    border-color: var(--primary_color) !important;
    color: var(--primary_color) !important;
}
.dt-button:focus{
    box-shadow: none !important;
    outline: none !important;
}
.dt-button-active{
    box-shadow: none !important;
    outline: none !important;
    background: var(--primary_color) !important;
    border-color: var(--primary_color) !important;
    color: var(--bs-white) !important;
}

/* ---------------------------------------------------
    Pagination page
----------------------------------------------------- */

.page-item {
    background: transparent;
}

.page-link {
    color: var(--bs-dark);
    font-weight: 600;
    padding: 0.625rem 1.063rem;
    border-color: #EBEBEB;
}

.page-link:focus {
    box-shadow: none;
    color: var(--bs-primary);
}
.page-link:hover{
    color: var(--bs-primary);
}
.page-item.active .page-link{
    background: var(--primary_color) !important;
    border-color: var(--primary_color);
    color: var(--bs-white);
}
.d2c_flat_pagination .page-link {
    border-color: transparent;
}

.d2c_rounded_pagination .page-item:first-child .page-link {
    border-top-left-radius: 43.008px;
    border-bottom-left-radius: 43.008px;
}

.d2c_rounded_pagination .page-item:last-child .page-link {
    border-top-right-radius: 43.008px;
    border-bottom-right-radius: 43.008px;
}

.d2c_separated_pagination .page-link {
    margin: 0.313rem;
    border-radius: 0.375rem;
}

.d2c_separated_rounded .page-link {
    border-radius: 50% !important;
    margin: 0.313rem;
    width: 2.813rem;
    height: 2.813rem;
    padding: 0.313rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d2c_custom_pagination .page-item {
    display: flex;
    align-items: center;
}

.d2c_separated_pagination .page-link {
    margin: 0rem 0.313rem;
    border-radius: 0.375rem;
}
.d2c_custom_pagination .page-link{
    background: transparent;
    border-color: transparent;
}
.d2c_custom_pagination .d2c_page_number {
    width: 2.188rem;
    height: 2.188rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d2c_custom_pagination .page-item.active .page-link {
    background: var(--primary_color) !important;
    border-color: var(--primary_color);
}

/*---------------------------------------------------
    create invoice page
-----------------------------------------------------*/
.d2c_count_wrapper input{
    border-radius: 0.375rem;
    width: 2.75rem;
    height: 2.75rem;
    border: 0.0625rem solid var(--primary_shade);
    text-align: center;
    font-weight: 600;
}
.d2c_count_wrapper input:focus-visible{
    outline: none;
}
.d2c_invoice_list table .d2c_action{
    width: 7.5rem !important;
}

/* ---------------------------------------------------
    Timeline page
----------------------------------------------------- */

.d2c_timeline_upper {
    margin-bottom: 8.75rem;
}
.d2c_timeline_upper:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.125rem;
    background: var(--bs-primary);
    bottom: -4.375rem;
}
.d2c_timeline_content {
    width: 20%;
    position: relative;
}
.d2c_timeline_content::before {
    content: '';
    width: 0.0625rem;
    height: 3.125rem;
    position: absolute;
    left: 0rem;
    background: rgba(166, 170, 180, 0.3);
}
.d2c_timeline_upper .d2c_timeline_content::before {
    bottom: -3.3125rem;
}
.d2c_timeline_wrapper {
    padding: 1.875rem;
}
.d2c_timeline_wrapper .d2c_timeline_content::after {
    position: absolute;
    width: 1.5625rem;
    height: 1.5625rem;
    bottom: -5.125rem;
    left: -0.75rem;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--bs-white);
}
.d2c_timeline_upper .d2c_timeline_content:first-child::after {
    content: '2';
}
.d2c_timeline_upper .d2c_timeline_content:last-child::after {
    content: '4';
}
.d2c_timeline_down .d2c_timeline_content::before {
    top: -3.3125rem;
}
.d2c_timeline_down .d2c_timeline_content::after {
    top: -5.25rem;
    left: -0.75rem;
}
.d2c_timeline_down .d2c_timeline_content:first-child::after {
    content: '1';
}
.d2c_timeline_down .d2c_timeline_content:nth-child(2)::after {
    content: '3';
}
.d2c_timeline_down .d2c_timeline_content:last-child::after {
    content: '5';
}
/* trading journey timeline */
.d2c_trading_journey_timeline {
    padding: 30px;
}
.d2c_trading_timeline_content {
    position: relative;
}
.d2c_trading_timeline_content .d2c_years {
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    position: absolute;
    top: 1.25rem;
    right: -28px;
}
.d2c_trading_timeline_content p i {
    font-size: 8px;
    border: 0.063rem solid var(--primary_color);
    color: var(--primary_color);
    border-radius: 50px;
    padding: 0.188rem;
}
.d2c_trading_timeline_content .d2c_timeline_title{
    color: var(--primary_color);
}
.d2c_trading_timeline_content p sup {
    top: -0.188rem;
    z-index: 11;
}
.d2c_trading_timeline_content .d2c_card_wrapper {
    padding: 1.25rem;
    padding-left: 100px;
    padding-right: 100px;
    position: relative;
}
.d2c_trading_journey_timeline .d2c_trading_timeline_content:first-child::after,
.d2c_trading_journey_timeline .d2c_trading_timeline_content:nth-child(3)::after {
    content: '';
    width: 0.063rem;
    height: 100%;
    background: var(--primary_color);
    position: absolute;
    right: -8px;
    top: 30px;
    z-index: 0;
}
.d2c_trading_journey_timeline .d2c_trading_timeline_content:nth-child(4) .d2c_years {
    left: -0.75rem;
}

/*---------------------------------------------------
    Map page
-----------------------------------------------------*/
.d2c_map {
    width: 80% !important;
    height: 350px;
    margin: 0rem auto;
}
#world_map svg path{
    fill: var(--primary_color);
}
#usa_map svg path{
    fill: var(--secondary_one);
}
#canada_map svg path{
    fill: var(--paragraph_color);
}
#australia_map svg path{
    fill: var(--accent_color);
}

/*---------------------------------------------------
    Button page
-----------------------------------------------------*/
.d2c_hover_btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding: 0.5rem 1.25rem;
    border-radius: 15.008px;
    text-align: center;
    border: 0.063rem solid var(--primary_color);
    color: var(--primary_color);
    z-index: 0;
    background: var(--bs-white);
} 
.d2c_hover_btn:hover{
    color: var(--bs-white);
    border-color: var(--primary_color);
}
.d2c_hover_btn::before,.d2c_hover_btn::after{
    position: absolute;
    content: "";
    background: var(--primary_color);
    transition-duration: 0.3s;
    z-index: -1;
    opacity: 1;
}
/* top */
.btn_fill_top::before {
    inset: auto auto 0rem 0rem;
    width: 100%;
    height: 0rem;
} 
.btn_fill_top:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
} 
/* right */
.btn_fill_right::before {
    inset: 0rem auto auto 0rem;
    width: 0rem;
    height: 100%;
} 
.btn_fill_right:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
} 
/* down */
.btn_fill_down::before {
    inset: 0rem auto auto 0rem;
    width: 100%;
    height: 0rem;
} 
.btn_fill_down:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
} 
/* left */
.btn_fill_left::before {
    inset: 0rem 0rem auto auto;
    width: 0rem;
    height: 100%;
} 
.btn_fill_left:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
} 
/* middle */
.btn_fill_middle::before {
    inset: auto auto 0rem 0rem;
    width: 100%;
    height: 0rem;
} 
.btn_fill_middle:hover::before {
    width: 100%;
    height: 50%;
    opacity: 1;
} 
.btn_fill_middle::after {
    inset: 0rem auto auto 0rem;
    width: 100%;
    height: 0rem;
} 
.btn_fill_middle:hover::after {
    height: 50%;
} 
/* horizontal middle */
.btn_fill_middle_horizontal::before {
    inset: 0rem 0rem auto auto;
    width: 0rem;
    height: 100%;
} 
.btn_fill_middle_horizontal:hover::before {
    width: 50%;
    height: 100%;
    opacity: 1;
} 
.btn_fill_middle_horizontal::after {
    inset: 0rem auto auto 0rem;
    width: 0rem;
    height: 100%;
} 
.btn_fill_middle_horizontal:hover::after {
    width: 50%;
} 

/* details button css */
/* detail top */
.d2c_detail_btn {
    position: relative;
    box-sizing: border-box;
    display: inline-block;
    overflow: hidden;
    padding: 0.5rem 1.25rem;
    margin: 0rem 0.188rem 0.375rem;
    text-align: center;
    border: none;
    text-decoration: none;
    background: var(--bs-white);
    color: var(--primary_color);
    white-space: nowrap;
    border-radius: 0.25rem;
    z-index: 0;
} 
.d2c_detail_btn::after{
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0.25rem;
    content: "";
    border: 0.125rem solid var(--primary_color);
    z-index: 2;
    margin: 0rem;
    transition: border-bottom-width 0.1s ease 0.2s, height 0.2s ease 0.1s, width 0.2s ease 0s, margin 0.2s ease 0s;
}
.d2c_detail_top {
    position: relative;
    transition-duration: 0.3s;
    overflow: visible;
    box-sizing: border-box;
    border: none;
    padding: 0.625rem 1.375rem;
} 
.d2c_detail_top::after {
    top: 0rem;
    right: 0rem;
    border-bottom-width: 0.125rem;
} 
.d2c_detail_top:hover::after {
    width: 60%;
    height: 0rem;
    border-width: 0.125rem 0.125rem 0rem;
    margin: 0rem 20%;
    transition: border-bottom-width 0.1s ease 0s, height 0.2s ease 0.1s, width 0.2s ease 0.2s, margin 0.2s ease 0.2s;
} 
/* detail right */ 
.d2c_detail_right::after{
    bottom: 0rem;
    right: 0rem;
    border-left-width: 0.125rem;
    transition: border-left-width 0.1s ease 0.2s, width 0.2s ease 0.1s, height 0.2s ease 0s, margin 0.2s ease 0s;
}
.d2c_detail_right:hover::after {
    width: 0rem;
    height: 60%;
    border-width: 0.125rem 0.125rem 0.125rem 0rem;
    margin: 5% 0rem;
    transition: border-left-width 0.1s ease 0s, width 0.2s ease 0.1s, height 0.2s ease 0.2s, margin 0.2s ease 0.2s;
} 
/* detail bottom */
.d2c_detail_bottom::after{
    left: 0rem;
    bottom: 0rem;
    border-top-width: 0.125rem;
    transition: border-top-width 0.1s ease 0.2s, height 0.2s ease 0.1s, width 0.2s ease 0s, margin 0.2s ease 0s;
}
.d2c_detail_bottom:hover::after {
    width: 60%;
    height: 0rem;
    border-width: 0rem 0.125rem 0.125rem;
    margin: 0rem 20%;
    transition: border-top-width 0.1s ease 0s, height 0.2s ease 0.1s, width 0.2s ease 0.2s, margin 0.2s ease 0.2s;
} 
/* detail bottom */
.d2c_detail_left::after{
    bottom: 0rem;
    left: 0rem;
    border-right-width: 0.125rem;
    transition: border-right-width 0.1s ease 0.2s, width 0.2s ease 0.1s, height 0.2s ease 0s, margin 0.2s ease 0s;
}
.d2c_detail_left:hover::after {
    width: 0rem;
    height: 60%;
    border-width: 0.125rem 0rem 0.125rem 0.125rem;
    margin: 5% 0rem;
    transition: border-right-width 0.1s ease 0s, width 0.2s ease 0.1s, height 0.2s ease 0.2s, margin 0.2s ease 0.2s;
} 

/*---------------------------------------------------
    EVENT CALENDER
-----------------------------------------------------*/
.d2c_event_calender .list-group .list-group-item {
    padding: 0.2rem 0rem;
    border: none;
    background-color: transparent !important;
    font-weight: 500;
}

.d2c_theme_light .d2c_event_calender .list-group .list-group-item {
    color: var(--bs-dark);
}

.d2c_event_calender .list-group .list-group-item::before {
    content: '';
    height: 0.688rem;
    width: 0.688rem;
    border-radius: 0.125rem;
    -webkit-border-radius: 0.125rem;
    -moz-border-radius: 0.125rem;
    -ms-border-radius: 0.125rem;
    -o-border-radius: 0.125rem;
    background-color: var(--bs-secondary);
    margin-right: 0.4rem;
}

.d2c_event_calender .list-group .list-group-item:nth-child(2):before {
    background-color: var(--bs-warning);
}
.d2c_event_calender .list-group .list-group-item:nth-child(2){
    color: var(--bs-warning);
}

.d2c_event_calender .list-group .list-group-item:nth-child(3):before {
    background-color: var(--bs-danger);
}
.d2c_event_calender .list-group .list-group-item:nth-child(3){
    color: var(--bs-danger);
}

.d2c_event_calender .list-group .list-group-item:nth-child(4):before {
    background-color: var(--primary_color);
}
.d2c_event_calender .list-group .list-group-item:nth-child(4){
    color: var(--primary_color);
}

.d2c_event_calender a {
    text-decoration: none;
}
.fc a[data-navlink]{
    color: rgba(35, 35, 35, 0.7);
}
.d2c_event_calender .fc-col-header-cell-cushion a {
    color: rgba(35, 35, 35, 0.7);
    font-weight: 600;
}
.fc-theme-standard th{
    padding: 0.625rem !important;
}
.d2c_event_calender thead a{
    color: var(--primary_color);
}

.fc .fc-button-primary {
    background-color: rgba(98, 113, 235, 0.1) !important;
    border: none !important;
    color: var(--primary_color) !important;
    text-transform: capitalize !important;
}
.fc .fc-button-primary:focus{
    box-shadow: none !important;
}
.fc .fc-toolbar-title{
    color: var(--primary_color);
    font-weight: 600;
}
.fc .fc-button {
    border-radius: 0.188rem !important;
    -webkit-border-radius: 0.188rem !important;
    -moz-border-radius: 0.188rem !important;
    -ms-border-radius: 0.188rem !important;
    -o-border-radius: 0.188rem !important;
}

.fc-direction-ltr .fc-button-group > .fc-button:not(:last-child) {
    border-bottom-right-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.fc-direction-ltr .fc-button-group > .fc-button:not(:first-child) {
    border-bottom-left-radius: 0 !important;
    border-top-left-radius: 0 !important;
    margin-left: -0.063rem !important;
}
.fc-scrollgrid{
    background: #f2f9fd;
    border-radius: var(--border-radius);
    border: none !important;
}
.fc .fc-scrollgrid-section-header>*,.fc .fc-scrollgrid-section-liquid>td{
    padding: 0rem !important;
}
.fc-scrollgrid-sync-table tbody tr td:last-child{
    border-right: 0rem !important;
}
.fc-h-event .fc-event-title{
    vertical-align: middle !important;
    padding: 0rem 0.625rem !important;
    font-size: 0.75rem !important;
    display: flex !important;
    justify-content: center !important;
    
}
.fc-day{
    padding: 0.625rem 0.625rem 0rem 0rem !important;
}

/* favorite ,history and dashboard page table dropdown */
table .d2c_dropdown_icon i{
    cursor: pointer;
}

/*---------------------------------------------------
    card page
-----------------------------------------------------*/
.d2c_basic_card .card-img-top{
    height: 18.75rem;
    object-fit: cover;
}
.d2c_overlay_card .card-img{
    height: 25rem;
    object-fit: cover;
}
.card-img-overlay {
    background: linear-gradient(0deg, rgb(34 92 104), rgb(34 92 104 / 40%));
}
.d2c_btn.rounded-pill::after{
    border-radius: 50rem;
}

/* ---------------------------------------------------
    error page
----------------------------------------------------- */

.d2c_error {
    background-image: url(../images/hero_bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 100vh;
}
.d2c_error_content h1 {
    font-size: 9.375rem;
}
.d2c_error_content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: red;
}
.d2c_error_content p {
    font-size: 1.125rem;
}
/* lock screen page */
.d2c_lockscreen {
    height: 100vh;
}
.d2c_lockscreen .d2c_user_avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0rem auto 1.25rem auto;
}
.d2c_lockscreen_content .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 0.0625rem solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(0.1563rem);
    color: var(--bs-white);
}
.d2c_lockscreen_content .btn {
    border-radius: var(--border-radius);
    padding: 0.625rem 0.625rem 0.5625rem 0.625rem;
}
.d2c_lockscreen_content .form-control::placeholder {
    color: #00000038;
}

/* sweet-alert page */
.swal2-container h2{
    background: inherit !important;
    -webkit-text-fill-color: inherit;
}


/* favorites and history page */
.d2c_favorite_table td i,.d2c_history_table td i{
    margin-right: 0.375rem;
}

/* calender page */
.fc-day {
    padding: 0.5rem !important;
}

/* Template Name: {{WordArtAI - AI Writing SaaS Dashboard Template}}
Template URL: {{https://www.designtocodes.com/product/wordartai-ai-writing-saas-dashboard-template}}
Description: {{WordArtAI is a SaaS dashboard template that comes with lots of awesome features. This customizable dashboard template is best for content marketers, bloggers, social media managers, businesses, and analytics.}}
Author: DesignToCodes
Author URL: https://www.designtocodes.com
Text Domain: {{ WordArtAI }}  */