/* AE Grid System */

/* Box sizing reset */
.ae-design *,
.ae-design *::before,
.ae-design *::after {
    box-sizing: border-box;
}

.ae-h1,
.ae-h2,
.ae-h3,
.ae-h4,
.ae-h5,
.ae-h6 {
    text-transform: unset;
}

/* Container */
.ae-container {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Container breakpoints */

@media (min-width: 576px) {
    .ae-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .ae-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .ae-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .ae-container {
        max-width: 1140px;
    }
}

/* Container fluid */
.ae-container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

/* Row */
.ae-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

/* No gutters option */
.ae-row-no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.ae-row-no-gutters>.ae-col,
.ae-row-no-gutters>[class*="ae-col-"] {
    padding-right: 0;
    padding-left: 0;
}

/* Base column */
.ae-col {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Columns with specific widths */
.ae-col-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.ae-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* Auto column */
.ae-col-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
}

/* Responsive columns for small devices (≥576px) */
@media (min-width: 576px) {
    .ae-col-sm {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .ae-col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .ae-col-sm-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ae-col-sm-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ae-col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ae-col-sm-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ae-col-sm-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ae-col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ae-col-sm-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ae-col-sm-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ae-col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ae-col-sm-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ae-col-sm-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ae-col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive columns for medium devices (<=768px) */
@media (max-width: 768px) {

    /* .ae-row{flex-wrap: wrap; width: 100%; margin: 0;} */

    .ae-col-md {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .ae-col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .ae-col-md-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ae-col-md-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ae-col-md-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ae-col-md-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ae-col-md-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ae-col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ae-col-md-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ae-col-md-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ae-col-md-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ae-col-md-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ae-col-md-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ae-col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hidden-desktop {
        display: none;
    }

}

/* Medium tablets  - 768px to 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Your medium tablet styles here */

    .ae-col-lg {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .ae-col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .ae-col-lg-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ae-col-lg-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ae-col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ae-col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ae-col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ae-col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ae-col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ae-col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ae-col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ae-col-lg-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ae-col-lg-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ae-col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive columns for extra large devices (≥1200px) */
@media (min-width: 1200px) {
    .ae-col-xl {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
    }

    .ae-col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
    }

    .ae-col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .ae-col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .ae-col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .ae-col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .ae-col-xl-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .ae-col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .ae-col-xl-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .ae-col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .ae-col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .ae-col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .ae-col-xl-11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .ae-col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Column ordering */
.ae-order-first {
    order: -1;
}

.ae-order-last {
    order: 13;
}

.ae-order-0 {
    order: 0;
}

.ae-order-1 {
    order: 1;
}

.ae-order-2 {
    order: 2;
}

.ae-order-3 {
    order: 3;
}

.ae-order-4 {
    order: 4;
}

.ae-order-5 {
    order: 5;
}

.ae-order-6 {
    order: 6;
}

.ae-order-7 {
    order: 7;
}

.ae-order-8 {
    order: 8;
}

.ae-order-9 {
    order: 9;
}

.ae-order-10 {
    order: 10;
}

.ae-order-11 {
    order: 11;
}

.ae-order-12 {
    order: 12;
}

/* Column offset */
.ae-offset-1 {
    margin-left: 8.333333%;
}

.ae-offset-2 {
    margin-left: 16.666667%;
}

.ae-offset-3 {
    margin-left: 25%;
}

.ae-offset-4 {
    margin-left: 33.333333%;
}

.ae-offset-5 {
    margin-left: 41.666667%;
}

.ae-offset-6 {
    margin-left: 50%;
}

.ae-offset-7 {
    margin-left: 58.333333%;
}

.ae-offset-8 {
    margin-left: 66.666667%;
}

.ae-offset-9 {
    margin-left: 75%;
}

.ae-offset-10 {
    margin-left: 83.333333%;
}

.ae-offset-11 {
    margin-left: 91.666667%;
}

/* Responsive offsets */
@media (min-width: 576px) {
    .ae-offset-sm-0 {
        margin-left: 0;
    }

    .ae-offset-sm-1 {
        margin-left: 8.333333%;
    }

    .ae-offset-sm-2 {
        margin-left: 16.666667%;
    }

    .ae-offset-sm-3 {
        margin-left: 25%;
    }

    .ae-offset-sm-4 {
        margin-left: 33.333333%;
    }

    .ae-offset-sm-5 {
        margin-left: 41.666667%;
    }

    .ae-offset-sm-6 {
        margin-left: 50%;
    }

    .ae-offset-sm-7 {
        margin-left: 58.333333%;
    }

    .ae-offset-sm-8 {
        margin-left: 66.666667%;
    }

    .ae-offset-sm-9 {
        margin-left: 75%;
    }

    .ae-offset-sm-10 {
        margin-left: 83.333333%;
    }

    .ae-offset-sm-11 {
        margin-left: 91.666667%;
    }
}

@media (min-width: 768px) {
    .ae-offset-md-0 {
        margin-left: 0;
    }

    .ae-offset-md-1 {
        margin-left: 8.333333%;
    }

    .ae-offset-md-2 {
        margin-left: 16.666667%;
    }

    .ae-offset-md-3 {
        margin-left: 25%;
    }

    .ae-offset-md-4 {
        margin-left: 33.333333%;
    }

    .ae-offset-md-5 {
        margin-left: 41.666667%;
    }

    .ae-offset-md-6 {
        margin-left: 50%;
    }

    .ae-offset-md-7 {
        margin-left: 58.333333%;
    }

    .ae-offset-md-8 {
        margin-left: 66.666667%;
    }

    .ae-offset-md-9 {
        margin-left: 75%;
    }

    .ae-offset-md-10 {
        margin-left: 83.333333%;
    }

    .ae-offset-md-11 {
        margin-left: 91.666667%;
    }
}

/* Alignment */
.ae-align-items-start {
    align-items: flex-start;
}

.ae-align-items-end {
    align-items: flex-end;
}

.ae-align-items-center {
    align-items: center;
}

.ae-align-items-baseline {
    align-items: baseline;
}

.ae-align-items-stretch {
    align-items: stretch;
}

.ae-align-content-start {
    align-content: flex-start;
}

.ae-align-content-end {
    align-content: flex-end;
}

.ae-align-content-center {
    align-content: center;
}

.ae-align-content-between {
    align-content: space-between;
}

.ae-align-content-around {
    align-content: space-around;
}

.ae-align-content-stretch {
    align-content: stretch;
}

.ae-align-self-auto {
    align-self: auto;
}

.ae-align-self-start {
    align-self: flex-start;
}

.ae-align-self-end {
    align-self: flex-end;
}

.ae-align-self-center {
    align-self: center;
}

.ae-align-self-baseline {
    align-self: baseline;
}

.ae-align-self-stretch {
    align-self: stretch;
}

/* Justify content */
.ae-justify-content-start {
    justify-content: flex-start;
}

.ae-justify-content-end {
    justify-content: flex-end;
}

.ae-justify-content-center {
    justify-content: center;
}

.ae-justify-content-between {
    justify-content: space-between;
}

.ae-justify-content-around {
    justify-content: space-around;
}



/* Control group - container for label and controls */
.ae-control-group {
    margin-bottom: 20px;
    position: relative;
}

/* Control label styling */
.ae-control-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.ae-control-label:hover {
    cursor: default;
}

/* Controls container */
.ae-controls {
    position: relative;
    width: 100%;
}

.ae-controls label.error {
    color: #D92D20;
    padding: 5px 0px;
    font-weight: 400;
    font-size: 14px;
    cursor: default;
}

/* Base input styling */
input[type="text"].ae-input,
input[type="number"].ae-input,
input[type="email"].ae-input,
input[type="tel"].ae-input,
input[type="datetime-local"].ae-input,
textarea.ae-input {
    display: block;
    width: 100%;
    height: 48px;
    box-sizing: border-box;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    box-shadow: none;
    margin: 0;
}

input[type="text"].ae-input:focus,
input[type="number"].ae-input:focus,
input[type="email"].ae-input:focus,
input[type="tel"].ae-input:focus,
input[type="datetime-local"].ae-input:focus,
textarea.ae-input:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.error input[type="text"].ae-input:focus,
.error input[type="number"].ae-input:focus,
.error input[type="email"].ae-input:focus,
.error input[type="tel"].ae-input:focus,
.error input[type="datetime-local"].ae-input,
.error textarea.ae-input:focus {
    box-shadow: none;
    border-color: none;
}

input[type="text"].ae-input:disabled,
input[type="text"].ae-input[readonly],
input[type="number"].ae-input:disabled,
input[type="email"].ae-input:disabled,
input[type="tel"].ae-input:disabled,
input[type="datetime-local"].ae-input:disabled,
input[type="number"].ae-input[readonly] textarea.ae-input:disabled,
textarea.ae-input[readonly] {
    background-color: #e9ecef;
    opacity: 1;
}

input[type="text"].ae-input::placeholder,
input[type="number"].ae-input::placeholder,
input[type="email"].ae-input::placeholder,
textarea.ae-input::placeholder {
    color: #6c757d;
    opacity: 0.6;
}

/* overridden css */
textarea.ae-input {
    height: auto;
}


/* Input sizes */
/* input[type="text"].ae-input-sm { height: calc(1.5em + 0.5rem + 2px); padding: 0.25rem 0.5rem; font-size: 0.875rem; line-height: 1.5; border-radius: 0.2rem; } */
/* input[type="text"].ae-input-lg { height: calc(1.5em + 1rem + 2px); padding: 0.5rem 1rem; font-size: 1.25rem; line-height: 1.5; border-radius: 0.3rem; } */
/* Required indicator */
/* .ae-required, .ae-control-label .required, .ae-control-label:after { color: #dc3545; content: " *"; display: inline; } */



.ae-mt-0 {
    margin-top: 0px;
}

.ae-mt-1 {
    margin-top: 10px;
}

.ae-mt-2 {
    margin-top: 20px;
}

.ae-mt-3 {
    margin-top: 30px;
}

.ae-mt-4 {
    margin-top: 40px;
}

.ae-mt-5 {
    margin-top: 50px;
}

.ae-mt-6 {
    margin-top: 60px;
}

.ae-mt-7 {
    margin-top: 70px;
}

.ae-mt-8 {
    margin-top: 80px;
}

.ae-mr-0 {
    margin-right: 0px;
}

.ae-mr-1 {
    margin-right: 10px;
}

.ae-mr-2 {
    margin-right: 20px;
}

.ae-mr-3 {
    margin-right: 30px;
}

.ae-mr-4 {
    margin-right: 40px;
}

.ae-mr-5 {
    margin-right: 50px;
}

.ae-mr-6 {
    margin-right: 60px;
}

.ae-mr-7 {
    margin-right: 70px;
}

.ae-mr-8 {
    margin-right: 80px;
}

.ae-mb-0 {
    margin-bottom: 0px;
}

.ae-mb-1 {
    margin-bottom: 10px;
}

.ae-mb-2 {
    margin-bottom: 20px;
}

.ae-mb-3 {
    margin-bottom: 30px;
}

.ae-mb-4 {
    margin-bottom: 40px;
}


.ae-p-0 {
    padding: 0;
}

.ae-pt-0 {
    padding-top: 0px;
}

.ae-pb-0 {
    padding-bottom: 0px;
}

.ae-pl-0 {
    padding-left: 0px;
}

.ae-pr-0 {
    padding-right: 0px;
}

.ae-pt-0 {
    padding-top: 0px;
}

.ae-pt-1 {
    padding-top: 10px;
}

.ae-pt-2 {
    padding-top: 20px;
}

.ae-pt-3 {
    padding-top: 30px;
}

.ae-pt-4 {
    padding-top: 40px;
}

.ae-pt-5 {
    padding-top: 50px;
}

.ae-pt-6 {
    padding-top: 60px;
}

.ae-pt-7 {
    padding-top: 70px;
}

.ae-pt-8 {
    padding-top: 80px;
}

.ae-pb-0 {
    padding-bottom: 0px;
}

.ae-pb-1 {
    padding-bottom: 10px;
}

.ae-pb-2 {
    padding-bottom: 20px;
}

.ae-pb-3 {
    padding-bottom: 30px;
}

.ae-pb-4 {
    padding-bottom: 40px;
}

.ae-pb-5 {
    padding-bottom: 50px;
}

.ae-pb-6 {
    padding-bottom: 60px;
}

.ae-pb-7 {
    padding-bottom: 70px;
}

.ae-pb-8 {
    padding-bottom: 80px;
}

@media (max-width: 767px) {

    .ae-p-m-0 {
        padding: 0;
    }

    .ae-p-m-15 {
        padding: 15px;
    }

    .ae-p-m-30 {
        padding: 30px;
    }

    .ae-pl-m-0 {
        padding-left: 0;
    }

    .ae-pr-m-0 {
        padding-right: 0;
    }

    .ae-m-m-0 {
        margin: 0;
    }

    .ae-mt-m-1 {
        margin-top: 10px;
    }

    .ae-mb-m-0 {
        margin-bottom: 0px;
    }

    .ae-mb-m-1 {
        margin-bottom: 10px;
    }

    .ae-mb-m-2 {
        margin-bottom: 20px;
    }

    .ae-mb-m-3 {
        margin-bottom: 30px;
    }

    .ae-mb-m-4 {
        margin-bottom: 40px;
    }



    .ae-mt-m-0 {
        margin-top: 0px;
    }

    .ae-mt-m-1 {
        margin-top: 10px;
    }

    .ae-mt-m-2 {
        margin-top: 20px;
    }

    .ae-mt-m-3 {
        margin-top: 30px;
    }

    .ae-mt-m-4 {
        margin-top: 40px;
    }

    .ae-mt-m-5 {
        margin-top: 50px;
    }

    .ae-mt-m-6 {
        margin-top: 60px;
    }

    .ae-mt-m-7 {
        margin-top: 70px;
    }

    .ae-mt-m-8 {
        margin-top: 80px;
    }

}

/* tooltip customized start */
.tooltip .tooltip-inner {
    padding: 6px 10px;
    max-width: 230px !important;
    text-align: left !important;
    border-radius: 5px;
    font-size: 12px;
}

.tooltip {
    border: 0;
}

/* tooltip customized end */





/* btns */

.ae-btn {
    font-size: 14px;
    height: 40px;
    min-width: 158px;
    max-width: 190px;
    box-sizing: border-box;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 600;
    align-content: center;
    text-align: center;
    line-height: normal;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.ae-btn-block {
    width: 100%;
    max-width: 100%;
}

.ae-btn-small {
    display: inline-block;
    font-size: 14px;
    height: 34px;
    min-width: 130px;
    max-width: 190px;
    box-sizing: border-box;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 600;
    align-content: center;
    text-align: center;
    line-height: normal;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.ae-btn-flat {
    color: #475467;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: none;
}

.ae-btn-dark {
    background: #111;
    color: #fff;
}

.ae-btn-blue {
    background: #2D9CDB;
    color: #fff;
}

.ae-btn-blue:hover {
    background: #0688D2;
    color: #fff;
}

.ae-btn-link {
    color: #2D9CDB;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    background: transparent;
    border: none;
}

.ae-btn-outline-dark {
    border: 1px solid #D0D5DD;
    color: #344054;
    background: #fff;
}

.ae-btn-outline-blue {
    border: 1px solid #2D9CDB;
    color: #2D9CDB;
    background: #fff;
}

.ae-btn-outline-warning:hover .new-svg-icon {
    filter: brightness(1)
}

.ae-btn-blue:hover .new-svg-icon {
    filter: brightness(1) !important;
}

.ae-btn-outline-darker {
    border: 1px solid #111;
    background: #fff;
    color: #111;
}

.ae-btn-outline-warning {
    color: #DC6803;
    background: #fff;
    border: 1px solid #DC6803;
}

.ae-btn-disabled {
    background-color: #EAECF0;
    color: #98A2B3 !important;
    border: 1px solid #EAECF0;
    cursor: not-allowed;
    box-shadow: 0px 1px 2px 0px #1018280D;
    pointer-events: none;
}

.ae-btn-disabled:hover {
    background-color: #EAECF0;
    color: #98A2B3;
}


.ae-btn-small:hover,
.ae-btn-flat:hover {
    text-decoration: none;
    color: unset;
}

.ae-btn-small.ae-btn-blue:hover {
    color: #fff;
}

.ae-btn-flat:hover .ae-btn-text,
.ae-btn-outline-dark:hover .ae-btn-text {
    color: #182230;
    text-decoration: none;
}

.ae-btn-link:hover {
    color: #2D9CDB;
    text-decoration: none;
}

/* .ae-btn-flat:hover .new-svg-icon{filter: brightness(0.1);text-shadow:none;} */
.ae-btn-link:focus,
.ae-btn:focus,
.ae-btn-small:focus,
.ae-btn-flat:focus {
    text-decoration: unset;
    color: unset;
    outline: unset;
}

.ae-btn-link:focus {
    color: #2D9CDB
}

.ae-btn-blue:focus {
    color: #fff;
}

.ae-btn-disabled:hover .ae-btn-text {
    color: #98A2B3;
}

/* btns end */


/* AE Select Input Styling */

/* Base select styles that build on the general ae-input style */
.ae-select-input {
    display: block;
    width: 100%;
    height: 48px;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Custom dropdown arrow */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
    margin: 0;
}

/* Removed border from category field input as there were overlapping double borders */
#s2id_event_category.ae-select-input {
    border: none !important;
    background: none !important;
}

select.ae-select-input:focus {
    outline: none;
    outline: none;
    outline-offset: unset;
}

/*select event type*/
.select2-container.ae-select-input {
    padding: 0 !important;
}

.select2-container.ae-select-input>a {
    padding: 10px 15px !important;
    background-color: transparent !important;
    height: unset !important;
}

/* end select event type*/

/* Flex Justify Content Classes */
.ae-justify-start {
    justify-content: flex-start;
}

.ae-justify-end {
    justify-content: flex-end;
}

.ae-justify-center {
    justify-content: center;
    z-index: 6;
}

.ae-justify-between {
    justify-content: space-between;
}

.ae-justify-around {
    justify-content: space-around;
}

.ae-justify-evenly {
    justify-content: space-evenly;
}

/* Align Self Classes */
.ae-align-self-auto {
    align-self: auto;
}

.ae-align-self-start {
    align-self: flex-start;
}

.ae-align-self-end {
    align-self: flex-end;
}

.ae-align-self-center {
    align-self: center;
}

.ae-align-self-baseline {
    align-self: baseline;
}

.ae-align-self-stretch {
    align-self: stretch;
}


.ae-badge {
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    height: 28px;
    max-width: 150px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.ae-badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.ae-badge-green {
    border: 1px solid #ABEFC6;
    background: #ECFDF3;
    color: #067647;
}

.ae-badge-green .ae-badge-dot {
    background: #17B26A;
}

.ae-badge-red {
    border: 1px solid #FECDCA;
    background: #FEF3F2;
    color: #D92D20;
}

.ae-badge-red .ae-badge-dot {
    background: #D92D20;
}

.ae-badge-warning {
    border: 1px solid #FEDF89;
    background: #FFFAEB;
    color: #B54708;
}

.ae-badge-warning .ae-badge-dot {
    background: #B54708;
}

.ae-badge-dark-blue {
    border: 1px solid #B9E6FE;
    background: #EFF8FF;
    color: #026AA2;
}

.ae-badge-dark-blue .ae-badge-dot {
    background: #026AA2;
}

.ae-badge-orange {
    border: 1px solid #F9DBAF;
    background: #FEFBE8;
    color: #F79009;
}

.ae-badge-orange .ae-badge-dot {
    background: #F79009;
}

.ae-badge-gray {
    border: 1px solid #E4E7EC;
    background: #F9FAFB;
    color: #667085;
}

.ae-badge-gray .ae-badge-dot {
    background: #667085;
}

.ae-badge-purple {
    border: 1px solid #C7D7FE;
    background: #EEF4FF;
    color: #3538CD;
}

.ae-badge-light-blue {
    border: 1px solid #B9E6FE;
    background: #F0F9FF;
    color: #026AA2;
}

.ae-badge-gray-blue {
    color: #363F72;
    border: 1px solid #D5D9EB;
    background: #F8F9FC;
}



.ae-add-on .ae-add-on-icon-container {
    height: 48px;
    position: absolute;
    align-content: center;
    margin-left: 15px;
}

.ae-add-on .ae-add-on-icon-container.add-on-as-text {
    font-size: 16px;
    margin-left: 10px;
    margin-top: 1px;
}

/* .ae-add-on .new-svg-icon{position: absolute; align-self: anchor-center; margin-left: 15px;} */
.ae-add-on input[type="text"].ae-input {
    padding: 10px 15px 10px 40px;
}

.ae-add-on input[type="tel"].ae-input {
    padding: 10px 15px 10px 40px;
}

.ae-add-on input[type="datetime-local"].ae-input {
    padding: 10px 15px 10px 40px;
}

.ae-add-on input[type="number"].ae-input.ae-input-min {
    padding: 10px 15px 10px 40px;
    padding-left: 57px;
}

.ae-add-on input[type="number"].ae-input.ae-input-max {
    padding: 10px 15px 10px 40px;
    padding-left: 60px;
}

.datepicker.dropdown-menu {
    border: 1px solid #EAECF0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: none;
    width: 269px;
}

.datepicker.dropdown-menu .next .icon-arrow-right:before {
    content: '\f105';
    font-size: 18px;
}

.datepicker.dropdown-menu .prev .icon-arrow-left:before {
    content: '\f104';
    font-size: 18px;
}

.datepicker.dropdown-menu th.switch {
    font-size: 14px;
    font-weight: 600;
    color: #344054;
}

.datepicker.dropdown-menu th {
    font-weight: 500;
    font-size: 12px;
}

.datepicker.dropdown-menu td,
.datepicker.dropdown-menu th {
    width: 24px;
    height: 24px;
    font-weight: 400;
}

.datepicker.dropdown-menu td span.active:active,
.datepicker.dropdown-menu td span.active.active,
.datepicker.dropdown-menu td.active:active,
.datepicker.dropdown-menu td.active:hover:active,
.datepicker.dropdown-menu td.active.active,
.datepicker.dropdown-menu td.active:hover.active {
    background-color: #111;
}

.datepicker.dropdown-menu td .day.active {}

.datepicker.dropdown-menu td .month.active {}

.datepicker td span.year {
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.datepicker td span.month {
    width: 45px;
    height: 45px;
    line-height: 45px;
}

.bootstrap-timepicker .bootstrap-timepicker-widget table td input {
    width: 48px;
    height: 32px;
    font-size: 21px;
    font-weight: 500;
    border: 1px solid #EAECF0;
    border-radius: 6px;
    background-color: #FBFBFB !important;
    box-shadow: none !important;
    color: black !important;
}


.bootstrap-timepicker-widget table td.separator {
    font-size: 24px;
    font-weight: 400;
    color: black !important;
}

.bootstrap-timepicker-widget table td a {
    padding: 0;
    border-color: #fff;
    background-color: #fff;
    font-size: 12px;
}

.bootstrap-timepicker-widget table td a:hover {
    background-color: #eeeeee;
    border-radius: 4px;
}


.error input[type="text"].ae-input,
.error textarea.ae-input {
    border-color: #FDA29B;
}





/* customized alertify css start */

.alertify.customized_alertify .ajs-header {
    text-align: center;
    border-bottom: none;
    font-size: 24px;
    padding: 0px;
    margin: 0px;
    line-height: 1.58;
}

.alertify.customized_alertify .ajs-footer {
    border-top: none;
    padding: 0;
    margin: 0;
    min-height: 0;
}

.alertify.customized_alertify .ajs-dialog {
    max-width: 600px;
    box-sizing: border-box;
    padding: 25px 30px;
    border-radius: 20px;
    margin-top: 12%;
}

.alertify.customized_alertify .ajs-body .ajs-content {
    padding: 20px 0px 20px 0px;
    font-size: 16px;
    line-height: 24px;
    text-align: center
}

.alertify.customized_alertify .ajs-footer .ajs-buttons.ajs-primary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.alertify.customized_alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
    font-size: 14px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 1px solid #D0D5DD;
    color: #344054;
    text-shadow: none;
    box-shadow: unset;
    width: 252px;
    background: #fff;
    margin: 0;
    padding: 0;
    font-size: 14px;
    height: 40px;
    min-width: 158px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
    padding: 0;
    font-weight: 600;
}

.alertify.customized_alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    background: #2D9CDB;
    color: #fff;
    border: none;
}

.alertify.customized_alertify.delete .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
    background: #DC6803;
    color: #fff;
    border: none;
}

.ae-alert-info {
    border: 1px solid #AAF0C4;
    border-radius: 12px;
    color: #16B364;
    background: #ECFDF3;
    padding: 10px 15px;
}

.ae-alert-warning {
    border: 1px solid #FEDF89;
    border-radius: 12px;
    color: #a57422;
    background: #FEFBE8;
    padding: 10px 15px;
}

@media (max-width: 767px) {
    .alertify.customized_alertify .ajs-header {
        font-size: 24px;
        line-height: 30px
    }

    .alertify.customized_alertify .ajs-footer .ajs-buttons.ajs-primary {
        gap: 20px;
    }

    .alertify.customized_alertify .ajs-dialog {
        padding: 20px 20px;
        margin-top: 30%
    }

    .alertify.customized_alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
        min-width: 135px;
    }
}

/* customized alertify css end */



.ae-tag {
    border: 1px solid #999999;
    padding: 1px 7px;
    line-height: initial;
    border-radius: 10px;
    font-size: 10px;
    display: inline-block;
    box-sizing: border-box;
    font-weight: 600;
    text-transform: uppercase;
}

.ae-tag-success {
    color: #468847;
    border-color: #468847;
}

.ae-tag-warning {
    color: #ff8401;
    border-color: #ff8401;
}

.ae-w100 {
    width: 100%
}

.ae-max-w100 {
    max-width: 100%
}

.ae-display-inline-flex {
    display: inline-flex;
}


/* drawer css start */

.drawer-right .drawer-content {
    right: 0;
    transform: translateX(100%);
}

.drawer-open.drawer-right .drawer-content {
    transform: translateX(0);
    visibility: visible;
}

.ae-drawer-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.ae-drawer-container.drawer-open {
    visibility: visible;
    opacity: 1;
}

.ae-drawer-container.drawer-open .drawer-content {
    transform: translateX(0) !important;
    visibility: visible !important;
    overflow: visible !important;
    z-index: 9999;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ae-drawer-container.drawer-open .drawer-overlay {
    opacity: 1;
}

.ae-drawer-container .drawer-content {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 496px;
    background: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, visibility 0.3s ease, width 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    visibility: hidden;
    overflow: visible !important;
}

.ae-drawer-container .drawer-title-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.ae-drawer-container .drawer-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 2;
    flex-shrink: 0;
}

.ae-drawer-container .drawer-header-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    color: #101828;
    text-transform: none;
}

.ae-drawer-container .drawer-header-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #475467;
    margin: 0;
}

.ae-drawer-container .drawer-title {
    font-size: 21px;
    font-weight: 600;
    color: #101828;
    margin: 0;
    text-transform: none;
}

.ae-drawer-container .drawer-title-description {
    font-size: 16px;
    font-weight: 400;
    color: #475467;
    margin: 0;
}

.ae-drawer-container .drawer-close {
    padding: 8px;
    cursor: pointer;
    color: #667085;
    display: flex;
    opacity: 2;
}

.ae-drawer-container .drawer-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    min-height: 0;
    height: calc(100vh - 230px);
    /* Account for header and footer */
}

.ae-drawer-container .drawer-footer {
    padding: 16px;
    border-top: 1px solid #EAECF0;
    display: flex;
    gap: 12px;
    background: #FFFFFF;
    position: sticky;
    bottom: 0;
    z-index: 2;
    flex-shrink: 0;
}

.ae-drawer-container .drawer-footer button {
    flex: 1;
    max-width: unset;
}

.ae-drawer-container .drawer-body::-webkit-scrollbar {
    width: 6px;
}

.ae-drawer-container .drawer-body::-webkit-scrollbar-track {
    background: #F9FAFB;
}

.ae-drawer-container .drawer-body::-webkit-scrollbar-thumb {
    background: #D0D5DD;
    border-radius: 3px;
}

.ae-drawer-container .drawer-body::-webkit-scrollbar-thumb:hover {
    background: #98A2B3;
}

.ae-drawer-container select {
    appearance: none;
}

@media (max-width: 576px) {
    .ae-drawer-container .drawer-content {
        width: 100%;
    }
    .ae-btn-mobile-full{ min-width: 100%; }
}

/* Fix the percentage input with add-on */
.ae-drawer-container .input-append {
    display: flex;
    align-items: center;
}

/* drawer css end */


.__toggle_container {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
    margin: 0px;
}

.__toggle_container .__toggle_input {
    opacity: 0;
    width: 0;
    height: 0;
}

.__toggle_slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 22px;
    transition: 0.3s ease-in-out;
}

.__toggle_slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.__toggle_input:checked+.__toggle_slider {
    background-color: #2D9CDB;
}

.__toggle_input:focus+.__toggle_slider {
    box-shadow: 0 0 2px #2D9CDB;
}

.__toggle_input:checked+.__toggle_slider:before {
    transform: translateX(18px);
}


.pitch_section_blue {
    background: #F5FBFF;
    border: 1px solid #B9E6FE;
    padding: 10px;
}

.pitch_section_inner_text {
    color: #0BA5EC;
    font-size: 14px;
    flex: 1;
}