/* ==================== Table Of Contents  ==================== */
/* ==================== Table Of Contents  ==================== */
/*	                                                            */
/*	- Mixins & Variables                                        */
/*	- Typography Styles                                         */
/*	- Component Styles                                          */
/*	  - Background Color Styles                                 */
/*	  - Bin Card Styles                                         */
/*	  - Box Shadow Styles                                       */
/*	  - Breadcrumb Styles                                       */
/*	  - Button Styles                                           */
/*	  - FAQ Styles                                              */
/*	  - Footer Styles                                           */
/*	  - Icon Box Styles                                         */
/*	  - Marquee Message Styles                                  */
/*	  - Main Menu Styles                                        */
/*	  - Mobile Menu Styles                                      */
/*	  - Notification Styles                                     */
/*	  - Page Header Details Styles                              */
/*	  - Pricing Card Styles                                     */
/*	  - Ratings Styles                                          */
/*	  - Search Card Styles                                      */
/*	  - Testimonial Styles                                      */
/*	- Content Rendering Sections                                */
/*	  - Sample                                                  */
/*	- Heros                                                     */
/*	  - HomePageHero                                            */
/*	- Layouts                                                   */
/*	  - ImagePageLayout                                         */
/*	- Sections                                                  */
/*	  - PageNotFound Styles                                     */
/*	- Console classes                                           */
/*	- Essential utility classes                                 */
/*	- Fonts Size, Font Weights, Display & Position              */
/*	- Form Styles                                               */
/*	- Custom Project Specific Styles                            */
/*	                                                            */
/* ============================================================ */





/***************************************************************************/
/*	Mixins & Variables                                                     */
/***************************************************************************/
:root {
    --bs-link-color: #262b32;
    --bs-link-hover-color: #101115;

    --background-color: white;

    --body-font-family: "DM Sans", sans-serif;
    --body-font-color: #6b7177;
    --body-font-size: 16px;
    --headings-font-family: "DM Sans", sans-serif;
    --headings-font-color: #222222;

    --breadcrumb-font-family: "DM Sans", sans-serif;
    --breadcrumb-font-color: #6b7177;
    --breadcrumb-font-size: 15px;

    --icon-font-family: "Font Awesome 6 Pro";
    --console-grid-filter-height: 60px;
    --container-width: 1460px;

    --strip-color: #262b32;

    --primary-color: #fab758;
    --primary-focus-color: #262b32;

    --secondary-color: #aab0bc;
    --secondary-focus-color: #0d510f;

    --soft-primary-background: #fef3e4;
    --soft-secondary-background: #f0f0f0;
    --soft-grey-background: #f0f0f0;

    --danger-color: #c8312b;
    --danger-focus-color: #6e0f0f;

    --success-highlight-color: #45c4a0;
    --success-focus-color: #0d510f;
}




/***************************************************************************/
/*	Typography Styles                                                      */
/***************************************************************************/
html,
body {
    scroll-behavior: auto !important;
}

body {
    background-color: var(--background-color);
    color: var(--body-font-color);
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    font-weight: 400;
    line-height: 28px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a {
    color: var(--bs-link-color);
    font-weight: 500;
    text-decoration: none;
    outline: none;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

a:hover {
    color: var(--bs-link-hover-color);
    text-decoration: underline;
}

.btn {
    color: var(--bs-link-color);
    font-weight: 500;
    text-decoration: none;
    outline: none;
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

.btn:hover {
    color: var(--primary-color);
}

.btn:active, .btn:focus, .btn:hover, .btn:visited {
    text-decoration: none;
    outline: none;
}

button, .btn {
    -webkit-transition: all ease 0.4s;
    -moz-transition: all ease 0.4s;
    -o-transition: all ease 0.4s;
    transition: all ease 0.4s;
}

iframe {
    border: none;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--headings-font-family);
    color: var(--headings-font-color);
    line-height: 2em;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.5em;
}

h4, h5, h6 {
    font-weight: 500;
}

p {
    margin: 0 0 15px 0;
    color: var(--body-font-color);
    line-height: 2em;
    font-weight: 400;
}

.text-danger p {
    color: rgba(var(--bs-danger-rgb),var(--bs-text-opacity)) !important;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, p a, span a {
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    line-height: inherit;
}

h1 {
    font-size: 45px;
}

@media (max-width: 599.98px) {
    h1 {
        font-size: 32px;
    }
}

h2 {
    font-size: 32px;
}

@media (max-width: 599.98px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
}

@media (max-width: 599.98px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 22px;
}

@media (max-width: 599.98px) {
    h4 {
        font-size: 18px;
    }
}

h5 {
    font-size: 19px;
}

@media (max-width: 599.98px) {
    h5 {
        font-size: 16px;
    }
}

h6 {
    font-size: 16px;
}

@media (max-width: 599.98px) {
    h6 {
        font-size: 14px;
    }
}

li {
    list-style-type: none;
}


/***************************************************************************/
/*	Component Styles                                                       */
/***************************************************************************/

/*	Background Color Styles  */
.bg-primary {
    background-color: var(--primary-color) !important;
}
.bg-strip {
    background-color: var(--strip-color) !important;
}
.bg-soft-primary {
    background-color: var(--soft-primary-background) !important;
}
.bg-soft-secondary {
    background-color: var(--soft-secondary-background) !important;
}
.bg-soft-grey {
    background-color: var(--soft-grey-background) !important;
}


/*	Bin Card Styles  */
.bin-card {
    background-color: var(--soft-grey-background) !important;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: .5s;
}
.bin-card:hover {
    transform: scale(1.2);
    border-radius: 12px;
    background-color: var(--soft-primary-background) !important;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    -o-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    z-index: 999;
}

.bin-card:hover  a {
    text-decoration: none;
}
.bin-card:hover a:hover {
    text-decoration: none;
}

.bin-card .bin-card-image {
    overflow: hidden;
}

.bin-card .bin-card-body {
    padding-top: 15px;
}
.bin-card .bin-card-body p {
    margin-bottom: unset;
}
.bin-card .bin-card-body h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.bin-card .bin-card-body h3 a {
    color: var(--headings-font-color);
}
.bin-card .bin-card-body h3 a:hover {
    color: var(--primary-focus-color);
}
.bin-card .bin-card-body .bin-weight-limit {
}
.bin-card .bin-card-body .bin-price {
    font-weight: 600;
}
.bin-card .bin-card-body .bin-restrictions {
    color: var(--bs-gray);
    font-size: 13px;
}



/*	Breadcrumb Styles  */
.breadcrumb-section {
    color: var(--breadcrumb-font-color);
    font-family: var(--breadcrumb-font-family);
    font-size: var(--breadcrumb-font-size);
    font-weight: 400;
    line-height: 28px;
    padding: 10px 0;
}

.breadcrumb-section {
    position: relative;
}

.breadcrumb-section .breadcrumb-list {
    position: relative;
}

.breadcrumb-section .breadcrumb-list a {
    display: inline-block;
    position: relative;
    margin-right: 25px;
}

.breadcrumb-section .breadcrumb-list a:after {
    content: "/";
    position: absolute;
    right: -15px;
}



/*	Button Styles  */
.button {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-color);
    --bs-btn-hover-border-color: var(--primary-focus-color);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: white;
    display: inline-block;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0em;
    overflow: hidden;
    padding: 13px 35px;
    position: relative;
    text-align: center;
    z-index: 0;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.button.outlined {
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: var(--primary-focus-color);
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.button.rounded {
    --bs-border-radius: 90px;
}

.button.wide {
    width: 100%;
}

.button:before {
    background-color: var(--primary-color);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -1;
    -webkit-transform: skew(50deg);
    -moz-transform: skew(50deg);
    -o-transform: skew(50deg);
    transform: skew(50deg);
    -webkit-transition: width 0.6s;
    -moz-transition: width 0.6s;
    -o-transition: width 0.6s;
    transition: width 0.6s;
    transform-origin: top left;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

@media (max-width: 339.98px) {
    .button {
        padding: 13px 25px;
    }
}

.button:disabled {
    background-color: gray;
    border: 2px solid gray;
}

.button i {
    margin-left: 10px;
    transform: rotate(-45deg);
}

.button:hover{
    color: white;
}

.button:hover:before {
    height: 100%;
    width: 200%;
}

.button:hover {
    border: 2px solid var(--primary-focus-color);
}
.button:hover:before {
    background-color: var(--primary-focus-color);
}

.button.outlined:hover {
    border: 2px solid var(--background-color);
    color: white;
}


/*	Secondary Button Style  */
.button.secondary {
    --bs-btn-bg: var(--secondary-color);
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: var(--secondary-color);
    --bs-btn-hover-border-color: var(--secondary-focus-color);
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}
.button.secondary:hover {
    border: 2px solid var(--secondary-focus-color);
}
.button.secondary:hover:before {
    background-color: var(--secondary-focus-color);
}
.button.secondary.outlined {
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--secondary-color);
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: var(--secondary-focus-color);
    background-color: white;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}
.button.secondary.outlined:hover {
    border: 2px solid var(--background-color);
    color: white;
}

/*	Danger Button Style  */
.button.danger {
    --bs-btn-bg: var(--danger-color);
    --bs-btn-border-color: var(--danger-color);
    --bs-btn-hover-bg: var(--danger-color);
    --bs-btn-hover-border-color: var(--danger-focus-color);
    background-color: var(--danger-color);
    border-color: var(--danger-color);
    color: white;
}
.button.danger:hover {
    border: 2px solid var(--danger-focus-color);
}
.button.danger:hover:before {
    background-color: var(--danger-focus-color);
}
.button.danger.outlined {
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--danger-color);
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: var(--danger-focus-color);
    background-color: white;
    border: 2px solid var(--danger-color);
    color: var(--danger-color);
}
.button.danger.outlined:hover {
    border: 2px solid var(--background-color);
    color: white;
}

/*	Success Button Style  */
.button.success {
    --bs-btn-bg: var(--success-highlight-color);
    --bs-btn-border-color: var(--success-highlight-color);
    --bs-btn-hover-bg: var(--success-highlight-color);
    --bs-btn-hover-border-color: var(--success-focus-color);
    background-color: var(--success-highlight-color);
    border-color: var(--success-highlight-color);
    color: white;
}
.button.success:hover {
    border: 2px solid var(--success-focus-color);
}
.button.success:hover:before {
    background-color: var(--success-focus-color);
}
.button.success.outlined {
    --bs-btn-bg: white;
    --bs-btn-border-color: var(--success-highlight-color);
    --bs-btn-hover-bg: white;
    --bs-btn-hover-border-color: var(--success-focus-color);
    background-color: white;
    border: 2px solid var(--success-highlight-color);
    color: var(--success-highlight-color);
}
.button.success.outlined:hover {
    border: 2px solid var(--background-color);
    color: white;
}

.call-to-action-button {
    transition: .5s;
}
.call-to-action-button:hover {
     transform: scale(1.2);
     box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
     -webkit-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
     -moz-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
     -o-box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.25);
     z-index: 999;
 }

.search-action-button {
    --bs-bg-opacity: 1;
    background-color: #d60019 !important;
}

.winz-action-button {
    --bs-bg-opacity: 1;
    background-color: #144e87 !important;
}

.phone-action-button {
    --bs-bg-opacity: 1;
    background-color: #008200 !important;
}

.scrollToTop {
    background-color: rgba(192, 192, 192, 0.5);
    border: 2px solid rgba(34, 34, 34, 0.05);
    border-color: var(--background-color);
    border-radius: 50%;
    bottom: -100px;
    color: black;
    display: block;
    height: 50px;
    line-height: 50px;
    opacity: 0;
    position: fixed;
    right: 45px;
    text-align: center;
    text-decoration: none;
    width: 50px;
    z-index: 9;
    -webkit-transform: scale(0.3);
    -moz-transform: scale(0.3);
    -ms-transform: scale(0.3);
    -o-transform: scale(0.3);
    transform: scale(0.3);
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.scrollToTop:hover {
    background-color: var(--primary-focus-color);
    color: white;
}

.scrollToTop.show {
    bottom: 100px;
    right: 45px;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


/*	FAQ Styles  */
.faqs .dx-accordion-item {
    overflow: hidden;
    margin: 4px;
}

.faqs .dx-accordion-item-opened {
    background-color: var(--soft-grey-background);
    border-color: #ddd;
}


.faqs .question {
    font-size: 20px;
}

.faqs .answer {
    font-size: 16px;
}


/*	Footer Styles  */
.footer-style {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--strip-color);
}

.footer-group .footer-group-items {
}

.footer-group .footer-group-items a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

.footer-group .footer-group-items a:hover {
    color: white;
    text-decoration: underline;
}

.social-style i {
    color: white;
    border-radius: 50%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    width: 40px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.social-style i:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: white !important;
    font-size: 13px;
}

.copyright-text a {
    color: white !important;
}

.copyright-text a:hover {
    text-decoration: underline;
}

.platform-status {
    color: white !important;
    font-size: 13px;
}

.platform-status a:hover {
    text-decoration: underline;
}


/*	Notification Styles  */
.notification {
    color: white;
}

.notification .text {
    color: white;
}

.notification .text a {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}
.notification .text a:hover {
    color: white;
    font-weight: 600;
    text-decoration: underline;
}


/* Marquee Message Styles */
@keyframes marquee-animation {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
/* media query to enable animation for only those who want it */
@media (prefers-reduced-motion: no-preference) {
    .marquee-message {
        animation: marquee-animation 20s linear infinite;
    }
}

.marquee-message:hover {
    animation-play-state: paused;
}



/*	Page Header Styles  */
@media(min-width: 1050px) {
    .main-menu {
        display: block;
    }
    .mobile-menu {
        display: none;
    }
    .page-content {}

    .page-content.transparent {
        margin-top: unset !important;
    }
}

@media(max-width: 1049.98px) {
    .main-menu {
        display: none !important;
    }
    .mobile-menu {
        display: block;
    }
    .header, .footer {
        padding: 0 20px !important;
    }
    .page-content {}
}

@media(max-width: 599.98px) {
    .main-menu {
        display: none !important;
    }
    .mobile-menu {
        display: block;
    }
    .header, .footer {
        padding: 0 10px !important;
    }
    .page-content {}
}

.header {
    -moz-box-sizing: border-box;
    background: transparent;
    box-sizing: border-box;
    color: #222222;
    display: block;
    font-size: 15px;
    font-weight: bold;
    height: 80px;
    line-height: 80px;
    padding: 0 50px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.header.fixed {
    position: fixed;
    top: 0;
    left: 0;
}


/*	Main Menu Styles  */
header.default-menu {
    background-color: white;
    width: 100%;
    z-index: 9000;
}
header.default-menu.transparent {
    background-color: transparent;
}
header.default-menu .main-logo.mid-page {
    display: none;
}
header.default-menu.sticky.locked-to-top {
    background-color: white;
    -webkit-box-shadow: 0px 5px 20px rgba(128, 128, 128, 0.15);
    -moz-box-shadow: 0px 5px 20px rgba(128, 128, 128, 0.15);
    -o-box-shadow: 0px 5px 20px rgba(128, 128, 128, 0.15);
    box-shadow: 0px 5px 20px rgba(128, 128, 128, 0.15);
    z-index: 9000;
    position: fixed;
    top: 0;
}
header.default-menu.sticky.locked-to-top .main-logo.top-of-page {
    display: none;
}
header.default-menu.sticky.locked-to-top .main-logo.mid-page {
    display: block;
}

.logged-in-user-picture {
    height: 32px;
    width: 32px;
}
.logged-in-user-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--headings-font-color);
}
.logged-in-user-name.transparent {
    font-size: 16px;
    font-weight: 500;
    color: white;
}
.logged-in-user-name-transparent {
    color: white;
}


/*	Mobile Menu Styles  */
.mobile-menu-close-btn {
    background-color: var(--soft-grey-background);
    border-radius: 8px;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    cursor: pointer;
    color: var(--headings-font-color);
    font-size: 10px;
    height: 40px;
    left: -15px;
    line-height: 40px;
    opacity: 0;
    position: absolute;
    text-align: center;
    top: 15px;
    width: 40px;
    z-index: -1;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/* sidebar navigation */
.offcanvas {
    z-index: 9999;
}

.ui-navigation-sidebar .ps-sidebar-root .ps-sidebar-container {
    background-color: transparent;
}

.ui-navigation-sidebar .ps-sidebar-root {
    width: 100%;
    border-right: none;
}

.ui-mobile-active > .ps-menu-button {
    color: #2353f5 !important;
}




/*	Pricing Card Styles  */
.pricing-packages {
    border: 1px solid transparent;
    margin-bottom: 30px;
    padding: 50px 30px;
    position: relative;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
    .pricing-packages {
        padding: 40px 30px;
    }
}
.pricing-packages.active, .pricing-packages .heading {
    position: relative;
}
.pricing-packages .price {
    color: var(--headings-font-color);
    font-family: var(--headings-font-family);
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 0;
}
.pricing-packages .price small {
    color: var(--body-font-color);
    font-family: var(--headings-font-family);
    font-weight: 400;
    font-style: normal;
    line-height: 28px;
    text-align: center;
}
.pricing-packages .pricing-list li {
    color: var(--headings-font-color);
    font-family: var(--headings-font-family);
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 28px;
}
.pricing-packages.active, .pricing-packages:hover {
    border: 1px solid #E9E9E9;
    -webkit-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -moz-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    -o-box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
    box-shadow: 0px 6px 15px rgba(64, 79, 104, 0.05);
}


/*	Ratings Styles  */
.ratings {
    color: #fcc032;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-style: normal;
    font-weight: normal;
    font-size: 0.9rem;
}
.ratings.one:after {
    content: "★";
}
.ratings.two:after {
    content: "★★";
}
.ratings.three:after {
    content: "★★★";
}
.ratings.four:after {
    content: "★★★★";
}
.ratings.five:after {
    content: "★★★★★";
}



/*	Search Card Styles  */
.search-item-card {
    margin-bottom: 10px;
    transition: .5s;
}
.search-item-card .search-image {
    border-radius: 20px;
    overflow: hidden;
}
.search-item-card .search-image a img {
    border-radius: 15px;
    transition: .5s;
}
.search-item-card .search-content {
    padding-top: 15px;
}
.search-item-card .search-content p {
    margin-bottom: unset;
}
.search-item-card .search-content h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.search-item-card .search-content h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 5px;
}
.search-item-card .search-content .bin-weight-limit {
}
.search-item-card .search-content .bin-price {
    font-weight: 600;
}
.search-item-card .search-content .bin-restrictions {
    color: var(--bs-gray);
    font-size: 13px;
}


.search-item-card .search-content h3 a {
    color: var(--headings-font-color);
}
.search-item-card .search-content h3 a:hover {
    color: var(--primary-focus-color);
}
.search-item-card .search-content h4 a {
    color: var(--headings-font-color);
}
.search-item-card .search-content h4 a:hover {
    color: var(--primary-focus-color);
}
.search-item-card:hover {
    transform: translateY(-5px);
}
.search-item-card:hover .search-image a img {
    transform: scale(1.2);
}


/*	Page Header Details Styles  */
.page-header-details {
    position: relative;
    margin-bottom: 60px;
}
@media (max-width: 991.98px) {
    .page-header-details {
        margin-bottom: 30px;
    }
}
.page-header-details .title {
    font-style: normal;
}




/*	Testimonial Styles  */
.testimonial .quote {
    display: inline-flex;
}
.testimonial .quote:before {
    color: #ccc;
    content: open-quote;
    font-family: "Arial", serif;
    font-size: 8em;
    line-height: 0.1em;
    margin-right: 0.25em;
    margin-top: 0.4em;
    position: relative;
    top: -36px;
}
.testimonial .quote:after {
    color: #ccc;
    content: close-quote;
    font-family: "Arial", serif;
    font-size: 8em;
    line-height: 0.1em;
    margin-right: 0.25em;
    margin-top: 0.4em;
    position: relative;
    top: -36px;
}
@media (max-width: 991.98px) {
    .testimonial .quote:before {
        font-size: 6em;
        top: -20px;
    }
    .testimonial .quote:after {
        font-size: 6em;
        top: -20px;
    }
}

@media (max-width: 599.98px) {
    .testimonial .quote:before {
        font-size: 4em;
        top: -20px;
    }
    .testimonial .quote:after {
        font-size: 4em;
        top: -20px;
    }
}




/***************************************************************************/
/*	Blog Sections                                                          */
/***************************************************************************/
.blog-list-card {
    margin-bottom: 30px;
    transition: .5s;
}
.blog-list-card .blog-image {
    border-radius: 20px;
    overflow: hidden;
}
.blog-list-card .blog-image a img {
    border-radius: 15px;
    transition: .5s;
}
.blog-list-card .blog-content {
    padding-top: 25px;
    padding-left: 15px;
}
.blog-list-card .blog-content .meta {
    padding: 0;
    margin-bottom: 15px;
}
.blog-list-card .blog-content .meta li {
    color: var(--headings-font-color);
    font-weight: 400;
    display: inline-block;
    margin-right: 30px;
    position: relative;
}
.blog-list-card .blog-content .meta li:last-child {
    margin-right: 0;
}
.blog-list-card .blog-content .meta li:last-child::before {
    display: none;
}
.blog-list-card .blog-content .meta li a {
    color: var(--headings-font-color);
}
.blog-list-card .blog-content .meta li a:hover {
    color: var(--primary-focus-color);
}
.blog-list-card .blog-content .meta li::before {
    position: absolute;
    right: -23px;
    top: 1.7px;
    font-family: remixicon;
}
.blog-list-card .blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}
.blog-list-card .blog-content h3 a {
    color: var(--headings-font-color);
    font-weight: 500;
    text-decoration: none;
}
.blog-list-card .blog-content h3 a:hover {
    color: var(--bs-link-hover-color);
}
.blog-list-card:hover {
    transform: translateY(-5px);
}
.blog-list-card:hover .blog-image a img {
    transform: scale(1.2);
}

.blog-hero-content {
    position: relative;

    h1 {
        margin-bottom: 18px;
        font-size: 64px;
        font-weight: bold;
    }

    @media (max-width: 599.98px) {
        .h1,
        h1 {
            font-size: 48px;
        }
    }

    .post-author-meta {
        margin-top: 25px;

        img {
            border-radius: 50%;
            height: 65px;
            width: 65px;
        }
        .title {
            margin-left: 15px;

            .name {
                display: block;
                font-size: 17px;
                margin-bottom: 3px;
                color: var(--headings-font-color);

                a {
                    font-weight: 600;
                }
            }
        }
    }
}



/***************************************************************************/
/*	Content Rendering Sections                                             */
/***************************************************************************/
.content-renderer {

}

.content-renderer h1 {
}

.content-renderer h2 {
}

.content-renderer p {
}

.content-renderer p a {
    color: var(--bs-link-color);
    font-weight: 500;
    text-decoration: none;
}
.content-renderer p a:hover {
    color: var(--bs-link-hover-color);
    text-decoration: underline;
}


.content-renderer .inline-code {
    font-family: "courier", monospace;
    font-style: italic;
    color: black;
}

.content-renderer ul > li {
    line-height: 2;
    list-style: disc;
}

.content-renderer ul > ul > li {
    line-height: 2;
    list-style: circle;
}

.content-renderer ul > ul > ul > li {
    line-height: 2;
    list-style: square;
}

.content-renderer ol > li {
    line-height: 2;
    list-style: decimal;
}

.content-renderer ol > ol > li {
    line-height: 2;
    list-style: lower-alpha;
}

.content-renderer ol > ol > ol > li {
    line-height: 2;
    list-style: none;
}

.content-renderer ol > li.custom-numbering {
    line-height: 2;
}

.content-renderer ol > li.custom-numbering::marker {
    content: attr(data-li-value) ". ";
}

.content-renderer ol > ol > li.custom-numbering {
    line-height: 2;
}

.content-renderer ol > ol > li.custom-numbering::marker {
    content: attr(data-li-value) ". ";
}

.content-renderer ol > ol > ol > li.custom-numbering {
    line-height: 2;
}

.content-renderer ol > ol > ol > li.custom-numbering::marker {
    content: attr(data-li-value) ". ";
}

.content-renderer .quote {
    display: inline-flex;
    margin: 1.5em 10px;
    padding: 0.5em 10px;

    @media (max-width: 599.98px) {
        background: none;
        border-left: none;
        padding: 0.5em 5px;
        margin: 1em 0px;
    }
}

.content-renderer .quote .code-block {
}

.content-renderer .quote:before {
    color: #ccc;
    content: open-quote;
    font-family: "Arial", serif;
    font-size: 8em;
    line-height: 0.1em;
    margin-right: 0.25em;
    margin-top: 0.4em;

    @media (max-width: 599.98px) {
        font-size: 6em;
    }
}

.content-renderer .quote:after {
    color: #ccc;
    content: close-quote;
    font-family: "Arial", serif;
    font-size: 8em;
    line-height: 0.1em;
    margin-right: 0.25em;
    margin-top: 0.4em;

    @media (max-width: 599.98px) {
        font-size: 6em;
    }
}

.swagger-ui table.model tbody tr td:first-of-type {
    width: auto !important;
}




/***************************************************************************/
/*	Heros                                                                  */
/***************************************************************************/



/***************************************************************************/
/*	Layouts                                                                */
/***************************************************************************/
.image-page-layout-wrapper {
    margin-top: calc(-100vw * (0.45 * 800 / 2000));
    background: white;
    border-radius: 48px;
    padding: 48px;
}

.main-hero-wrapper {
    overflow: hidden;
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
}

.main-hero-wrapper .background-video {
    max-height: 1200px;
    position: absolute;
    top: 0;
    z-index: -1;
}

.main-hero-wrapper .hero-content {
    position: absolute;
    top: 0;
    left: 0;
    max-height: 1200px;
    height: 100%;
    width: 100%;
}

.main-hero-wrapper .hero-content .hero-content-headline {
    color: white;
    font-size: 4em;
    line-height: 2em;
    text-shadow: 0 0 10px black;
}

@media (max-width: 1399.98px) {
    .main-hero-wrapper .hero-content .hero-content-headline {
        color: white;
        font-size: 2.5em;
    }
}

@media (max-width: 959.98px) {
    .main-hero-wrapper .hero-content .hero-content-headline {
        color: white;
        font-size: 1.5em;
    }
}

@media (max-width: 599.98px) {
    .main-hero-wrapper .hero-content .hero-content-headline {
        color: white;
        font-size: 1em;
    }
}

@media (max-width: 339.98px) {
    .main-hero-wrapper .hero-content .hero-content-headline {
        color: white;
        font-size: 1em;
    }
}

/***************************************************************************/
/*	Error Page Styles                                                      */
/***************************************************************************/
.error-page-content .error-code {
    color: var(--headings-font-color);
    font-weight: 700;
    line-height: 289px;
    font-size: 200px;
}

.error-page-content .error-code .error-code-major {
    color: var(--primary-color);
}

@media (max-width: 599.98px) {
    .error-page-content .error-code {
        font-size: 150px;
    }
}





/***************************************************************************/
/*	PageNotFound Styles                                                    */
/***************************************************************************/
.page-not-found-content {
}

.page-not-found-content .error-code {
    color: var(--headings-font-color);
    font-weight: 700;
    line-height: 289px;
    font-size: 200px;
}

.page-not-found-content .error-code .error-code-major {
    color: var(--primary-color);
}

@media (max-width: 599.98px) {
    .page-not-found-content .error-code {
        font-size: 150px;
    }
}



/***************************************************************************/
/*	Access Denied Styles                                                   */
/***************************************************************************/
.access-denied-content {
}

.access-denied-content .error-code {
    color: var(--headings-font-color);
    font-weight: 700;
    line-height: 289px;
    font-size: 200px;
}

.access-denied-content .error-code .error-code-major {
    color: var(--primary-color);
}

@media (max-width: 599.98px) {
    .access-denied-content .error-code {
        font-size: 150px;
    }
}



/***************************************************************************/
/*	Console classes                                                        */
/***************************************************************************/
.console-datagrid-container {
    min-height: 48px;

    .console-datagrid-header {
        min-height: 48px;

        h2 {
            margin-bottom: unset;
        }
    }

    .console-datagrid-header.has-action-button-spacer {
        padding-right: 120px;
    }

    .extended-header {
        padding-top: 16px;
    }
}

.console-grid {
    /* calc( vh100 - menu height - container top padding - container bottom padding - pagination height ) */
    height: calc(100vh - 80px - 40px - 16px - 55px - 16px);
}

.console-grid.has-header {
    /* calc( vh100 - menu height - container top padding - ( header height - header padding ) - container bottom padding - pagination height ) */
    height: calc(100vh - 80px - 40px - 48px - 16px - 16px - 55px - 16px);
}

.console-grid.has-header-with-search {
    /* calc( vh100 - menu height - container top padding - ( header height - ( extended header padding - search header height ) - header padding ) - container bottom padding - pagination height ) */
    height: calc(100vh - 80px - 40px - 48px - 16px - 38px - 16px - 16px - 55px - 16px);
}

@media (max-width: 1049.98px) {
    .console-grid {
        /* calc( vh100 - menu height - container top padding - container bottom padding - pagination height ) */
        height: calc(100vh - 80px - 20px - 16px - 55px - 16px);
    }

    .console-grid.has-header {
        /* calc( vh100 - menu height - container top padding - ( header height - header padding ) - container bottom padding - pagination height ) */
        height: calc(100vh - 80px - 20px - 48px - 16px - 16px - 55px - 16px);
    }

    .console-grid.has-header-with-search {
        /* calc( vh100 - menu height - container top padding - ( header height - ( extended header padding - search header height ) - header padding ) - container bottom padding - pagination height ) */
        height: calc(100vh - 80px - 20px - 48px - 16px - 38px - 16px - 16px - 55px - 16px);
    }
}


.console-grid-search {
    position: relative;
    width: 50%;
    border-color: darkgray;
    border-width: 1px;
    border-radius: 24px;
    border-style: solid;
    background: white;

    #searchFilter {
        border-radius: 24px;

        .dx-texteditor-input-container {
            margin-top: unset;
        }


        .dx-placeholder {
            padding-left: 8px;
        }

        input {
            background: transparent;
            padding-left: 17px;
            font-size: 14px !important;
            line-height: 100%;
            color: black;
        }

        .dx-button {
            border-radius: 24px;
        }
    }
}

@media (max-width: 599.98px) {
    .console-grid-search {
        width: 100%;
    }
}


/***************************************************************************/
/*	Essential utility classes                                              */
/***************************************************************************/

.danger-zone {
    background: rgba(220, 53, 69, 0.1);
    border: 3px dashed var(--bs-danger);
}




/***************************************************************************/
/*	Fonts Size, Font Weights, Display & Position                           */
/***************************************************************************/
.bb-white-light {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.border-radius-16 {
    border-radius: 16px !important;
}

.border-radius-24 {
    border-radius: 24px !important;
}

.border-radius-40 {
    border-radius: 40px !important;
}

.font-color-primary {
    color: var(--primary-color);
}

.font-size-16 {
    font-size: 16px;
}

.font-size-20 {
    font-size: 20px;
}

.font-size-24 {
    font-size: 24px;
}

.font-size-32 {
    font-size: 32px;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-weight-900 {
    font-weight: 900;
}

.image-wrapper {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.image-wrapper:not(.mobile) {
    background-attachment: fixed !important;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-visible {
    overflow: visible;
}

.text-black-shadow-25 {
    text-shadow: 0 0 25px #000;
}

.text-black-shadow-10 {
    text-shadow: 0 0 10px #000;
}

.zindex-n {
    z-index: -1;
}





/***************************************************************************/
/*	Form Styles                                                            */
/***************************************************************************/
.form-box {
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    position: relative;
    -webkit-box-shadow: 6px 6px 20px rgba(64, 64, 64, 0.15);
    -moz-box-shadow: 6px 6px 20px rgba(64, 64, 64, 0.15);
    -o-box-shadow: 6px 6px 20px rgba(64, 64, 64, 0.15);
    box-shadow: 6px 6px 20px rgba(64, 64, 64, 0.15);
    padding: 50px !important;
}

@media (max-width: 599.98px) {
    .form-box {
        padding: 30px !important;
    }
}

.form-box .form-checkbox-control {
    line-height: 26px;
}

.form-box .form-checkbox-control .checkmark {
    top: 7px;
}

.form-control {
    border-radius: 8px;
    border: 2px solid transparent;
    box-shadow: none;
    height: 55px;
    outline: 1px solid #E9E9E9;
    padding-left: 20px;
}

.form-control::placeholder {
    color: #697488;
    font-family: var(--headings-font-family);
}

.form-control:focus {
    border: 2px solid var(--headings-font-color);
    box-shadow: none;
}

.form-checkbox-control {
    display: block;
    cursor: pointer;
    color: var(--headings-font-color);
    font-family: var(--headings-font-family);
    font-weight: 400;
    line-height: 40px;
    letter-spacing: 0em;
    position: relative;
    padding-left: 28px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.form-checkbox-control input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-checkbox-control input:checked ~ .checkmark {
    background-color: var(--primary-focus-color);
}

.form-checkbox-control .checkmark {
    border: 1px solid #041e42;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 0;
    height: 16px;
    width: 16px;
}

.form-checkbox-control .checkmark:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

textarea {
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    height: auto;
    width: 100%;
    padding: 25px 20px;
}

textarea.form-control {
    min-height: auto !important;
    height: auto !important;
}


/***************************************************************************/
/*	Custom Project Specific Styles                                         */
/***************************************************************************/
.highlight {
    position: relative;
    z-index: 1;
    &:after {
        content: '';
        position: absolute;
        z-index: -1;
        display: block;
        background-size: 100% 100%;
        background-repeat: no-repeat;
        background-position: bottom;
        left: 50%;
        bottom: -0.1em;
        width: 110%;
        height: 0.3em;
        transform: translateX(-50%);
    }
    &.encircle:before,
    &.encircle:after {
        content: '';
        z-index: -1;
        border: 3px solid #e2626b;
        position: absolute;
        left: 50%;
        top: 52%;
        opacity: 1;
        border-radius: 80%;
    }
    &.encircle:before {
        transform: translate(-50%, -50%) rotate(-1deg);
        border-top-width: 0;
        width: 111%;
        height: 110%;
    }
    &.encircle:after {
        transform: translate(-50%, -50%) rotate(-2deg);
        border-left-width: 0;
        border-bottom-width: 0;
        border-color: #e2626b;
        width: 107%;
        height: 111%;
    }
    &.underline:after {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 205 9.37'%3E%3Cpath fill='%23e2626b' d='M202.47,9.37A1191.26,1191.26,0,0,0,1.79,7.48,1.67,1.67,0,0,1,0,5.92H0A1.76,1.76,0,0,1,1.63,4.21c67-5.71,133.83-5.43,200.8-.27A2.75,2.75,0,0,1,205,6.88h0A2.6,2.6,0,0,1,202.47,9.37Z'/%3E%3C/svg%3E");
    }
}

.font-size-small {
    font-size: 0.75rem;
}
