/* color varibles*/

:root {
    /* theme default*/
    --themePrimaryInitial: #FFFFFF;
    --themePrimary: #C38135;
    --themePrimaryText: #FFFFFF;
    --themeBackground: #FFFFFF;
    --themeBackgroundText: #000000;
    /* theme 1*/
    --theme1primary: #C38135;
    --theme1primaryText: #FFFFFF;
    --theme1background: #FFFFFF;
    --theme1backgroundText: #000000;
    /* theme 2*/
    --theme2primary: #112C54;
    --theme2primaryText: #FFFFFF;
    --theme2background: #FFFFFF;
    --theme2backgroundText: #000000;
    /* theme 3*/
    --theme3primary: #7EBA00;
    --theme3primaryText: #FFFFFF;
    --theme3background: #FFFFFF;
    --theme3backgroundText: #000000;
    /* theme 4*/
    --theme4primary: #C38135;
    --theme4primaryText: #FFFFFF;
    --theme4background: #FFFFFF;
    --theme4backgroundText: #000000;
    /* theme 5*/
    --theme5primary: #C38135;
    --theme5primaryText: #FFFFFF;
    --theme5background: #FFFFFF;
    --theme5backgroundText: #000000;
}

@font-face {
    font-family: 'Inter-Regular';
    src: url('../fonts/Inter/static/Inter_18pt-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter-Light';
    src: url('../fonts/Inter/static/Inter_28pt-Light.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter-Medium';
    src: url('../fonts/Inter/static/Inter_18pt-Medium.ttf') format('truetype');
}


/* color varibles*/

body {
    font-family: 'Nunito Sans', sans-serif;
    color: #444444;
    background: url(../img/bodybg.jpg) repeat;
}

a {
    color: #112c54;
    outline: 0;
}

a:hover {
    color: #ef7500;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Nunito Sans', sans-serif;
}


/*html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}*/


/* Change Autocomplete styles in Chrome*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    border: 1px solid var(--font-color);
    -webkit-text-fill-color: var(--font-color);
    -webkit-box-shadow: 0 0 0px 1000px var(--black) inset;
    transition: background-color 5000s ease-in-out 0s;
}

button:focus {
    outline: 0
}


/* button[type="submit"]:hover{background:#112c54} */

.rounded-btn {
    border-radius: 50px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    width: 100%;
    height: 100%;
}

#preloader img {
    top: calc(50% - 90px);
    left: calc(50% - 90px);
    width: 180px;
    position: absolute;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 65px;
    z-index: 999;
}

.back-to-top i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    background: #112c54;
    color: #fff;
    transition: all 0.4s;
}

.back-to-top i:hover {
    background: #2be4a2;
    color: #fff;
}

.view-all {
    border-radius: 20px;
    text-transform: capitalize;
    font-size: 18px;
    padding: 10px 15px;
}

.character-count {
    line-height: 40px;
    float: right
}

.character-count em {
    color: var(--primary);
    font-style: normal;
}

.contact-box {
    background: var(--secondary);
    border-radius: 10px;
    padding: 15px 10px;
    font-size: 20px;
    font-weight: 600;
}

.contact-box a {
    color: var(--white)
}

.contact-box span {
    display: inline-block;
    padding: 0 15px 0 10px;
    margin-right: 10px;
    border-right: 1px solid white
}

.contact-box .icon {
    width: 30px;
    height: 30px;
}

.contact-box.call i {
    color: #009a86;
}

.query-date {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    padding-bottom: 20px;
}

.query-box-per-day {
    list-style: none;
    padding: 0;
    margin: 20px 0
}

.query-box {
    background: var(--white);
    display: block;
    position: relative;
    border-radius: 10px;
    padding: 10px;
    margin: 5px 0;
    color: var(--secondary);
}

.query-box:nth-child(even) {
    background: rgba(255, 255, 255, 0.7)
}

.query-text {
    font-size: 17px;
    margin: 8px 0;
    display: inline-block;
    font-weight: 500
}

.query-time {
    margin: 8px 0;
    font-weight: 500;
}

.query-icon .icon {
    position: relative;
    top: 3px;
    width: 35px;
    height: 35px;
}

.support-query-form .form-group {
    overflow: hidden;
}

.support-query-form .custom-file {
    width: 125%;
    position: relative;
    top: 12px;
}

.support-query-form .custom-file-label {
    background: transparent;
    border: 0;
    padding-left: 0
}

.support-query-form .custom-file-input:focus~.custom-file-label {
    box-shadow: none;
    border-color: transparent
}

.user-activity-box .thead {
    background: var(--secondary);
    color: #fff;
    border-radius: 7px;
    text-transform: uppercase;
    font-size: 14px;
}

.user-activity-box .thead div:first-child {
    border-right: 1px solid
}

.user-activity-box .tbody {
    background: white;
    border-radius: 7px;
    padding: 15px 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .15)
}

.tfooter,
.views-listing {
    border-top: 1px solid #dee2e6
}

.table-text-user-info {
    font-weight: 600;
    font-size: 16px;
    color: #112c54;
    position: relative;
    padding-left: 30px;
    display: inline-block;
    line-height: normal;
}

.table-text-user-info a {
    color: var(--primary)
}

.table-text-user-info .user-info-icon {
    position: absolute;
    left: -5px;
    top: 0
}

.table-text-user-info .user-info-icon svg {
    fill: var(--secondary);
    width: 25px;
    height: 25px;
}

.image-thumbnail h6 {
    font-weight: bold;
}

.radio-toolbar {
    width: 100%;
    text-align: center;
    position: relative;
}

.radio-toolbar input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.radio-toolbar label {
    display: inline-block;
    color: #fff;
    padding: 8px 20px;
    font-size: 16px;
    width: 100%;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 4px;
    background: #c1c1c1;
    cursor: pointer;
    z-index: 2;
}

.radio-toolbar label:hover {
    background-color: #2f59c7;
}

.radio-toolbar input[type="radio"]:focus+label {
    /* border: 2px dashed #444; */
}

.radio-toolbar input[type="radio"]:checked+label {
    background-color: #2f59c7;
    /* border-color: #4c4; */
}

.img-size {
    max-width: 600px;
    max-height: 600px;
    margin: 0 auto;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E");
    width: 30px;
    height: 48px;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23009be1' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E");
    width: 30px;
    height: 48px;
}

.themegallery .carousel-item {
    text-align: center;
    height: 500px;
    width: 100%;
}

.themegallery .modal-title {
    text-align: center;
    width: 100%;
}

.themegallery .modal-title h6 {
    font-size: 26px;
    color: #112c54;
    font-weight: 700;
}

.select-theme-bt {
    background: #112c54;
    border: 0
}

.theme-selection {
    margin: 0 auto 10px;
    padding-left: 0 !important;
    max-height: 200px;
    height: 200px;
    text-align: center;
    max-width: 280px;
}

.theme-selection .img {
    width: 100%;
    position: relative;
}

.theme-selection img {
    max-height: 200px;
    height: 100%;
    width: auto;
    object-fit: contain;
}

.theme-selection button {
    position: absolute;
    top: 30%;
    left: 39%;
}

.btn-gallery-view {
    background: #fd7d02;
    color: #fff;
    font-size: 20px;
}

.btn-gallery-view:visited,
.btn-gallery-view:active,
.btn-gallery-view:focus,
.btn-gallery-view:hover {
    outline: 0;
    box-shadow: none;
}

.theme-selection img:hover .overlay {
    display: block;
}

.image-thumbnail {
    background: #f4f4f4;
    padding: 10px;
    margin: 10px;
    text-align: center
}

.radio-toolbar .overlay {
    transition: background, .5s;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    color: #fff;
    border-radius: 0 0 4px 4px;
}

.radio-toolbar .overlay i {
    position: absolute;
    top: 33%;
    left: 43%;
    font-size: 43px;
    -webkit-transform: translateX(-43%, -33%);
    transform: translateX(-43%, -33%);
}

.radio-toolbar:hover .overlay {
    display: block;
    background: rgba(255, 255, 255, 0.5);
}

.why-sellingo iframe {
    min-height: 585px;
}

.themegallery .modal-dialog {
    max-width: 600px;
    max-height: 400px;
}

.input-group-otp .input-group-col {
    padding-left: 5px;
    padding-right: 5px;
}

.input-group-otp .form-control {
    border-radius: 0;
    border: 0;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    border-bottom: 3px solid var(--main-secondary-color);
    text-align: center;
    color: var(--main-secondary-color);
    padding: 0;
}

.form-box .form-control.type_otp {
    border-left: 0;
    border-radius: 0;
    padding: 6px;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid #ef7500;
}

.modal-dialog {
    width: 100%;
    max-width: 400px;
}

#select_theme .modal-dialog {
    max-width: 1000px;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }

    .why-sellingo iframe {
        min-height: 380px;
    }

    .img-size {
        max-width: 300px;
        height: 100%;
        margin: 0 auto;
        object-fit: contain;
    }
}

@media screen and (max-width: 767px) {
    /* #catalog_detail_div .col-lg-8 .row a, .product-flieds.col-lg-8 .row a{width: 33.33%;}
  #catalog_detail_div .col-lg-8 .row .col-4, .product-flieds.col-lg-8 .row .col-4{-ms-flex: 0 0 33.33%; flex: 0 0 33.33%; max-width: 33.33%;}
  #catalog_detail_div .col-lg-8 .row a .col-4, .product-flieds.col-lg-8 .row a .col-4{-ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%;} */
}

@media screen and (max-width: 480px) {
    .why-sellingo iframe {
        min-height: 157px;
    }

    .modal-dialog {
        width: 100%;
        max-width: 96%;
    }

    .custom-md-popup .modal-dialog {
        width: calc(100% - 1rem);
        max-width: 100%;
    }

    /* #catalog_detail_div .col-lg-8 .row a, .product-flieds.col-lg-8 .row a{width: 50%;}
  #catalog_detail_div .col-lg-8 .row .col-4, .product-flieds.col-lg-8 .row .col-4{-ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; width: 100%;}
  #catalog_detail_div .col-lg-8 .row a .col-4, .product-flieds.col-lg-8 .row a .col-4{-ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; width: 100%;} */
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 80px;
    transition: all 0.5s;
    z-index: 2;
    transition: all 0.5s;
}

.header-shadow {
    /* background: url(../img/header-bottom-shadow.png) no-repeat bottom center; */
    /* background-size: 120% auto; */
    box-shadow: 0 4px 4px -2px rgba(128, 128, 128, 0.5)
}

#header .container {
    position: relative;
    top: 0;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.9);
    height: 60px;
}

#header.header-scrolled .container {
    top: 0
}

#header .logo h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #fff;
    text-decoration: none;
}

#header .logo svg {
    padding: 0;
    margin: 0;
    height: 55px;
}

#header.header-scrolled .logo svg {
    max-height: 40px;
}

.form-control:focus {
    box-shadow: none;
}

@media (max-width:1024px) {
    #header .logo svg {
        height: 35px;
    }
}

@media (max-width: 768px) {
    #header .logo h1 {
        font-size: 28px;
    }

    .authentication-block {
        text-align: center;
        padding: 20px 0;
    }

    .logo {
        top: 12px;
        position: relative;
    }

    #header.header-scrolled {
        height: 75px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu {
    margin-right: 20px;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: rgba(17, 44, 84, 1);
    padding: 10px 15px;
    transition: 0.3s;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Nunito Sans', sans-serif;
}

.nav-menu>ul>li>a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 3px;
    left: 15px;
    background-color: #ef7500;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before,
.nav-menu li:hover>a:before,
.nav-menu .active>a:before {
    visibility: visible;
    width: 25px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #112c54;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 25px;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
    border-radius: 5px;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #01036f;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #112c54;
}

.nav-menu .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}


/* Mobile Navigation */

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 24px;
    z-index: 9999;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.modal-open .mobile-nav-toggle {
    z-index: 997;
}

.mobile-nav-toggle i {
    color: #092a53;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    /* bottom: 15px; */
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #dce8e8;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav ul {
    padding: 10px 20px
}

.mobile-nav li {
    border-bottom: 1px dashed;
    position: relative;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #01036f;
    padding: 10px 20px;
    font-weight: 700;
    outline: none;
    font-size: 18px;
}

.mobile-nav a span svg,
.mobile-nav a span img {
    width: 25px;
    height: auto;
    fill: #ef7500;
    position: absolute;
    left: 10px;
    top: 15px;
}

.mobile-nav a span img {
    width: 20px;
    top: 17px
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #112c54;
    text-decoration: none;
}

.mobile-nav .drop-down>a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(9, 42, 83, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# footer-nav-block
--------------------------------------------------------------*/

.navbar {
    overflow: hidden;
    background-color: #112c54;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 988;
    padding: 10px 5%;
}

.navbar a {
    /* float: left; */
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 5px 0;
    text-decoration: none;
    font-size: 23px;
    /* background: #ef7500; */
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 0 auto;
    line-height: 28px;
}

.navbar a:hover {
    background: #f1f1f1;
    color: black;
}

.navbar a.active {
    background-color: #4CAF50;
    color: white;
}


/*--------------------------------------------------------------
# Authentication-block
--------------------------------------------------------------*/

.authentication-block ul {
    margin: 0;
    padding: 0
}

.authentication-block ul li {
    display: inline-block;
    list-style: none;
    padding: 0;
    position: relative;
}

.authentication-block .btn {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 13px;
    line-height: 22px;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    transition: 0.5s;
    color: #fff;
}

.authentication-block .contact-bt {
    border-left: 1px solid #112c54;
    padding: 0 0 0 10px;
    margin-left: 10px;
    color: #112c54;
}

.authentication-block .profile-link {
    position: absolute;
    top: -18px;
    left: 0;
}

.authentication-block .profile-link i {
    font-size: 28px;
}

.authentication-block .profile-link svg {
    height: 28px;
    width: 28px;
}

.authentication-block .profile-link-li {
    position: relative;
    width: 30px;
    margin: 0 7px;
}

.loadingoverlay {
    background-size: 180px !important;
}

@media (max-width: 768px) {

    /* .authentication-block .btn{text-transform: uppercase;
    font-weight: 800;
    font-size: 11px;
    line-height: 16px;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;} */
    #header .container {
        top: auto;
    }
}

.inner-page {
    padding: 80px 0 0;
    min-height: 500px;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    /* background: url("../img/hero-bg.jpg"); */
    position: relative;
    padding: 120px 0 0 0;
}

#hero:before {
    content: "";
    /* background: rgba(2, 5, 161, 0.91); */
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(255, 255, 255, 0.8);
}

#hero h1 span {
    color: #fff;
    border-bottom: 4px solid #112c54;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 24px;
}

#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #112c54;
}

#hero .btn-get-started:hover {
    background: #17b57d;
}

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero .mobile-img {
    background: url(../img/banner-mobile-back.png) no-repeat center center;
    background-size: contain;
}

#hero .owl-item img.slide1-img {
    max-width: 282px;
    margin: 0 auto
}

#hero .owl-item .slide1-caption span {
    color: #112c54;
    font-size: 25px;
    font-weight: 700;
}

#hero .owl-item .slide1-caption span.error {
    position: absolute;
    width: 100%;
    top: 112%;
    font-size: 14px;
    line-height: 14px;
    left: 24px;
    color: red;
}

#hero .owl-item .slide1-caption h1 {
    color: #ef7500;
    line-height: 65px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

#hero .owl-item .slide1-caption h2 {
    font-size: 36px;
    line-height: 38px;
    color: #112c54;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

#hero .owl-item .slide1-caption h2:before {
    content: "";
    width: 150px;
    height: 3px;
    background: #ef7500;
    position: absolute;
    bottom: 0
}

#hero .owl-item .slide1-caption p {
    font-size: 23px;
    font-weight: 600;
    color: #112c54;
    line-height: 33px;
    padding-bottom: 32px;
    margin: 0
}

.banner-shadow {
    background: url(../img/banner-shadow.png) no-repeat bottom center;
    background-size: 100% auto;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

#hero .banner-form form {
    margin-top: 10px;
    background: #fff;
    padding: 10px 10px 10px 15px;
    position: relative;
    border-radius: 50px;
    border: 1px solid #ef7500;
    margin-bottom: 32px;
}

#hero .banner-form form input[type="text"] {
    border: 0;
    padding: 4px;
    width: calc(100% - 110px);
    font-size: 16px;
    color: #112c54;
}

#hero .banner-form form input[type="text"]:focus::-webkit-input-placeholder {
    opacity: 0;
}

#hero .banner-form form input[type="text"] ::-moz-placeholder {
    opacity: 0;
}

#hero .banner-form form input[type="text"] :-ms-input-placeholder {
    opacity: 0;
}

#hero .banner-form form input[type="text"] :-moz-placeholder {
    opacity: 0;
}

#hero .banner-form form input[type="submit"],
#hero .banner-form form button[type="submit"],
#hero .banner-form form button[type="button"] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #ef7500;
    color: #fff;
    transition: 0.3s;
    border-radius: 50px;
    line-height: 57px;
}

#hero .banner-form .form-group i {
    color: #ef7500;
    font-size: 25px;
    margin: 0 10px;
    position: relative;
    top: 3px;
}

#hero .banner-form form input[type="submit"]:hover,
#hero .banner-form form button[type="submit"]:hover,
#hero .banner-form form button[type="button"]:hover {
    background: #fd7d02;
}

#hero .banner-form form input:focus {
    outline: 0;
}

.app-link-bt img {
    width: 100% !important
}

.app-link-bt {
    display: inline-block;
    padding: 5px;
    width: 49%;
    max-width: 233px;
}

#hero .banner-form form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #112c54;
}

#hero .banner-form form input ::-moz-placeholder {
    /* Firefox 19+ */
    color: #112c54;
}

#hero .banner-form form input:-ms-input-placeholder {
    /* IE 10+ */
    color: #112c54;
}

#hero .banner-form form input:-moz-placeholder {
    /* Firefox 18- */
    color: #112c54;
}

.owl-prev {
    left: 0;
    position: absolute;
    font-size: 70px !important;
    top: 35%;
}

.owl-next {
    right: 0;
    position: absolute;
    font-size: 70px !important;
    top: 35%;
}

.owl-next.disabled img,
.owl-prev.disabled img {
    opacity: 0.3
}

.privacy-terms li {
    margin-bottom: 20px;
    text-align: justify;
}

.privacy-terms {
    margin: 0 0 0 20px;
    padding: 0
}

.privacy-terms li ol {
    padding: 0;
    margin: 0 0 0 20px
}

.privacy-terms li h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.privacy-terms li ol li {
    margin-bottom: 10px;
}

.form-box .form-group label {
    padding-left: 20px;
}

@media (min-width: 1024px) {
    #hero {
        background-attachment: fixed;
    }
}


/* @media (max-width: 1024px) {
  .nav-menu {
    margin-right: 15px;
}
} */

@media (max-width: 991px) {
    body {
        padding-bottom: 50px
    }

    #hero {
        padding-top: 115px;
    }

    #hero .animated {
        -webkit-animation: none;
        animation: none;
    }

    #hero .hero-img {
        text-align: center;
    }

    #hero .owl-item img.slide1-img {
        width: 50%;
        max-width: 150px;
    }

    #hero h1 {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }

    .mobile-nav a {
        padding: 15px 20px 15px 45px
    }

    .owl-next img,
    .owl-prev img {
        width: 60px !important
    }
}

@media (max-width: 575px) {

    .owl-next img,
    .owl-prev img {
        width: 40px !important
    }

    #hero .banner-form form {
        padding: 5px 5px 5px 10px
    }

    #hero .owl-item img.slide1-img {
        width: 80%;
        max-width: 110px;
    }

    #hero .owl-item .slide1-caption h1 {
        font-size: 38px;
    }

    #hero .owl-item .slide1-caption h2 {
        font-size: 20px;
    }

    #hero .owl-item .slide1-caption p {
        font-size: 16px;
        line-height: normal;
    }

    #hero .owl-item .slide1-caption h2:before {
        left: 28%;
    }

    #hero .owl-item .slide1-caption {
        width: 100%
    }

    #hero .banner-form form input[type="number"],
    #hero .banner-form form input[type="submit"],
    #hero .banner-form form button[type="submit"],
    #hero .banner-form form button[type="button"] {
        font-size: 11px;
        line-height: 20px;
    }

    #hero .banner-form form input[type="number"] {
        position: relative;
        top: -1px;
        font-size: 12px;
    }

    .left-tick-box,
    .right-tick-box {
        min-width: 25%;
        flex: 0 0 25%;
        padding: 0 10px
    }

    .middle-box-features {
        max-width: 50%;
        flex: 0 0 50%;
        padding: 0 10px
    }

    .contact-box {
        margin-bottom: 15px;
    }

    .img-span img {
        width: 100%;
        height: auto;
    }

    #image-list li {
        padding: 10px 25px 10px 25px !important;
        width: 100%;
    }

    #image-list li img {
        width: 100% !important;
        height: auto !important;
    }
}

@-webkit-keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.hero-waves {
    display: block;
    margin-top: 60px;
    width: 100%;
    height: 60px;
    z-index: 5;
    position: relative;
}

.wave1 use {
    -webkit-animation: move-forever1 10s linear infinite;
    animation: move-forever1 10s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave2 use {
    -webkit-animation: move-forever2 8s linear infinite;
    animation: move-forever2 8s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

.wave3 use {
    -webkit-animation: move-forever3 6s linear infinite;
    animation: move-forever3 6s linear infinite;
    -webkit-animation-delay: -2s;
    animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@keyframes move-forever1 {
    0% {
        transform: translate(85px, 0%);
    }

    100% {
        transform: translate(-90px, 0%);
    }
}

@-webkit-keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever2 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@-webkit-keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}

@keyframes move-forever3 {
    0% {
        transform: translate(-90px, 0%);
    }

    100% {
        transform: translate(85px, 0%);
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 30px 0;
    overflow: hidden;
}

.section-bg {
    background-color: #f5f5ff;
}

.section-title {
    padding-bottom: 40px;
}

.section-title h2 {
    font-size: 30px;
    font-weight: 800;
    padding: 0 0 15px;
    margin: 0 0 5px 0;
    color: #112c54;
    font-family: 'Nunito Sans', sans-serif;
    position: relative;
    text-align: center;
    text-transform: capitalize;
}

.section-title h2::before {
    content: "";
    width: 120px;
    height: 3px;
    display: inline-block;
    background: #ef7500;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.section-title p {
    margin: 0;
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Nunito Sans', sans-serif;
    color: #010483;
}


/*--------------------------------------------------------------
# why-sellingo
--------------------------------------------------------------*/

.why-sellingo .vs-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#f57120 50%, rgba(245, 113, 32, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.why-sellingo .vs-btn::after {
    content: 'VS';
    position: absolute;
    transform: translateX(-35%) translateY(-35%);
    left: 33%;
    top: 33%;
    font-size: 25px;
    color: white;
    width: 0;
    height: 0;
    z-index: 100;
    /* transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19); */
}

.why-sellingo .vs-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 8px solid rgba(245, 113, 32, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}


/*
.features .vs-btn:hover::after {
  border-left: 15px solid #3f43fd;
  transform: scale(20); 
}
*/


/* .features .vs-btn:hover::before {
  content: 'vs';
  position: absolute;
  left:35%;
  top: 35%;
  font-size:25px;
  color:white;
  width: 0;
  height: 0;
  border: none;
 z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
} */

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

ul.selling-need-div {
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}

ul.selling-need-div li {
    border-bottom: 1px dashed #112c54;
    padding: 5px;
    font-size: 19px;
    color: #112c54;
    font-weight: 600;
    line-height: 25px;
    float: left;
    width: 100%;
}

ul.selling-need-div li img {
    float: left;
    width: 20%;
    max-width: 70px;
    margin-right: 10px
}

ul.selling-need-div li span {
    display: block;
    padding: 10px 0;
}

.printed-catalog,
.sellingo-catalog {
    font-size: 39px;
    font-weight: 800;
    color: #112c54;
    line-height: 39px;
    width: 65%;
    margin: 25px 0 0
}

.printed-catalog img,
.sellingo-catalog img {
    max-width: 97px;
    float: left;
    margin-right: 10px;
}

.printed-catalog span,
.sellingo-catalog span {
    font-size: 32px;
    display: block;
    line-height: 32px;
    padding: 25px 0;
    font-weight: 800;
}

.printed-catalog small,
.sellingo-catalog small {
    font-weight: 800;
}

.sellingo-catalog img {
    float: right;
    margin-left: 10px;
}

.sellingo-catalog {
    color: #ef7000;
}

ul.feature-tick-box {
    width: 100%;
    list-style: none;
    clear: both;
    margin: 0;
    padding: 0;
    margin-top: 6px;
    float: left;
}

ul.feature-tick-box li {
    padding: 13px;
}

ul.feature-tick-box li div.tick-box {
    box-shadow: 0 0 10px gray;
    min-width: 130px;
    padding: 13px 13px 13px 25px;
    color: white;
    font-size: 19px;
    border-radius: 6px;
    font-weight: 800;
    display: inline-block;
    background: rgb(96, 155, 244);
    background: linear-gradient(90deg, rgba(96, 155, 244, 1) 0%, rgba(17, 44, 84, 1) 100%);
}

ul.feature-tick-box li div.tick-box i {
    font-size: 20px;
    margin: 0 10px
}

.middle-box-features {
    background: rgb(224, 234, 234);
    background-image: linear-gradient(to bottom, #dbe6e7, #e2eaed, #e9eff2, #f0f3f6, #f7f8fa, #f7f8fa, #f7f8fa, #f7f8fa, #f0f3f6, #e9eff2, #e2eaed, #dbe6e7);
    /* box-shadow: 5px 0 5px -5px rgba(0,0,0,0.5), -5px 0 5px -5px rgba(0,0,0,0.5); */
    padding: 30px 20px;
}

ul.feature-tick-box li div.tick-box.orange-box {
    padding: 13px 25px 13px 13px;
    background: rgb(245, 73, 33);
    background: linear-gradient(90deg, rgba(245, 73, 33, 1) 0%, rgba(245, 120, 32, 1) 100%);
}

.arrow_box-right {
    position: relative;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 1) 54%, rgba(255, 255, 255, 0.4) 100%);
    background: #88b7d5;
}

.arrow_box-right:after,
.arrow_box-right:before {
    left: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box-right:after {
    border-color: rgba(136, 183, 213, 0);
    border-left-color: #122d56;
    border-width: 10px;
    margin-top: -10px;
}

.arrow_box-right:before {
    border-color: rgba(194, 225, 245, 0);
    border-left-color: #122d56;
    border-width: 9px;
    margin-top: -9px;
}

.arrow_box-left {
    position: relative;
    background: #88b7d5;
}

.arrow_box-left:after,
.arrow_box-left:before {
    right: 100%;
    top: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box-left:after {
    border-color: rgba(136, 183, 213, 0);
    border-right-color: #f54a21;
    border-width: 10px;
    margin-top: -10px;
}

.arrow_box-left:before {
    border-color: rgba(194, 225, 245, 0);
    border-right-color: #f54a21;
    border-width: 9px;
    margin-top: -9px;
}

@media (max-width:640px) {
    ul.selling-need-div li img {
        width: 70%;
        float: none
    }

    ul.selling-need-div li {
        font-size: 15px;
        line-height: 20px;
        text-align: center;
    }

    .printed-catalog,
    .sellingo-catalog {
        width: 100%
    }

    .printed-catalog span,
    .sellingo-catalog span {
        font-size: 26px;
        line-height: 26px;
    }

    .middle-box-features {
        padding: 0;
        margin: 0;
    }

    ul.feature-tick-box li {
        padding: 13px 0;
    }

    ul.feature-tick-box li div.tick-box {
        min-width: 100%;
        padding: 10px;
        font-size: 15px;
    }

    ul.feature-tick-box li div.tick-box.orange-box {
        padding: 10px;
    }

    .owl-prev,
    .owl-next {
        top: 14%
    }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
    padding: 40px 0 0 0;
}

.about .icon-boxes h3 {
    font-size: 28px;
    font-weight: 700;
    color: #010483;
    margin-bottom: 15px;
}

.about .icon-box {
    margin-top: 40px;
}

.about .icon-box .icon {
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border: 2px solid #7ceec6;
    border-radius: 50px;
    transition: 0.5s;
}

.about .icon-box .icon i {
    color: #112c54;
    font-size: 32px;
}

.about .icon-box:hover .icon {
    background: #112c54;
    border-color: #112c54;
}

.about .icon-box:hover .icon i {
    color: #fff;
}

.about .icon-box .title {
    margin-left: 85px;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 18px;
}

.about .icon-box .title a {
    color: #343a40;
    transition: 0.3s;
}

.about .icon-box .title a:hover {
    color: #112c54;
}

.about .icon-box .description {
    margin-left: 85px;
    line-height: 24px;
    font-size: 14px;
}

.about .video-box {
    background: url("../img/about.png") center center no-repeat;
    background-size: contain;
    min-height: 300px;
}

.testimonials .play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(#ef7500 50%, rgba(239, 117, 0, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
    overflow: hidden;
}

.testimonials .play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.testimonials .play-btn::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(238, 137, 41, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(244, 172, 102, 0);
}

.testimonials .play-btn:hover::after {
    border-left: 15px solid #ef7500;
    transform: scale(20);
}

.testimonials .play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/

.features .icon-box {
    /* display: flex; */
    text-align: center;
    padding: 0 0 20px;
    transition: ease-in-out 0.3s;
}

.features img {
    margin: 0 auto
}

.features .icon-box h3 {
    font-weight: 800;
    font-size: 24px;
    line-height: normal;
    margin: 10px 0 0;
}

.features .icon-box h3 a {
    color: #010483;
    transition: ease-in-out 0.3s;
}

.features .icon-box h3 a:hover {
    color: #01036f;
}

.features .icon-box:hover {
    background: #ebebff;
}

.feature-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    min-height: 472px;
}

.feature-box-cover {
    margin-bottom: 20px;
    min-height: 477px;
    background-image: linear-gradient(to right, #e97b0e, #e96e08, #e96006, #e85108, #e73f0c);
    border-radius: 15px;
    padding-bottom: 5px
}

.feature-box ul {
    margin: 0;
    padding: 15px 10px 0;
    list-style: none;
}

.feature-box ul li {
    position: relative;
    padding-left: 20px;
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px dashed #cdcdcd;
    color: #444;
    font-size: 14px;
}

.feature-box ul li:before {
    content: "\f111";
    color: #ef7800;
    font-size: 5px;
    height: 7px;
    width: 7px;
    font-family: "Font Awesome 5 Free";
    background: #ef7800;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 9px;
}

.feature-box ul li:last-child {
    border-bottom: 0
}


/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/

.counts {
    background: #f5f5ff;
    padding: 70px 0 60px;
}

.counts .count-box {
    padding: 30px 30px 25px 30px;
    width: 100%;
    position: relative;
    text-align: center;
    background: #fff;
}

.counts .count-box i {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    background: #112c54;
    padding: 12px;
    color: #fff;
    border-radius: 50px;
}

.counts .count-box span {
    font-size: 36px;
    display: block;
    font-weight: 600;
    color: #010483;
}

.counts .count-box p {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
}


/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/

.details .content+.content {
    margin-top: 100px;
}

.details .content h3 {
    font-weight: 600;
    font-size: 26px;
    color: #010483;
}

.details .content ul {
    list-style: none;
    padding: 0;
}

.details .content ul li {
    padding-bottom: 10px;
}

.details .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #112c54;
}

.details .content p:last-child {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}


/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials {
    padding: 30px 0;
    background: transparent;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.testimonials .section-header {
    margin-bottom: 40px;
}

.testimonials .testimonial-item {
    text-align: center;
    color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
    max-width: 300px;
    /* border: 6px solid rgba(255, 255, 255, 0.15); */
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 10px 0 0 0;
    color: #112c54;
    text-align: left;
}

.testimonials .testimonial-item h4 {
    font-size: 17px;
    color: #112c54;
    margin: 0 0 15px 0;
    text-align: left;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: rgba(255, 255, 255, 0.4);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    margin: 0 auto;
    color: #112c54;
    font-size: 15px;
    line-height: 30px;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid;
}

.testimonials .owl-nav,
.testimonials .owl-dots {
    margin-top: 5px;
    text-align: center;
}

.testimonials .owl-dot {
    display: inline-block;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.testimonials .owl-dot.active {
    background-color: #112c54 !important;
}

@media (min-width: 1024px) {
    .testimonials {
        background-attachment: fixed;
    }
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 100%;
    }
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team {
    background: #fff;
}

.team .member {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.team .member .pic {
    border-radius: 4px;
    overflow: hidden;
}

.team .member img {
    transition: all ease-in-out 0.4s;
}

.team .member:hover img {
    transform: scale(1.1);
}

.team .member .member-info {
    position: absolute;
    bottom: -80px;
    left: 0px;
    right: 0px;
    background: rgba(255, 255, 255, 0.9);
    padding: 15px 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.team .member h4 {
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 16px;
    color: #01036f;
    position: relative;
    padding-bottom: 10px;
}

.team .member h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: #0d12fc;
    bottom: 0;
    left: calc(50% - 25px);
}

.team .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
    color: #01036f;
}

.team .member .social {
    margin-top: 10px;
}

.team .member .social a {
    transition: color 0.3s;
    color: #01036f;
}

.team .member .social a:hover {
    color: #112c54;
}

.team .member .social i {
    font-size: 16px;
    margin: 0 2px;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing .box-cover {
    padding-bottom: 5px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
}

.silver-color-box-cover {
    background-image: linear-gradient(to right, #ed9a46, #f2ab65, #f7bd83, #fbcea2, #fddfc2);
}

.silver-color-plan {
    background-image: linear-gradient(to bottom, #f9ac5f, #fab570, #fbbe80, #fcc791, #fcd0a2, #ffd4b4, #ffd9c5, #ffdfd5, #ffe6e7, #feeef5, #fcf7fc, #ffffff);
}

.silver-plan .arrow_box-right:after,
.silver-plan .arrow_box-right:before {
    border-left-color: #f9ac5f;
}

.gold-color-box-cover {
    background-image: linear-gradient(to right, #ac852a, #b89543, #c3a45b, #ceb472, #dac48a);
}

.gold-color-plan {
    background-image: linear-gradient(to bottom, #e1b242, #e6bd5e, #eac878, #eed291, #f2ddab, #fae0bc, #ffe5cd, #ffebde, #ffeeec, #fff4f7, #fefafd, #ffffff);
}

.gold-plan .arrow_box-right:after,
.silver-plan .arrow_box-right:before {
    border-left-color: #e2c98b;
}

.platinum-color-box-cover {
    background-image: linear-gradient(to right, #465e92, #5d72a3, #7387b4, #8a9cc5, #a1b2d7);
}

.platinum-color-plan {
    background-image: linear-gradient(to bottom, #aec2f1, #b7c9f3, #bfd0f4, #c8d6f6, #d1ddf7, #d9e2f8, #e0e7f9, #e7ecfa, #eef0fb, #f4f5fc, #fafafe, #ffffff);
}

.platinum-plan .arrow_box-right:after,
.silver-plan .arrow_box-right:before {
    border-left-color: #baccf5;
}

.pricing .box {
    padding: 20px;
    background: #fff;
    text-align: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.pricing .header-color-box {
    margin-top: -26px;
    display: block;
    width: 48px;
    margin: -26px auto 0;
    height: 50px;
}

.pricing h3 {
    font-weight: 800;
    margin: 0 0 15px;
    padding: 0 20px 15px;
    font-size: 25px;
    font-weight: 800;
    color: #112c54;
}

.pricing h4 {
    font-size: 36px;
    color: #112c54;
    font-weight: 600;
    font-family: 'Nunito Sans', sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing p {
    position: relative;
    color: #444444;
    font-size: 15px;
    line-height: 25px;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.pricing p:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 110px;
    height: 5px;
    background: #cdcdcd;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: #444444;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    margin-bottom: 16px;
    font-size: 17px;
    color: #112c54;
    font-weight: 700;
    text-align: left;
    border-radius: 20px;
}

.pricing ul li span {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 20px 0 0 20px;
    margin-right: 20px;
    width: 70%;
}

.pricing ul li span.as-required {
    width: 50%;
}

.silver-plan {
    background-color: #fddfc2;
}

.silver-plan-color {
    color: #f9ac5f
}

.silver-plan-dark {
    background-color: #f9ac5f
}

.gold-plan {
    background-color: #f4ead3;
}

.gold-plan-color {
    color: #e2c98b
}

.gold-plan-dark {
    background-color: #e2c98b
}

.gold-plan-dark-bt {
    background: #be922a
}

.platinum-plan {
    background-color: #e5ecfb;
}

.platinum-plan-color {
    color: #baccf5
}

.platinum-plan-dark {
    background-color: #baccf5
}

.platinum-plan-dark-bt {
    background: #4c68a9
}

.pricing ul i {
    color: #112c54;
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 0 -20px -20px -20px;
    padding: 10px 15px 25px;
    text-align: center;
}

.pricing .btn-buy {
    display: inline-block;
    padding: 10px 35px 10px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 15px;
    font-weight: 400;
    font-weight: 800;
    transition: 0.3s;
    text-transform: uppercase;
    border: 0
}

.pricing .btn-buy:hover {
    background: #112c54;
}

.pricing .view-details button {
    background: transparent;
    border: 0;
    padding: 10px 0 0;
    font-size: 14px;
    font-weight: 800;
}

.pricing .view-details i {
    margin-left: 10px
}

.styled-select {
    border: 1px solid #cdcdcd;
    box-sizing: border-box;
    border-radius: 20px;
    width: 100%;
    overflow: hidden;
    position: relative;
    color: #112c54;
    font-weight: 700;
}

.styled-select,
.styled-select select {
    width: 100%;
}

select:focus {
    outline: none;
}

.styled-select select {
    height: 40px;
    padding: 10px 20px;
    background: transparent;
    border: none;
    /*hide default down arrow in webkit */
    -webkit-appearance: none;
    color: #112c54;
    font-weight: 700;
}

@-moz-document url-prefix() {
    .styled-select select {
        width: 110%;
    }
}

.fas.fa-chevron-down {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    width: auto;
    padding: 12px 0;
    color: #fd7d02;
}

select::-ms-expand {
    display: none;
}


/* hide default down arrow in IE10*/


/* hack to fall back in opera */

_:-o-prefocus,
.selector {
    .styled-select {
        background: none;
    }
}

.silver-plan-dropdown .dropdown-item.active,
.silver-plan-dropdown .dropdown-item:active {
    background: #f9ac5f
}

.gold-plan-dropdown .dropdown-item.active,
.gold-plan-dropdown .dropdown-item:active {
    background: #e2c98b
}

.platinum-plan-dropdown .dropdown-item.active,
.gold-plan-dropdown .dropdown-item:active {
    background: #baccf5
}

.pricing .featured h3 {
    color: #fff;
    background: #112c54;
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: #112c54;
    color: #fff;
}


/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

.faq .faq-list {
    padding: 0;
}

.faq .faq-list ul {
    padding: 0;
    list-style: none;
}

.faq .faq-list li+li {
    margin-top: 15px;
}

.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
}

.faq .faq-list a {
    display: block;
    position: relative;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 0 30px;
    outline: none;
}

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: #0e4282;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list a.collapsed {
    color: #343a40;
}

.faq .faq-list a.collapsed:hover {
    color: #112c54;
}

.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
    display: none;
}

@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }

    .nav-menu {
        margin-right: 5px;
    }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact .info {
    width: 100%;
    padding: 0 5%;
}

.contact .info i {
    font-size: 26px;
    color: #fff;
    float: left;
    width: 62px;
    height: 62px;
    background-image: linear-gradient(to right top, #ec6005, #ed6503, #ee6a02, #ee6f01, #ef7400);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
}

.contact .info h4 {
    padding: 0 0 0 80px;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #112c54;
}

.contact .info p {
    padding: 0 0 0 80px;
    margin-bottom: 0;
    font-size: 24px;
    color: #112c54;
    font-weight: 800;
    line-height: 24px;
}

.bottom-shadow,
.bottom-shadow2 {
    background: url(../img/bottom-shadow.png) no-repeat bottom center;
    background-size: 100% auto;
}

.bottom-shadow2 {
    background-size: auto
}

.form-div {
    border-right: 1px solid #112c54
}

.contact .info .email,
.contact .info .phone,
.contact .info .share {
    padding: 30px 20px 50px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i,
.contact .info .share:hover i {
    background: #112c54;
    color: #fff;
}

.contact .info .email a,
.contact .info .address a,
.contact .info .phone a {
    color: #112c54;
}

.contact .info .share a svg {
    width: 35px;
    height: 35px;
}

.contact .php-email-form {
    width: 100%;
}

.contact .php-email-form .form-group {
    padding-bottom: 8px;
}

.contact .php-email-form .validate {
    display: none;
    color: red;
    margin: 0 0 15px 0;
    font-weight: 400;
    font-size: 13px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .input-group-text {
    background: white;
    border: 1px solid #ef7500;
    border-right: 0;
    border-radius: 25px 0 0 25px;
    padding: .375rem 1.2rem .375rem 1.5rem
}

.contact .php-email-form .input-group>.custom-select:not(:last-child),
.contact .php-email-form .input-group>.form-control:not(:last-child) {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.contact .form-control {
    border: 1px solid #ef7500;
    border-left: 0;
}

.contact .php-email-form .input-group-text i {
    font-size: 20px;
    color: #ef7500
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 25px;
    box-shadow: none;
    font-size: 18px;
    font-weight: 600;
}

.contact .php-email-form input::-webkit-input-placeholder,
.contact .php-email-form textarea::-webkit-input-placeholder,
.form-box input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #112c54;
}

.contact .php-email-form input ::-moz-placeholder,
.form-box input::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #112c54;
}

.contact .php-email-form input:-ms-input-placeholder,
.form-box input:-ms-input-placeholder,
.contact .php-email-form textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #112c54;
}

.contact .php-email-form input:-moz-placeholder,
.contact .php-email-form textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #112c54;
}

.contact .php-email-form input[readonly]::-webkit-input-placeholder,
.form-box input[readonly]::-webkit-input-placeholder {
    color: grey;
    opacity: 0.4
}

.contact .php-email-form input[readonly]::-moz-placeholder,
.form-box input[readonly]::-moz-placeholder {
    color: grey;
    opacity: 0.4;
}

.contact .php-email-form input[readonly]:-ms-input-placeholder,
.form-box input[readonly]:-ms-input-placeholder {
    color: grey;
    opacity: 0.4;
}

.contact .php-email-form input {
    height: 50px;
}

.contact .php-email-form textarea {
    padding: 10px 12px;
    border-radius: 15px !important;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-left: 1px solid #ef7500;
}

.contact .php-email-form button[type="submit"] {
    background: #ef7500;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 15px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: #fd7d02;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media (max-width:768px) {

    .contact .info .email,
    .contact .info .phone {
        padding-left: 0;
        padding-right: 0;
    }

    .contact .info p {
        font-size: 20px;
    }

    .vbox-close {
        font-size: 40px;
        font-weight: 800;
    }

    .section-title {
        padding-bottom: 20px;
    }
}


/*--------------------------------------------------------------
# form
--------------------------------------------------------------*/

.otp-links {
    position: absolute;
    right: 0px;
    top: 0px;
    display: inline-block;
    z-index: 3;
}

.send-otp,
.resend-otp,
.verify-otp {
    background: #ef7500;
    border: 0;
    min-width: 120px;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    padding: 15px 20px;
    font-weight: 700;
    color: #fff;
    border-radius: 25px;
    display: inherit
}


/* .resend-otp-disable{background:#ccc; color:#eee; border:1px solid} */

.form-box .form-group {
    position: relative;
}

#activate_timer,
#activate_timer_forgot {
    font-size: 14px;
    color: #ef7500;
    top: auto;
    text-align: left;
    left: 21px;
    position: relative;
    ;
}

#timer,
#timer_forgot {
    font-weight: bold;
    color: #0a1b36;
    font-size: 15px;
}

.modal-backdrop.show {
    opacity: 0.94
}

.modal-backdrop {
    background: #0a1b36
}

.modal-header .close {
    font-size: 36px;
    color: #112c54;
    text-shadow: none;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 11px;
}

#modalLoginForm .modal-dialog {
    max-width: 417px;
}

#modalPrivacyPolicy .modal-dialog,
#modalTermsCondition .modal-dialog {
    max-width: 1000px;
}

.modal .modal-content {
    border-radius: 15px;
}

.modal-header {
    border-bottom: 0
}

.modal-header .section-title {
    padding-bottom: 0
}

.modal-header .section-title h2 {
    font-size: 22px;
    margin: 0
}

.register-link .section-title h2 {
    color: #ef7500;
}

.form-box .input-group>.custom-select:not(:last-child),
.form-box .input-group>.form-control:not(:last-child) {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
}

.form-box .form-control {
    border: 1px solid #ef7500;
    border-left: 0;
    border-radius: 25px;
}

.form-box .form-group .form-control {
    border-radius: 25px;
    padding: 0 20px;
    border: 1px solid #ef7500;
}

.form-box .form-group .form-control.required,
.form-box .input-group .form-control.required,
.php-email-form .input-group .form-control.error {
    border-color: red;
    background: #fad9d6
}

span.success,
span.err {
    font-size: 13px;
    color: green;
    width: 100%;
    text-align: left;
    font-weight: 600;
    display: block;
    padding-left: 20px;
    line-height: 19px;
}

span.err {
    color: red;
}

#id_invalid_login_err,
#id_invalid_forgot_err {
    text-align: center;
    margin-bottom: 10px;
    padding: 0;
    font-size: 14px;
}

.form-box .form-group span.required,
.form-box .input-group span.required,
.php-email-form .input-group span.error,
span.error_msg {
    font-size: 13px;
    color: red;
    width: 100%;
    text-align: left;
    font-weight: 600;
    display: block;
    padding-right: 0px;
    line-height: 19px;
    margin-top: 5px;
    padding-left: 55px;
}

span.error_msg_next {
    padding-left: 5px !important;
    font-size: 12px !important;
}

span.error_msg {
    font-size: 15px;
    padding-left: 50px
}

.form-box .form-group span.required {
    padding-left: 20px
}

.form-box .input-group-text {
    background: white;
    border: 1px solid #ef7500;
    border-right: 0;
    font-size: 19px;
    color: #ef7500;
    border-radius: 25px 0 0 25px;
    padding: .375rem 1.2rem .375rem 1.5rem
}

.form-box input {
    height: 50px;
    font-weight: 600;
    font-size: 17px;
}

.input-group-prepend {
    width: 55px
}

.form-box button[type="submit"],
.my_custobtn,
.register-btn {
    background: #ef7500;
    border: 0;
    padding: 0px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    height: 50px;
    line-height: 50px;
    max-width: 180px;
    margin: 0 auto;
}

.register-btn {
    background: #112c54
}

.forgot-text {
    color: #112c54;
    font-size: 16px;
    text-decoration: underline;
}

.term-n-privacy-text {
    font-size: 14px;
    color: #676767;
    font-weight: 800;
    line-height: normal;
}

.term-n-privacy-text a {
    color: #ef7500
}

.form-group .note {
    font-size: 12px;
}

.form-box .note {
    color: #112c54;
    font-size: 13px;
    padding-left: 20px;
    line-height: 16px;
}

.form-box .custom-control-label::before {
    width: 1.2rem;
    height: 1.2rem;
    border: #ef7602 solid 1px;
}

.custom-control-label::after {
    width: 1.2rem;
    height: 1.2rem
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: #ef7602;
    background-color: #ffffff;
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: none;
}

.modal {
    z-index: 9999;
}

.terms-checkbox {
    border: 1px solid #112c54;
    border-right: 0;
    border-left: 0;
    padding: 20px 0 20px 40px;
}

.terms-checkbox a {
    text-decoration: underline;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background: none;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #ef7500;
    font-size: 12px;
    padding: 2px 4px
}

.form-box .payment-method-check label {
    font-size: 20px;
    line-height: 20px;
    font-weight: 800;
    padding-left: 30px;
}

.auto-width-input {
    background: transparent;
    border: 0;
    border-radius: 0;
    line-height: normal;
    height: auto !important;
    width: auto;
    padding: 0;
    display: inline-block;
    overflow: visible;
}

.auto-width-input:focus {
    border: 0;
    outline: 0;
    box-shadow: none
}


/*--------------------------------------------------------------
# user registration
--------------------------------------------------------------*/

.user-register h3 {
    font-size: 20px;
    padding: 0 0 20px;
    font-weight: 700;
    color: #112c54;
}

ul.benefits-of-user-registeration {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

ul.benefits-of-user-registeration li {
    position: relative;
    position: relative;
    padding: 20px 0 20px 35px;
    border-bottom: 1px dashed #112c54
}

ul.benefits-of-user-registeration li:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f058";
    position: absolute;
    color: #ef7500;
    left: 0;
    font-size: 21px;
    top: 15px
}

ul.benefits-of-user-registeration li:last-child {
    border-bottom: 0
}

ul.benefits-of-user-registeration li h6 {
    font-weight: 800;
    color: #112c54
}

ul.benefits-of-user-registeration li p {
    font-size: 14px;
    color: #444444;
    line-height: 21px;
    margin-bottom: 0
}

.suggestion-box {
    background: rgba(255, 255, 255, 0.8);
    padding: 0px 15px;
    margin: 0 auto;
    width: 89%;
    border-top: 0;
    font-size: 14px;
    border-radius: 0 0 20px 20px;
}

.suggestion-box ul {
    margin: 0 0 0 20px;
    color: #ef7500;
    padding: 0 0 10px;
}

.suggestion-box ul li {
    cursor: pointer;
}

.suggestion-box ul li:hover {
    color: #092a53
}

.domain-box {
    position: relative;
    padding: 0 114px 0 20px;
}

.domain-name-url {
    position: absolute;
    right: 23px;
    top: 13px;
    color: #ef7500;
}


/*--------------------------------------------------------------
# payment history
--------------------------------------------------------------*/

.div_lc {
    overflow-x: scroll;
    max-width: 100%;
    display: block;
    white-space: nowrap;
}


/* Style the tab */

.tab {
    overflow: hidden;
    /* background-color: #f1f1f1; */
}


/* Style the buttons that are used to open the tab content */

.tab button {
    background-color: #112c54;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    border-radius: 10px 10px 0 0;
    color: #fff;
    margin-right: 5px;
}


/* Change background color of buttons on hover */

.tab button:hover {
    background-color: #ef7500;
}


/* Create an active/current tablink class */

.tab button.active {
    background-color: #ef7500;
}

table.dataTable thead {
    background: #768a9e;
    color: #fff
}

table.dataTable .toolbar {
    width: 100%;
    background: var(--secondary);
    border-radius: 10px;
}


/* Style the tab content */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

.table thead th,
table.dataTable {
    font-size: 0.9rem
}

.col-search-input {
    max-width: 100px;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    float: right;
    margin: 15px 0;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
    padding: 5px 10px;
}

.form-inline .dataTables_length label {
    align-items: baseline;
    justify-content: flex-start;
}

.form-inline .dataTables_filter label {
    align-items: baseline;
    justify-content: flex-end;
}

div.dataTables_wrapper div.dataTables_filter input {
    width: 90% !important
}

.table-bordered thead td,
.table-bordered thead th {
    border-bottom: 2px solid #112c54 !important
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
    background: #112c54
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination li a {
    color: #fff;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination li.paginate_button.active {
    background: #ef7500
}


/*--------------------------------------------------------------
# My profile
--------------------------------------------------------------*/


/* .personal-information { background-color: #ffffff; margin-bottom: 20px; border-radius: 15px; padding: 20px 15px; box-shadow: 0 4px 7px rgba(0,0,0,.10); }
.personal-information span{font-size: 16px; color:#112c54; font-weight: 700;}
.personal-information h2{font-size:20px; color:#ef7500; font-weight: 700; text-align: center;}
.personal-information ul{list-style: none; margin:20px 0 0 20px; padding:0 }
.personal-information ul li{position: relative; padding-left:40px; margin-bottom: 15px;}
.personal-information ul li strong{color:#112c54; font-size:16px; font-weight:700; }
.personal-information ul li i{position: absolute; color: #ef7500; left: 0px; font-size: 23px; top: 15px; } */

.personal-information {
    text-align: center;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 15px;
    padding: 20px 15px;
    box-shadow: 0 4px 7px rgba(0, 0, 0, .10);
}

.personal-information span {
    font-size: 16px;
    color: #112c54;
    color: #112c54;
    font-weight: 700;
}

.personal-information h2 {
    font-size: 20px;
    color: #ef7500;
    font-weight: 700;
    text-align: center;
}

.my-profile.styled-select {
    border-radius: 25px;
    padding: 0 20px;
    border: 1px solid #ef7500;
    background: #fff;
}

.my-profile-link .app-link-bt {
    width: 49%
}

.my-profile-link .app-link-bt img {
    width: 100% !important
}

.form-box.my-profile-form label {
    margin: 0;
    padding-left: 20px;
}

.my-profile select {
    padding: 0 30px 0 0
}

.addons-accordian .card .card-body.my-profile-view {
    background: white;
    padding: 1.75rem;
}

.my-profile-view p {
    border-bottom: 1px solid;
    position: relative;
    padding-left: 50px;
}

.my-profile-view p strong {
    color: #112c54;
}

.my-profile-view i {
    position: absolute;
    left: 0;
    font-size: 28px;
    top: 11px;
    color: #ef7500;
    width: 40px;
    text-align: center
}

.plan-box {
    background: #f4f4f4;
    border-radius: 10px;
    padding: 20px
}

.addons-accordian.my-profile .card .card-header {
    background: rgba(17, 44, 84, 0.8);
}

.addons-accordian.my-profile .card .card-header .btn-link {
    color: #fff;
    padding: 5px 20px;
    font-size: 18px
}

.addons-accordian.my-profile .card .card-header button:after {
    font-size: 30px;
    line-height: 30px;
    color: #fff
}

.multiselect-native-select {
    display: block;
    width: 100%
}

.multiselect-native-select .btn-group {
    width: 100%;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer-top-shadow {
    background: url(../img/footer-shadow.png) no-repeat top;
    background-size: 100% auto
}

#footer {
    padding: 0 0 30px 0;
    color: #fff;
    font-size: 14px;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
    margin-bottom: 15px;
    background: #010246;
    color: #fff;
    border-top: 4px solid #112c54;
    text-align: center;
    padding: 30px 20px;
}

#footer .footer-top .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: "Montserrat", sans-serif;
}

#footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
    background: #112c54;
    color: #fff;
    text-decoration: none;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: #61ebba;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    color: #4be8b0;
}

#footer .copyright {
    /* border-top: 1px solid #010479; */
    text-align: center;
    padding-top: 30px;
    font-size: 16px;
    color: #112c54;
    font-weight: 600;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #fff;
}

@media (max-width: 575px) {
    #footer .footer-top .footer-info {
        margin: -20px 0 30px 0;
    }

    .form-box .coupen-code input {
        font-size: 13px !important;
    }

    #hero .owl-item .slide1-caption span.error {
        font-size: 10px;
        font-weight: 700;
        line-height: 11px;
        width: 90%
    }

    .tab button {
        font-size: 12px;
        padding: 10px;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination {
        float: none;
        margin: 0 auto;
        text-align: center;
        display: block;
    }

    div.dataTables_wrapper div.dataTables_paginate ul.pagination li {
        display: inline-block;
    }

    .input-group-prepend {
        width: 35px;
    }

    .form-box .input-group-text {
        padding: .375rem .7rem .375rem .7rem;
    }

    .send-otp,
    .resend-otp {
        min-width: 107px;
        padding: 15px 7px;
    }
}

.send-otp-note {
    font-size: 14px;
    color: #092a53;
    line-height: 16px;
    font-weight: 700;
}

.send-otp-note em {
    font-style: normal;
    color: #ef7500
}

.heading-plan {
    background: #092a53;
    color: #fff;
}

.data-div {
    border: 1px solid;
    border-top: 0;
    padding: 0 10px;
    background: #fff;
    font-size: 15px;
}

.col-search-input {
    font-size: 11px
}

.data-div strong {
    color: #ef7500
}

.btn-secondary,
.form-box button,
.btn-primary {
    transition: all 330ms;
}


/* .btn-secondary:hover{background-color:#ef7500; border:1px solid #ef7500} */


/* .btn-secondary.focus, .btn-secondary:focus{background-color:#ef7500;} */


/* .btn-primary:hover{background-color:#092a53; border:1px solid #092a53} */

.btn-secondary:before,
.form-box:before {
    background-color: #ef7500;
    background-image: linear-gradient(to right, #ef7500 30%, #092a53 100%);
    position: absolute;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    color: #fff;
    background-color: #ef7500;
    border-color: #ef7500;
}

.btn-primary:before {
    background-color: #092a53;
    background-image: linear-gradient(to right, #092a53 30%, #092a53 100%);
    position: absolute;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.form-box button:hover,
.form-box button:focus,
.form-box button:active {
    color: #fff;
    background-color: #092a53;
    border-color: #092a53;
}


/*.error-message {
    display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
}*/


/*Tutorial page css starts here*/

.videos-grid .our-work-item {
    position: relative;
    margin-bottom: 80px;
}

.videos-grid .our-work-item iframe {
    height: 300px !important;
}

.videos-grid .red-patch {
    background-color: #112c54;
    padding: 20px 20px;
    color: #fff;
}

.videos-grid .red-patch h4 {
    font-size: 17px;
    text-align: center;
    margin-bottom: 0;
    text-transform: capitalize;
}

@media (min-width: 320px) and (max-width: 740px) {
    .videos-grid .our-work-item {
        margin-bottom: 50px;
    }

    .videos-grid .our-work-item iframe {
        height: 250px !important;
    }
}


/*Tutorial page css ends here*/

a.delete_catalog_image {
    position: absolute;
    right: -13px;
    top: -13px;
    line-height: 0;
    background: #fff;
    border-radius: 50%;
}

a.delete_catalog_image i {
    font-size: 28px;
}


/*  phase 3 CSS start*/

.nav-menu-vertical>ul>li {
    float: none
}

.nav-menu-vertical {
    width: 48px;
    height: 100vh;
    overflow: hidden;
    background-color: #112C54;
    transition: all 0.3s ease-in-out 0s;
    margin: 0;
    position: fixed;
    z-index: 2;
    left: 0;
    top: 80px;
}

#sidemenu.sidemenu-scrolled {
    top: 60px;
}

#mid_nav.sidemenu-scrolled {
    top: 60px;
}

#mid_center_nav.sidemenu-scrolled {
    top: 60px;
}

#mid_center_nav2.sidemenu-scrolled {
    top: 60px;
}

#main_content.main-content-scrolled {
    top: 60px;
}

#main_content_setting2 {
    background-color: transparent;
    transition: margin-left .5s;
    height: 100%;
    margin-left: 298px;
    width: -webkit-fill-available;
    width: -moz-available;
    top: 80px;
    position: fixed;
    z-index: 1;
}

#main_content_setting2.main-content-setting-scrolled {
    top: 60px;
}

#mid_center_nav2 {
    left: 48.4px !important;
}

.nav-menu-vertical a {
    padding: 1px 5px;
    color: white;
    font-size: 16px;
    font-weight: 400;
    display: flex;
    justify-content: start;
    align-items: center;
}

.nav-menu-vertical a svg {
    margin-right: 9px;
    width: 40px;
    height: 38px;
}

.nav-menu-vertical a:hover,
.nav-menu-vertical a.active:hover {
    background-color: #514F6E;
}

.nav-menu-vertical>ul>li>a:before {
    display: none;
}

.nav-menu-vertical:hover {
    width: 218px;
}

.nav-menu-vertical a:hover,
.nav-menu-vertical .active>a,
.nav-menu-vertical li:hover>a {
    color: #fff;
    text-decoration: none;
}

.menu-icon {
    width: 46px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 1px 2px 0px;
}

.menu-icon img {
    width: 28px;
}

.nav-menu-vertical {
    padding-top: 10px;
}

.vertical-submenu-2 {
    background: rgba(17, 44, 84, 0.3);
    height: 100vh;
    min-width: 189px;
    padding-top: 70px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
    margin: 0;
    position: fixed;
    z-index: 1;
    left: 48px;
    top: 80px;
}

.vertical-submenu-2 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/* .vertical-submenu-2 ul li {
    padding: 15px 0;
    min-height: 60px;
} */

.vertical-submenu-2 ul li a.active {
    min-height: 40px;
    background-color: #112C54;
    padding: 0 15px;
    width: 100%;
    display: inline-block;
    line-height: 35px;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
}

.vertical-submenu-2 ul li a.active {
    color: #FF8E00;
}

.vertical-submenu-2 ul li a {
    min-height: 40px;
    /* background-color: rgba(17, 44, 84, 0.2); */
    padding: 0 15px;
    width: 100%;
    display: inline-block;
    line-height: 35px;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.vertical-content {
    height: 100vh;
    width: 320px;
    padding-top: 0;
    overflow: hidden;
    background-color: #112C54;
    transition: all 0.3s ease-in-out 0s;
    margin: 0;
    position: fixed;
    z-index: 1;
    left: 237px;
    top: 80px;
}

.scrollable-content {
    overflow-y: scroll;
    height: 100%;
}


/* .scrollable-content::-webkit-scrollbar {
    display: none;
} */

.option-menu {
    background-color: #170F49;
    padding: 6px 5px;
}

.icon-bar {
    width: 20px;
    margin: 6px;
    cursor: pointer;
}

.ct-title {
    color: #FFFFFF;
    font-size: 19px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-left: 3px;
    margin-bottom: 0;
}

.action-icons {
    display: flex;
    justify-content: end;
    align-items: center;
    padding-left: 0;
}

.action-icons img {
    width: 34px;
    padding: 6px;
    cursor: pointer;
}

#main_content {
    background-color: transparent;
    transition: margin-left .5s;
    height: 100%;
    margin-left: 557px;
    width: -webkit-fill-available;
    width: -moz-available;
    top: 80px;
    position: fixed;
    /* z-index: 1; */
    z-index: 1;

}

.catalog-item {
    padding: 10px 10px;
    border-bottom: 1px solid #6F6C90;
    position: relative;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.catalog-item:hover {
    background-color: #514F6E;
}

.catalog-item.active {
    background-color: #514F6E !important;
}

.col-fixed-item {
    width: 92px;
}

.item-sets {
    position: relative;
    margin-top: 7px;
    height: 75px;
    left: 5px;
}

.img-circle {
    width: 38px;
    height: 38px;
    border-radius: 100%;
    border: 1px dashed #8597B1;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-circle img {
    width: 38px;
    height: 38px;
    border-radius: 100%;
}

.item-1,
.item-2,
.item-3,
.item-4 {
    position: absolute;
}

.item-1 {
    left: 16px;
    z-index: 2;
}

.item-2 {
    left: 45px;
    z-index: 1;
}

.item-3 {
    left: 16px;
    top: 28px;
    z-index: 2;
}

.item-4 {
    left: 45px;
    top: 28px;
    z-index: 1;
}

.catalog-item {
    min-height: 100px;
}

.catlog-title {
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    width: 178px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1em;
    min-height: 24px;
    word-break: break-word;
    margin-bottom: 2px;
    position: relative;
}

.catlog-count {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.active-item-add {
    background-color: #EFF0F6 !important;
}

.custom-input-control::placeholder {
    color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-input-control {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #112C54;
    background-color: #EFF0F6;
    outline: none;
}

.custom-input-control:focus {
    outline: none;
    /* border: none; */
    box-shadow: none;
}

.box-input input {
    width: 90%;
    margin-top: 12px;
}

.box-input {
    position: relative;
    padding-right: 2px;
}

.action-icons svg {
    width: 27px;
    height: 27px;
    margin-left: 6px;
    cursor: pointer;
    padding: 2px;
    color: #FFFFFF;
}

.action-icons svg:hover path {
    stroke: #FF8E00 !important;
}

.custom-save-btn {
    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #112C54;
    padding: 2px 15px;
}

.abs-position {
    position: absolute;
    top: 11px;
    right: 15px;
}

.custom-ct-tabs li {
    width: 100%;
    /* margin-bottom: 0!important; */
}

.custom-ct-tabs li a {
    border-radius: 0 !important;
}

.custom-ct-tabs .nav-item .nav-link {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
}

.custom-ct-tabs .nav-item .nav-link.link-active {
    background-color: #514F6E !important;
    border-radius: 0 !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #6F6C90;
}

.custom-ct-tabs .nav-item .nav-link {
    border-radius: 0 !important;
    width: 100%;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #6F6C90;
}

.custom-ct-tabs .nav-item .nav-link:hover {
    background-color: #514F6E !important;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid #6F6C90;
}

.edit-icon {
    position: absolute;
    right: 8%;
    top: 46%;
    transform: translateY(-50%);
}

.custom-edit-control::placeholder {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-edit-control {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #ffffff;
    background-color: #514F6E;
    outline: none;
}

.custom-edit-control:focus {
    outline: none;
    /* border: none; */
    box-shadow: none;
}

.catlog-title input {
    width: 84%;
}

.edit-icon img {
    width: 20px;
}

.edit-section img {
    width: 20px;
}

.position-relative {
    position: relative !important;
}

.custom-tranparent-btn {
    background-color: transparent !important;
    color: #FFFFFF !important;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid #FFFFFF;
    padding: 2px 15px;
}

.search-menu {
    background-color: #170F49;
    padding: 6px 5px;
}

.custom-search-control {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
    background-color: #514F6E;
    outline: none;
    border-radius: 30px;
    height: 36px;
    padding: 0 12px;
    width: 100%;
}

.custom-search-control2 {
    font-size: 14px;
}

.custom-search-control2::placeholder {
    font-size: 13px !important;
}

.custom-search-control::placeholder {
    color: #D9DBE9;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.icon-bar-back {
    width: 23px;
    margin: 6px;
    cursor: pointer;
}

.delete-menu {
    background-color: #170F49;
    padding: 6px 5px;
}

.inline-text {
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-check-label {
    color: #FFFFFF;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    cursor: pointer;
}

.custom-check-input {
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 9px;
    top: 4px;
    border: 2px solid #FF8E00;
    background-color: transparent;
    appearance: none;
    border-radius: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.custom-check-input:checked {
    background-color: #FF8E00;
    border-color: #FF8E00;
    top: 2.5px;
}

.custom-check-input:checked::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10" fill="none"><path d="M8.71251 1.21261C8.88745 1.0392 9.12361 0.941601 9.36993 0.940922C9.61625 0.940242 9.85294 1.03653 10.0288 1.20897C10.2047 1.38142 10.3057 1.61616 10.3099 1.86244C10.3141 2.10873 10.2212 2.34677 10.0513 2.52511L5.06126 8.76261C4.9755 8.85498 4.87199 8.92911 4.75693 8.98056C4.64186 9.03202 4.5176 9.05974 4.39158 9.06208C4.26555 9.06441 4.14035 9.04131 4.02346 8.99415C3.90657 8.94699 3.80039 8.87674 3.71126 8.78761L0.405014 5.48011C0.312905 5.39428 0.239028 5.29078 0.187788 5.17578C0.136548 5.06078 0.108995 4.93664 0.106774 4.81076C0.104553 4.68488 0.127709 4.55984 0.174861 4.44311C0.222012 4.32637 0.292193 4.22033 0.381216 4.13131C0.47024 4.04228 0.576282 3.9721 0.693017 3.92495C0.809752 3.8778 0.934789 3.85465 1.06067 3.85687C1.18655 3.85909 1.31069 3.88664 1.42569 3.93788C1.54069 3.98912 1.64419 4.063 1.73001 4.15511L4.34751 6.77136L8.68876 1.24011L8.71251 1.21261Z" fill="%23FFFFFF"/></svg>');
    display: block;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: -3px;
    left: 2px;
}

.custom-check {
    padding: 5px 26px 5px 26px;
}

.upload-label {
    color: #FFFFFF;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.upload-item {
    padding: 0;
    text-align: center;
    cursor: pointer;
    padding-bottom: 10px;
}

.upload-item img {
    width: 37px;
    margin-bottom: 5px;
}

.upload-item h5 {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.upload-new-product {
    width: 370px;
    background-color: #112C54;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 58px;
    left: 50%;
    transform: translateX(-50%);
    padding: 16px 0;
}

.content-section-tab {
    background-color: #112C54;
    height: 44.9px;
    /* display: flex;
  justify-content: start;
  align-items: center; */
}

.drp-items {
    /* flex: 0 0 11%;
  max-width: 11%; */
    text-align: center;
}

.drp-items span {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.custom-ct-tabs .nav-item .nav-link:hover .edit-icon {
    visibility: visible;
}

.custom-ct-tabs .nav-item .nav-link .edit-icon {
    visibility: hidden;
}

.drp-menu-item span {
    /* visibility: hidden; */
    display: none;
    color: #FFFFFF;
    font-size: 15px;
    margin-left: 5px;
}

.drp-menu-item:hover span {
    /* visibility: visible; */
    display: inline;
}

.drp-menu-item {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.drp-menu-item img {
    width: 23px;
}

.delete-icon {
    position: absolute;
    right: 8%;
    top: 46%;
    transform: translateY(-50%);
}

.hide-edit-icons {
    display: none !important;
}

.show-edit-checkbox {
    display: none;
}

.form-check-edit {
    margin-left: 36px;
    display: none;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
}

.content-section-tab2 {
    background-color: rgba(17, 44, 84, 0.6);
    height: 44.9px;
}

.nav-item {
    position: relative;
}

.add-desc {
    cursor: pointer;
    margin-right: 10px;
}

.add-desc:hover path {
    stroke: #FF8E00;
}

.desc-secn {
    padding: 0px 35px;
}

.content-default-canvas .modal-title-ct {
    font-size: 20px;
    color: #112C54;
    font-weight: 700;
    padding: 15px 10px 0px 0px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.btn-40 {
    height: 35px;
    font-size: 14px;
    padding: 3px 34px !important;
}

.area-form-control {
    border: 1px solid #D9DBE9;
    border-radius: 12px;
}

.gap-20 {
    padding: 0 40px;
}

.ct-title2 {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-left: 3px;
    margin-bottom: 0;
    width: 90%;
}

.gap-10 {
    padding: 0 31px;
}

.icon-bar-back2 {
    cursor: pointer;
    width: 26px;
}

.col-fixed-2 {
    width: 55px;
}

.content-default-lg-canvas2 {
    border-radius: 12px !important;
}

.content-default-lg-canvas2 {
    padding: 10px 10px;
}

.custom-ct-tabs label {
    width: 100%;
    cursor: pointer;
}

.custom-white-card {
    background-color: rgba(255, 255, 255, 0.75);
    border: 1px solid #fff;
    transition: background-color 0.2s ease;
    border-radius: 15px;
    padding: 5px 5px;
}

.custom-card-title {
    color: #112C54;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
}

.custom-card-desc {
    color: #112C54;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
}

.custom-card-item {
    display: flex;
    justify-content: start;
    align-items: center;
}

.custom-card-item .catlog-image {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    object-fit: cover;
    flex: 0 0 80px;
}

.custom-card-content {
    padding: 0 0 0 15px;
}

#draggable-items li {
    padding: 7px 0px;
}

#draggable-items {
    list-style: none;
    padding-left: 0;
}

#draggable-items1 li {
    padding: 7px 0px;
}

#draggable-items1 {
    list-style: none;
    padding-left: 0;
}

.custom-card-input {
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 9px;
    top: 4px;
    border: 2px solid #112C54;
    background-color: transparent;
    appearance: none;
    border-radius: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.custom-card-input:checked {
    background-color: #112C54;
    border-color: #112C54;
    top: 2.5px;
}

.custom-card-input:checked::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10" fill="none"><path d="M8.71251 1.21261C8.88745 1.0392 9.12361 0.941601 9.36993 0.940922C9.61625 0.940242 9.85294 1.03653 10.0288 1.20897C10.2047 1.38142 10.3057 1.61616 10.3099 1.86244C10.3141 2.10873 10.2212 2.34677 10.0513 2.52511L5.06126 8.76261C4.9755 8.85498 4.87199 8.92911 4.75693 8.98056C4.64186 9.03202 4.5176 9.05974 4.39158 9.06208C4.26555 9.06441 4.14035 9.04131 4.02346 8.99415C3.90657 8.94699 3.80039 8.87674 3.71126 8.78761L0.405014 5.48011C0.312905 5.39428 0.239028 5.29078 0.187788 5.17578C0.136548 5.06078 0.108995 4.93664 0.106774 4.81076C0.104553 4.68488 0.127709 4.55984 0.174861 4.44311C0.222012 4.32637 0.292193 4.22033 0.381216 4.13131C0.47024 4.04228 0.576282 3.9721 0.693017 3.92495C0.809752 3.8778 0.934789 3.85465 1.06067 3.85687C1.18655 3.85909 1.31069 3.88664 1.42569 3.93788C1.54069 3.98912 1.64419 4.063 1.73001 4.15511L4.34751 6.77136L8.68876 1.24011L8.71251 1.21261Z" fill="%23FFFFFF"/></svg>');
    display: block;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: -3px;
    left: 2px;
}

.custom-card-checkbox {
    width: 35px;
}

.custom-card-checkbox .custom-card-input {
    margin-left: 7px;
    top: 0;
}

.droppable-item {
    cursor: grab !important;
}

li.draggable-item {
    cursor: pointer !important;
}

.ct-btn-delete {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
}

.custom-card-item .custom-card-checkbox,
.custom-card-item .ct-btn-delete {
    display: none;
}

.delete-icon {
    cursor: pointer;
}


/* Basic styling for the input and container */

.search-container {
    position: relative;
}

.custom-search-control {
    width: 100%;
    padding-right: 30px;
}

.custom-search-control2 {
    width: 100%;
    padding-right: 35px;
}

.clear-icon {
    font-size: 26px;
    color: #ccc;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.custom-search-control:not(:placeholder-shown)~.clear-icon {
    display: inline;
}

.clear-icon2 {
    font-size: 26px;
    color: #ccc;
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.custom-search-control:not(:placeholder-shown)~.clear-icon2 {
    display: inline;
}

.custom-dropdown .dropdown-toggle::after {
    display: none;
}

.custom-dropdown .dropdown-menu {
    min-width: 15rem;
    border: none;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    left: -70px !important;
    top: 7px !important;
    padding: 15px 0;
    z-index: 9999999999;
}


/* .custom-dropdown .dropdown-menu a:first-child {
    border-radius: 15px 15px 0 0;
}

.custom-dropdown .dropdown-menu a:last-child {
    border-radius: 0 0 15px 15px;
} */

.custom-dropdown .dropdown-menu a {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #170F49;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 10px 15px;
}

.custom-dropdown .dropdown-menu a img {
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

.add-edit-back {
    display: none;
}

.content-section-tab3 {
    background-color: #112C54;
    height: 89.2px;
    padding: 0 15px;
}

.custom-check-input-all {
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 9px;
    top: 4px;
    border: 2px solid #FFFFFF;
    background-color: transparent;
    appearance: none;
    border-radius: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.custom-check-input-all:checked {
    background-color: transparent;
    border-color: #FFFFFF;
    top: 3px;
}

.custom-check-input-all:checked::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10" fill="none"><path d="M8.71251 1.21261C8.88745 1.0392 9.12361 0.941601 9.36993 0.940922C9.61625 0.940242 9.85294 1.03653 10.0288 1.20897C10.2047 1.38142 10.3057 1.61616 10.3099 1.86244C10.3141 2.10873 10.2212 2.34677 10.0513 2.52511L5.06126 8.76261C4.9755 8.85498 4.87199 8.92911 4.75693 8.98056C4.64186 9.03202 4.5176 9.05974 4.39158 9.06208C4.26555 9.06441 4.14035 9.04131 4.02346 8.99415C3.90657 8.94699 3.80039 8.87674 3.71126 8.78761L0.405014 5.48011C0.312905 5.39428 0.239028 5.29078 0.187788 5.17578C0.136548 5.06078 0.108995 4.93664 0.106774 4.81076C0.104553 4.68488 0.127709 4.55984 0.174861 4.44311C0.222012 4.32637 0.292193 4.22033 0.381216 4.13131C0.47024 4.04228 0.576282 3.9721 0.693017 3.92495C0.809752 3.8778 0.934789 3.85465 1.06067 3.85687C1.18655 3.85909 1.31069 3.88664 1.42569 3.93788C1.54069 3.98912 1.64419 4.063 1.73001 4.15511L4.34751 6.77136L8.68876 1.24011L8.71251 1.21261Z" fill="%23FFFFFF"/></svg>');
    display: block;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: -3px;
    left: 2px;
}

.ct-form-check {
    padding-left: 28px;
}

.check-label2 {
    position: relative;
    top: -5px;
}

.reorder-back {
    display: none;
}

.reorder-block {
    padding: 0 25px;
}

.ct-btn-reorder {
    position: absolute;
    top: 50%;
    right: 0px;
    transform: translate(-50%, -50%);
    width: 28px;
}

.custom-card-item .custom-card-checkbox,
.custom-card-item .ct-btn-reorder {
    display: none;
}

.content-section-tab-popup {
    background-color: #170F49;
    height: 44.9px;
}

#product_popup_content.popup-content-scrolled {
    top: 60px;
}

#product_popup_content {
    background-color: transparent;
    transition: margin-left .5s;
    height: 100%;
    margin-left: 765px;
    width: -webkit-fill-available;
    width: -moz-available;
    top: 80px;
    position: fixed;
    /* z-index: 1; */
    background-color: rgba(133, 151, 177, 0.25);
    overflow: auto;
}

.product-popup-content {
    display: none;
}

.icon-bar-2 {
    /* width: 23px; */
    margin: 6px;
    cursor: pointer;
}

.info-pills .nav-link {
    color: #FFFFFF;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 15px;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.info-pills .nav-item {
    height: 100%;
}

.info-pills {
    padding-left: 40px;
}

.info-pills .nav-link.active {
    background-color: transparent;
    color: #EF7500;
}

.product-main-image {
    border-radius: 20px;
    width: 245px;
    height: 180px;
    object-fit: contain;
    padding: 10px;
}

.content-media {
    background-color: rgba(0, 0, 0, .11);
}

.uploaded-media {
    border-radius: 10px;
    width: 70px;
    height: 70px;
}

.uploaded-media img.product-media-img {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.uploaded-media video {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.uploaded-media2 {
    border-radius: 10px;
    width: 70px;
    height: 70px;
    border: 1px dashed #6F6C90;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.mdia-uploader {
    padding: 10px 25px;
}

.video-wrapper {
    position: relative;
    /* width: 100%;
    max-width: 600px;  */
    margin: auto;
    overflow: hidden;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .play-icon {
    opacity: 0.8;
}

.video-content:playing+.play-icon {
    display: none;
}


/* Hide default controls completely */

#myVideo::-webkit-media-controls {
    display: none !important;
}

#myVideo::-moz-media-controls {
    display: none !important;
}

.mdia-form {
    padding: 10px 40px 100px 40px;
    overflow: auto;
}

.tranparent-controls {
    color: #112C54 !important;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    outline: none;
    border: none;
    background-color: #EFF0F6 !important;
}

.content-media {
    border-radius: 0 0 12px 12px;
}

.white-card-group {
    background-color: #EFF0F6;
    border-radius: 5px;
    padding: 8px 2px;
    margin-bottom: 0;
    position: relative;
}

.tr-label {
    color: #112C54;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding-left: 13px;
    margin-bottom: 0;
}

input:focus+.active {
    background-color: transparent;
}

.custom-tb .tab-pane {
    padding: 0;
}

.icon-bar-3 {
    position: absolute;
    right: 10px;
    top: 33px;
    width: 35px;
    cursor: pointer;
}

.max-input {
    width: 90%;
}

.char-count {
    font-size: 13px;
    color: #112C54;
    text-align: right;
    margin-top: 5px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    width: 100%;
    padding-right: 10px;
    /* position: absolute;
    bottom: 4px;
    right: -38px; */
}

textarea.tranparent-controls {
    padding-bottom: 30px;
}

.custom-primary {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
}

.custom-field-card {
    background-color: #EFF0F6;
    border-radius: 5px;
    padding: 0 0;
    margin-bottom: 5px;
}

.tr-label2 {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0 !important;
    padding-left: 12px;
    width: 100%;
}

.tranparent-controls2 {
    color: #112C54 !important;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    outline: none;
    border: none;
    background-color: #EFF0F6 !important;
}

.tranparent-controls2::placeholder {
    color: #112C54 !important;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-group {
    padding: 10px 0;
    margin-bottom: 0;
}

.badge-label {
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-left: 8px;
    position: relative;
}

.badge-label img {
    width: 12px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.badge-label.private {
    color: #4945FF;
    background-color: #D9D8FF;
}

.badge-label.semi_private {
    color: #4945FF;
    background-color: #D9D8FF;
}

.badge-label.public {
    color: #328048;
    background-color: #C6F0C2;
}

.badge-label-default {
    border-radius: 20px;
    padding: 3px 10px;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    width: 95px;
    height: 37px;
    margin-right: 8px;
    color: #514F6E;
    background-color: rgba(0, 0, 0, .20);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.badge-label-default svg {
    width: 15px;
    height: 15px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.modal-title-med {
    color: #112C54;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
}

.modal-descn {
    color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.w-fix-2 {
    font-size: 15px !important;
}

.field-card {
    background-color: #EFF0F6;
    transition: background-color 0.2s ease;
    border-radius: 5px;
    padding: 9px 5px 15px 5px;
}

.custom-field-title {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.custom-field-title2 {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.icon-bar-4 {
    width: 29px;
    margin: 6px;
    cursor: pointer;
    margin-left: 28px;
}

.col-fixed-icon {
    width: 62px;
}

.col-fixed-actions {
    width: 100px;
}

.col-fixed-actions img {
    width: 28px;
    margin-right: 8px;
}

.list-drags {
    padding: 5px 25px;
}

.tr-label3 {
    color: #514F6E;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 5px !important;
    padding-left: 0;
    width: 100%;
}

.fm-select-control,
.fm-input-control {
    color: #000000;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    border-radius: 12px;
    border: 1px solid #D9DBE9;
    height: 40px;
}

.fm-select-control {
    -webkit-appearance: none;
    /* Remove default dropdown icon in WebKit-based browsers */
    -moz-appearance: none;
    /* Remove default dropdown icon in Firefox */
    appearance: none;
    /* Remove default dropdown icon in other browsers */
    padding-right: 30px;
    /* Space for custom icon */
    background-image: url('../img/phase3/sle.svg');
    /* Custom icon URL */
    background-repeat: no-repeat;
    background-position: right 10px center;
    /* Position the icon */
}

.w-gap-2 {
    padding: 10px 35px !important;
}

.highligher-text h4 {
    color: #112C54;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.highligher-text p {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 5px;
}

.btn-rounded-2 {
    border-radius: 29px;
}


/* Hide the radio button */

.badge-label-default input {
    display: none;
}


/* When the radio button is checked, style the parent label */

.badge-label-default.badge-def-private input:checked+svg path {
    stroke: #4945FF;
}

.badge-label-default.badge-def-private:has(input:checked) {
    background-color: #D9D8FF;
    color: #4945FF;
    border-color: #4945FF;
}

.badge-label-default.badge-def-public:has(input:checked) {
    background-color: #C6F0C2;
    color: #328048;
    border-color: #C6F0C2;
}

.badge-label-default.badge-def-public input:checked+svg path {
    stroke: #328048;
}

.badge-label-default.badge-def-private input:checked~span {
    color: #4945FF;
}

.badge-label-default.badge-def-public input:checked~span {
    color: #328048;
}

.ad-banner-text {
    color: #112C54;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.img-ref {
    cursor: pointer;
    width: 60px;
    height: 60px;
}

.custom-gray-card {
    background-color: #D9DBE9;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.list-gray-card {
    background-color: #F7F7FB;
    padding: 15px 15px;
}

.btn-at-secondary {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
}

.w-fix-3 {
    padding: 6px 27px !important;
}

.btn-rounded-3 {
    border-radius: 12px;
    font-size: 14px;
}

.dropdown-menu:after,
.dropdown-menu:before {
    bottom: 100%;
    right: 29%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    /* left: inherit !important; */
}

.option-dropdown .dropdown-menu {
    padding: 9px 5px !important;
}

.ad-banner-text2 {
    color: #000000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-left: 10px;
}

.list-white-card {
    background-color: #FFFFFF;
    padding: 15px 15px;
    cursor: pointer;
}

.list-white-card:hover {
    background-color: #F7F7FB;
    padding: 15px 15px;
}

.btn-rounded-4 {
    border-radius: 12px;
    font-size: 18px !important;
    padding: 6px 70px !important;
}

.list-grey-card {
    background-color: #F7F7FB;
    padding: 18px 14px;
    border-radius: 12px;
}

.gray-card-title {
    color: #112C54;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.gray-card-desc {
    color: #514F6E;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.btn-link-secondary {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
    cursor: pointer;
}

.btn-link-secondary:hover {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
    cursor: pointer;
}

.custom-gray-card2 {
    background-color: #D9DBE9;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.custom-gray-card2 svg {
    display: none;
    cursor: pointer;
}

.custom-gray-card2:hover svg {
    display: block !important;
    width: 23px;
    height: 23px;
    position: absolute;
}

.links-text {
    color: #3DCC77;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 0;
    width: 102px;
}

.option-dropdown {
    width: 30px;
}

.clickabel-links li a {
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 17px;
    width: 100%;
    cursor: pointer;
}

.clickabel-links li a:hover {
    color: #112C54;
}

.clickabel-links li {
    border-bottom: 1px solid #cccccc;
    line-height: 2;
}

.clickabel-links li:last-child {
    border: none;
}

.modal.fade.show {
    z-index: 1050;
}

.linkToCatalog-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
    /* Black backdrop with 50% opacity */
}

.content-default-canvas .modal-title-small2 {
    font-size: 20px;
    color: #112C54;
    font-weight: 700;
    padding: 5px 10px 0 0px;
    width: 100%;
}

.modal {
    padding-left: 0 !important;
}

.box-input2 {
    padding-top: 10px;
}

.catlog-title2 {
    color: #112C54;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1em;
    min-height: 24px;
    word-break: break-word;
    margin-bottom: 2px;
    position: relative;
}

.catlog-count2 {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-search-control3 {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #D9DBE9;
    background-color: #D9DBE9;
    outline: none;
    border-radius: 30px;
    height: 36px;
    padding: 0 12px;
    width: 100%;
}

.custom-search-control3:not(:placeholder-shown)~.clear-icon4 {
    display: inline;
}

.custom-search-control3 {
    width: 100%;
    padding-right: 38px;
    padding-left: 38px;
    height: 45px;
}

.custom-search-control3::placeholder {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.input-group-icon {
    position: absolute;
    left: 10px;
    top: 11px;
}

.search-container2 {
    position: relative;
}

.clear-icon4 {
    font-size: 26px;
    color: #514F6E;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none;
}

.btn-outline {
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 17px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
}

.btn-outline:hover {
    background-color: #514F6E;
    border-radius: 5px;
    font-size: 17px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
}

.btn-outline.active {
    background-color: #514F6E;
    color: #FFFFFF;
    border: 2px solid #514F6E;
}

.btn-rounded-3 {
    border-radius: 12px !important;
}

.grid-content {
    margin: 0;
    padding-left: 5px;
}

.grid-content h4 {
    font-size: 16px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.grid-content h5 {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

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

.layout-item {
    cursor: pointer;
    margin-bottom: 10px;
    padding: 10px 10px;
}

.checbox-selected {
    position: absolute;
    right: -15px;
    bottom: 5px;
}

.list-drags2 {
    padding: 5px 10px;
}

.layout-item input {
    display: none;
}

.layout-item {
    width: 100%;
    border: 2px solid #FFFFFF;
}

.layout-item:has(input:checked) {
    border: 2px solid #3DCC77
}

.checbox-selected {
    display: none;
}

.layout-item:has(input:checked) {
    border: 2px solid #3DCC77
}

.layout-item:has(input:checked) .checbox-selected {
    display: block !important;
}

.layout-item2 {
    cursor: pointer;
    border-bottom: 1px solid #D9DBE9;
}

.grid-content2 {
    margin: 0;
    padding-left: 5px;
}

.grid-content2 h4 {
    font-size: 16px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
}

.grid-content2 h5 {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.custom-dropdown2 .dropdown-menu {
    min-width: 25rem;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    left: -60px !important;
    top: 7px !important;
    padding: 15px 0;
    z-index: 9999999999;
    position: relative;
}

.custom-dropdown2 .dropdown-menu::after,
.custom-dropdown2 .dropdown-menu::before {
    display: none;
}

.custom-dropdown2 .dropdown-toggle::after {
    display: none;
}

.popup-title-heading {
    font-size: 17px;
    color: #170F49;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 25px;
}

.custom-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 25px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #112C54;
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.custom-switch span {
    display: block !important;
}

.checks-content {
    padding: 0 35px;
    margin-top: 0;
}

.grid-content3 {
    margin: 0;
    padding-left: 0;
    padding-bottom: 10px;
}

.grid-content3 h4 {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.grid-content3 h5 {
    font-size: 12px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.popup-title-heading span {
    display: inline;
}

.popup-title-heading img {
    margin-right: 3px;
    position: relative;
    margin-left: -9px;
}

.nav-pills-tab {
    display: flex;
    justify-items: start;
    align-items: center;
}

.nav-pills-tab .nav-link {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    background-color: #EFF0F6;
    border-radius: 5px;
}

.nav-pills-tab .nav-link.active {
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    background-color: #112C54;
    border-radius: 5px;
}

.nav-pills-tab .nav-link {
    cursor: pointer;
    padding: 5px 15px;
    border: 1px solid #fff;
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-pills-tab .nav-link.active {
    font-size: 14px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    background-color: #112C54;
    border-radius: 5px;
}

.tab-content.pills-tab .tab-pane {
    display: none;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 10px;
}

.tab-content.pills-tab .tab-pane.active {
    display: block;
}

.custom-badge-gray {
    cursor: pointer;
    padding: 5px 10px;
    border: none;
    text-transform: capitalize;
    border-radius: 5px;
    margin-right: 5px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 13px;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    background-color: #EFF0F6;
}

.custom-dropdown3 .dropdown-menu {
    min-width: 25rem;
    border: none;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    left: -120px !important;
    top: 7px !important;
    padding: 15px 0;
    z-index: 9999999999;
    position: relative;
}

.custom-dropdown3 .dropdown-menu::after,
.custom-dropdown3 .dropdown-menu::before {
    display: none;
}

.custom-dropdown3 .dropdown-toggle::after {
    display: none;
}

.dashed-border {
    border: 1px dashed #8597B1;
}

.cp-board h5 {
    font-size: 16px;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
}

.cp-board h6 {
    font-size: 16px;
    color: #8597B1;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.panel-board h4 {
    font-size: 14px;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-top: 8px;
}

.panel-board img {
    width: 40px;
}

.panel-board {
    text-align: center;
    margin-top: 20px;
}

.cp-board-panel {
    padding: 0 45px;
}

.cp-board {
    padding: 10px 10px;
}

.grid-content5 {
    margin: 0;
    padding-left: 0;
    padding-bottom: 10px;
}

.grid-content5 h4 {
    font-size: 16px;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
}

.grid-content5 h5 {
    font-size: 12px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

#flexi_bar.top-flexi-bar-scrolled {
    top: 60px;
}

.top-flexi-bar {
    margin-left: 47px;
    width: -webkit-fill-available;
    width: -moz-available;
    top: 80px;
    position: fixed;
    z-index: 1;
}

.blu-bg-bar {
    background-color: #112C54;
    transition: margin-left .5s;
    height: 100px;
    padding: 9px 15px;
}

.top-flex-content h2 {
    font-size: 20px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    width: 138px;
}

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

.badge-pr {
    font-size: 16px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    background-color: #EF7500;
    border-radius: 5px;
    min-width: 40px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-container4 {
    position: relative;
}

.custom-search-control4 {
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #514F6E;
    background-color: #170F49;
    outline: none;
    border-radius: 20px;
    height: 36px;
    padding: 0 40px;
    width: 100%;
    margin-left: 12px;
}

.custom-search-control4::placeholder {
    color: #6F6C90;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.custom-search-control4:not(:placeholder-shown)~.clear-icon4 {
    display: inline;
}

.input-group-icon4 {
    position: absolute;
    left: 23px;
    top: 8px;
}

.top-flex-tabs .nav-pills .nav-link {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1.5px solid #A0A3BD;
    border-radius: 20px;
    background-color: transparent;
    padding: 7px 15px
}

.top-flex-tabs .nav-pills .nav-link.active {
    color: #FFFFFF;
    border: 1.5px solid #FF8E00;
    background-color: #FF8E00;
}

.top-flex-tabs .nav-pills .nav-link:hover {
    color: #FF8E00;
    border: 1.5px solid #FF8E00;
    background-color: transparent;
}

.top-flex-tabs {
    display: flex;
    justify-content: start;
    align-items: center;
    padding-top: 8px;
}

.top-flex-tabs .nav-pills .nav-item {
    margin-right: 10px;
}

.top-flex-tabs .nav-pills .nav-link svg {
    width: 20px;
}

.top-flex-tabs .nav-pills .nav-link:hover svg {
    fill: #FF8E00;
    stroke: #FF8E00;
}

.top-flex-tabs .nav-pills .nav-link:hover svg path {
    stroke: #FF8E00;
    fill: #FF8E00;
}

.top-flex-tabs .nav-pills .nav-link.active svg path {
    stroke: #FfffFF;
    fill: #FFfffF;
}

.top-flex-tabs .nav-pills .nav-link.active:hover svg path {
    stroke: #FF8E00;
    fill: #FF8E00;
}

.order-grid {
    height: 100vh;
    background-color: #112C54;
}

.scrollbale-mn {
    height: 71vh;
    padding-bottom: 8rem;
    /* Full viewport height */
    overflow-y: scroll;
    /* Enable scrolling */
    scrollbar-width: none;
    /* Hide scrollbar in Firefox */
    -ms-overflow-style: none;
}

.scrollbale-mn::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar in Chrome, Safari, and newer browsers */
}

.col-fixed-menu {
    width: 250px;
    padding: 0;
}

.flex-pill-content {
    display: flex;
}

.content-1 {
    width: 100%;
}

.content-2 {
    width: 100%;
}

.content-3 {
    width: 100%;
}

.order-num {
    color: #EFF0F6;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.order-status {
    color: #EFF0F6;
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    background-color: #514F6E;
    border-radius: 20px;
    width: 85px;
    height: 19px;
    display: flex;
    justify-content: center;
    align-items: center;
    float: right;
}

.mob-num {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.order-history {
    color: #D9DBE9;
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.order-extension {
    color: #D9DBE9;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: absolute;
    right: 0;
}

.flex-vertical-menu .nav-pills .nav-item .nav-link.active {
    background-color: #170F49;
}

.flex-vertical-menu .nav-pills .nav-item .nav-link {
    padding: 15px 10px;
    border-radius: 0;
}

.order-num-large {
    color: #112C54;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: start;
    align-items: center;
    margin-bottom: 0;
}

.order-status2 {
    color: #EFF0F6;
    font-size: 11px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    background-color: #514F6E;
    border-radius: 20px;
    padding: 3px 15px;
    margin-left: 10px;
}

.flex-tab-content-div {
    padding: 15px 10px;
}

.wt-order-card {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 20px 5px;
    min-height: 135px;
}

.wt-order-card-title {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.wt-order-card-heading {
    color: #514F6E;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.wt-order-card-heading span {
    color: #271FE0;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 10px;
    cursor: pointer;
}

.custom-primary2 {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 5px 15px;
    height: 34px;
}

.custom-primary3 {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 13px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 5px 15px;
    height: 34px;
}

.custom-primary2 span img {
    width: 19px;
    position: relative;
    top: -2px;
}

.text-heading1 {
    font-size: 17px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.text-heading1 img {
    width: 25px;
}

.text-heading2 {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.text-heading2 span {
    font-size: 14px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.wt-order-card2 {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 20px 20px;
    min-height: 107px;
    position: relative;
}

.scrollable-content {
    height: 100%;
    overflow: auto;
}

.dropdown-menu.custom-drp-menu3 {
    padding: 5px 0;
    position: absolute;
    float: left;
    min-width: 14rem;
    margin: inherit !important;
    border-radius: 8px;
    border: 0;
    right: -11rem !important;
    left: inherit !important;
    top: 10px !important;
    box-shadow: 0px 8px 24px -4px #0000001F;
}

.dropdown-menu.custom-drp-menu3::after,
.dropdown-menu.custom-drp-menu3::before {
    display: none;
}

.custom-primary-4 {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-primary-5 {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 10px;
    top: 30px;
}

.drp-select {
    position: absolute;
    right: 10px;
    top: 20px;
}

.option-dropdown .dropdown-menu li a img {
    width: 30px !important;
    height: 24px !important;
    padding: 1px;
    margin-right: 10px;
}

.scrollable-export {
    height: 300px;
    overflow: auto;
}

.rounded-5 {
    border-radius: 12px;
    height: 45px;
}

.content-default-canvas .modal-title-large5 {
    font-size: 15px;
    color: #000000;
    font-weight: 500;
    padding: 5px 10px 25px 0px;
}

.tab-filter .nav-pills .nav-item {
    margin-right: 10px;
}

.tab-filter .nav-pills .nav-item .nav-link {
    font-size: 15px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    background-color: #EFF0F6;
    border: 1px solid #EFF0F6;
    border-radius: 12px;
}

.tab-filter .nav-pills .nav-item .nav-link.active {
    color: #FFFFFF;
    background-color: #112C54;
    border: 1px solid #112C54;
}

.search-containerinput {
    position: relative;
}

.input-text-group {
    position: absolute;
    left: 8px;
    top: 7px;
    font-size: 16px;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-input-control-2::placeholder {
    color: #CCCCCC;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-input-control-2 {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #112C54;
    background-color: #EFF0F6;
    outline: none;
    height: 40px;
    padding: 0 44px;
    border-radius: 12px;
    border-bottom: 0;
    width: 100%;
}

.custom-input-control-2:focus {
    outline: none;
    /* border: none; */
    box-shadow: none;
}

.to-text {
    text-align: center;
    font-size: 16px;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-top: 20px;
}

.order-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
}

.order-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.tbl-order tbody tr td:first-child {
    width: 85px;
}

.totl-text {
    color: #112C54;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding-right: 30px;
}

.totl-text span {
    color: #000000;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-left: 3rem;
}

.horizon-menu .dropdown-toggle::after {
    content: none;
}

.horizon-menu .nav-link {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 8px 15px;
    width: max-content;
    height: 40px;
}

.horizon-menu {
    flex-direction: row;
}

.horizon-menu .nav-item {
    margin-left: 8px;
}

.horizon-menu .dropdown-menu .dropdown-item img {
    width: 18px;
    margin-right: 5px;
}

.horizon-menu .dropdown-menu .dropdown-item {
    padding: 8px 10px;
}


/* .horizon-menu .dropdown-menu .dropdown-item:hover {
    background-color: #112C54;
    color: #ffffff;
} */

.custom-primary7 {
    background-color: #112C54;
    border-radius: 5px !important;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 6px 27px;
    height: 35px;
}

.custom-primary8 {
    background-color: #112C54;
    border-radius: 5px !important;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 6px 10px;
    height: 35px;
}

.custom-primary6 {
    border-radius: 5px !important;
    font-size: 14px;
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 6px 10px;
    height: 35px;
}

.status-tabs .nav-item .nav-link {
    color: #112C54;
    background-color: #FFFFFF;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 24px;
    width: max-content;
}

.status-tabs .nav-item {
    height: 70px;
    position: relative;
}

.status-tabs .nav-item.active {
    position: relative;
}

.status-tabs .nav-item.active::before {
    content: " ";
    width: 2px;
    height: 70px;
    background-color: #112C54;
    position: absolute;
    left: -13.5px;
    top: -52px;
}

.status-tabs .nav-item:first-child.active::before {
    content: none;
}

.status-tabs .nav-item .nav-link.active {
    color: #FFFFFF;
    background-color: #112C54;
}

.status-tabs {
    list-style: disc;
    padding-left: 25px;
}

.additional-text {
    top: 4px;
    color: #112C54;
    position: relative;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.result-label span {
    color: #112C54;
    font-weight: 700;
}

.result-label {
    color: #000000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.tab-uploaded {
    padding: 0 30px;
}

.custom-pg-control-2 {
    border: 1.4px solid #112C54;
    border-radius: 10px;
    height: 41px;
    font-weight: 400;
    font-size: 16px;
    color: #112C54;
    background-color: #112C5417;
}

.vr-menu ul li a.active {
    color: #FFFFFF;
    background-color: #170F49;
    /* padding: 0 25px 0 22px; */
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.vr-menu ul li a.default {
    color: #FF8E00;
    padding: 0 25px 0 15px;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.vr-menu ul li a:hover {
    color: #FFFFFF;
    background-color: #170F49;
}

.vr-menu ul li a {
    min-height: 40px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 0 25px 0 22px;
    width: 100%;
    display: inline-block;
    line-height: 35px;
    color: #fff;
    display: flex;
    font-size: 16px;
    justify-content: start;
    align-items: center;
    cursor: pointer;
}

.vr-menu {
    height: 100vh;
    width: 250px;
    padding-top: 5px;
    overflow: hidden;
    background-color: #112C54;
    transition: all 0.3s ease-in-out 0s;
    margin: 0;
    position: fixed;
    z-index: 1;
    left: 220px;
    top: 80px;
}

#main_content_setting {
    background-color: transparent;
    transition: margin-left .5s;
    height: 100%;
    margin-left: 470px;
    width: -webkit-fill-available;
    width: -moz-available;
    top: 80px;
    position: fixed;
    z-index: 1;
}

#main_content_setting.main-content-setting-scrolled {
    top: 60px;
}

.blue-top-bg {
    background-color: #112C54;
    height: 45px;
    border-left: 1px solid rgba(219, 231, 231, 0.2);
    padding: 0 20px;
}

.tg-title {
    color: #FFFFFF;
    font-size: 18px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-action {
    padding: 3px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    font-size: 15px
}

.text-tg-title {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.text-tg-sub-title {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.content-body {
    padding: 10px 20px 150px 20px;
    position: relative;
}

.link-btn {
    color: red;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    cursor: pointer;
}

.left-creative {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #ccc;
    width: 85px;
    height: 92px;
}

.center-creative {
    padding: 0;
}

.right-creative {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 89px;
    height: 92px;
    border-radius: 12px;
}

.right-creative img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.left-creative img {
    padding: 0;
}

.img-text {
    color: #000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    white-space: normal;
    word-wrap: break-word
}

.btn-rounded-6 {
    border-radius: 12px;
    font-size: 15px !important;
    padding: 6px 70px !important;
}

.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    /* Matches the select width */
}

.up-form-control {
    appearance: none;
    /* Removes native arrow */
    -webkit-appearance: none;
    /* For Safari */
    -moz-appearance: none;
    /* For Firefox */
    color: #000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-top: 25px;
    border: 1.5px solid #112C54;
    padding: 6px 30px 8px 10px;
    width: 100%;
    cursor: pointer;
    background-color: #fff;
    /* Adjust background */
    background-image: none;
    /* Ensures no native styling */
}

.custom-select-wrapper::after {
    content: '';
    position: absolute;
    top: 70%;
    right: 1px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23112C54"><path d="M7 10l5 5 5-5H7z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}

.forward-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-card-items2 {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 90%;
}

.page-card-items2 .page-card-item {
    flex: 0 0 20%;
    max-width: 100px;
    margin-right: 10px;
}

.section-icons {
    position: relative;
    margin-top: 10px;
}

#draggable-list2 {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 5px;
}

#draggable-list2 li {
    padding: 10px;
    margin: 5px 0;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.option-dropdown .dropdown-menu {
    padding: 5px 0;
    position: absolute;
    float: left;
    min-width: 14rem;
    margin: inherit !important;
    border-radius: 8px;
    border: 0;
    right: -10rem !important;
    left: inherit !important;
    top: 10px !important;
    box-shadow: 0px 8px 24px -4px #0000001F;
}

.uploader-content {
    background-color: #112C54;
    width: 400px;
    height: 90px;
    border-radius: 15px 15px 0 0;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 10px 10px 10px;
}

.upload-content-title {
    color: #FFFFFF;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
}

.upload-content-blog img {
    width: 30px;
    margin-bottom: 10px;
}

.upload-content-blog {
    cursor: pointer;
}

.page-card-title5 {
    color: #112C54;
    font-weight: 800;
    font-size: 14px;
    align-items: center;
    margin-bottom: 0;
    padding: 0 11px 0 0px;
}

.pr-image {
    width: 100px;
    height: 80px;
    object-fit: cover;
}

.page-controls2 {
    font-size: 16px;
    color: #000;
    border-radius: 8px;
    padding: 5px 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

.page-labels2 {
    font-size: 16px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.btn-cancl {
    color: #000000;
    background-color: #CCCDCF;
    border-color: #CCCDCF;
}

.btn-30 {
    height: 46px;
    border-radius: 50px !important;
    padding: 5px 40px;
}

.content-default-canvas .modal-title-smal5 {
    font-size: 20px;
    color: #112C54;
    padding: 5px 10px 0 0px;
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.content-default-canvas .modal-title-desc5 {
    font-size: 16px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.btn-outline-submit {
    background-color: #514F6E;
    border-radius: 5px;
    font-size: 17px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
}

.btn-outline-submit:hover {
    background-color: #514F6E;
    border-radius: 5px;
    font-size: 17px;
    color: #FFFFFF;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
}

.ct-fm-control {
    font-size: 16px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 2px solid #514F6E;
    border-radius: 12px;
    height: 42px;
}

.vertical-submenu-3 {
    background: rgba(17, 44, 84, 0.3);
    height: 100vh;
    min-width: 172px;
    padding-top: 70px;
    overflow: hidden;
    transition: all 0.3s ease-in-out 0s;
    margin: 0;
    position: fixed;
    z-index: 1;
    left: 48px;
    top: 80px;
}

.vertical-submenu-3 ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.vertical-submenu-3 ul li a.active {
    min-height: 40px;
    background-color: #112C54;
    width: 100%;
    display: inline-block;
    line-height: 35px;
    font-size: 15px;
    display: flex;
    justify-content: start;
    align-items: center;
    color: #FFFFFF;
}

.vertical-submenu-3 ul li a {
    min-height: 40px;
    padding: 0 10px;
    width: 100%;
    display: inline-block;
    line-height: 35px;
    color: #fff;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 15px;
    cursor: pointer;
    font-family: 'Inter-Light';
    font-weight: 300;
    letter-spacing: 0.3px;
}

.theme-selections {
    display: flex;
    justify-content: start;
    align-items: center;
}

.theme-selections .theme-selection-item {
    width: 28px;
    height: 28px;
    border-radius: 100%;
    margin-right: 10px;
    border: 1px solid #CFCFCF;
}

.hr-dashed {
    border-top: 1px dashed #A0A3BD;
}

.theme-selection-card {
    width: 100%;
    padding: 10px 15px 0 15px;
    border: 1px solid #6F6C90;
    border-radius: 14px;
    cursor: pointer;
    margin-bottom: 15px;
}

.theme-selection-card input {
    display: none;
}

.theme-selection-card:has(input:checked) {
    border: 2px solid #C38135;
}

.initial-card {
    padding: 10px 10px;
    border: 1px solid #A0A3BD;
    border-radius: 20px;
}

.theme-title {
    font-size: 19px;
    color: #111E48;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    /* margin-bottom: 0; */
}

.logo-text {
    font-size: 16px;
    color: #8E8E93;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}


/* .dashed-border-1 {
    border-top: 2px dashed #000000;
    width: 60px;
    margin: 5px 5px 5px 2px;
} */

.initial-gray-card {
    padding: 0;
    background-color: #F2F2F7;
    border-radius: 0;
    margin-bottom: 8px;
}

.badge-button {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    height: 30px;
}

.theme-card {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 5px;
}

.theme-card img {
    width: 50px;
}

.theme-selections-small {
    display: flex;
    justify-content: start;
    align-items: center;
}

.theme-selections-small .theme-selection-item-small {
    width: 18px;
    height: 18px;
    border-radius: 100%;
    margin-right: 5px;
    border: 1px solid #CFCFCF;
}

.badge-btn-primary {
    background-color: #AEAEB2;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.badge-btn-primary img {
    width: 30px;
}

.badge-button-next {
    background-color: #AEAEB2;
    color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    height: 50px;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
}

.theme-selection-card:has(input:checked) .badge-button-next {
    background-color: #111110;
    color: #FFFFFF;
}

.theme-selection-card:has(input:checked) .badge-btn-primary {
    background-color: #111E48;
}

.theme-management {
    padding: 0 20px;
}


/* Backdrop styling */

.custom-popup {
    display: none;
    position: fixed;
    bottom: 0;
    /* Position it at the bottom of the screen */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    z-index: 1000;
    justify-content: center;
    /* Align the content to the bottom */
    align-items: flex-end;
    /* Adjust to allow for smooth transition */
    animation: fadeInFromBottom 0.5s ease-out;
}


/* Popup content styling */

.popup-content {
    background-color: #fff;
    padding: 20px 25px 10px 25px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 0;
    opacity: 0;
    transform: translateY(100px);
    animation: slideUp 0.5s forwards ease-out;
    width: 500px;
}


/* Fade and slide animation */

@keyframes fadeInFromBottom {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-tg-title2 {
    color: #514F6E;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.popup-list-content {
    padding: 0;
}

.popup-list-content li a {
    line-height: 3.2;
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    display: block;
    position: relative;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    text-decoration: none;
}

.popup-list-content li:last-child a {
    border-bottom: 1px solid #FFFFFF;
}

.popup-list-content li a span {
    position: absolute;
    right: 0;
    top: 0;
}

.popup-list-content li a span img {
    width: 35px;
}

.tg-title img {
    width: 22px;
    margin-right: 5px;
    position: relative;
    top: -2px;
    cursor: pointer;
}

.form-card {
    background-color: #ffffff;
    padding: 10px 16px 1px 16px;
    border-radius: 12px;
}

.form-control-no-border {
    font-size: 17px;
    color: #112C54;
    border-radius: 8px;
    padding: 3px 12px 5px 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border: none;
    outline: none;
}

.form-control-no-border::placeholder {
    font-size: 17px;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.page-labels4 {
    font-size: 14px;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    display: block;
    margin-bottom: 0px;
}


/* Backdrop styling */

.custom-popup-save {
    border-radius: 14px 14px 0 0;
    width: 400px;
    height: 100px;
    background-color: #112C54;
    display: flex;
    justify-content: center;
    align-items: top;
}

.h-fixed {
    height: 40px;
}

.content-body-small {
    padding: 10px 20px 100px 20px;
    position: relative;
}

.pcr-app {
    z-index: 99999999999999;
}

.colr-picker-box {
    position: fixed;
    right: 15px;
    bottom: 0;
    background-color: rgba(17, 44, 84, 0.2);
    border-radius: 20px;
    padding: 10px 10px;
    height: 350px;
    width: 135px;
    z-index: 99;
}

.colr-picker-box-after {
    display: none;
    position: fixed;
    right: 15px;
    bottom: 0;
    background-color: rgba(17, 44, 84, 0.2);
    border-radius: 20px;
    padding: 10px 10px;
    height: 350px;
    width: 220px;
    z-index: 99;
}

.picker-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 5px;
}

.d-flex-centralize {
    display: flex;
    justify-content: center;
    align-items: center;
}

.d-flex-centralize-2 {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-picker-text h4 {
    font-size: 12px;
    text-align: center;
    color: #000000;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-top: 5px;
}

.color-picker-text a {
    font-size: 17px;
    text-align: center;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-top: 5px;
    cursor: pointer;
}

.color-picker-text a img {
    width: 24px;
    cursor: pointer;
    position: relative;
    top: -2px;
}

.picker-box-single {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 5px;
}

#sliderPicker {
    display: flex;
    flex-direction: column;
    /* Stack sliders vertically */
    gap: 10px;
    /* Add spacing between sliders */
    margin: 20px auto;
}

.list-drags2 {
    padding: 5px 30px;
}

.border-line-1 {
    border-bottom: 1px dashed #A0A3BD;
}

.text-tg-desc2 {
    color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.text-tg-title3 {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
}

.list-section {
    padding: 0px 30px;
}

.gp-2 {
    padding: 15px 0px;
}

.edit-pg-item {
    width: 24px;
    cursor: pointer;
}

.form-control-area {
    color: #170F49;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    width: 100%;
    height: 320px;
    background-color: rgba(17, 44, 84, 0.15);
    border: 0;
    outline: none;
    padding: 15px 15px;
    resize: none;
    /* Prevent resizing */
    overflow-y: auto;
    /* Enable vertical scrolling */
}


/* Customize scrollbar for WebKit browsers */

.form-control-area::-webkit-scrollbar {
    width: 10px;
}

.form-control-area::-webkit-scrollbar-thumb {
    background-color: #112C54;
    /* Scrollbar thumb color */
    border-radius: 10px;
    /* Ensure rounded corners */
    border: 2px solid transparent;
    /* Space around the thumb */
    background-clip: padding-box;
    /* Clip the thumb for a clean rounded effect */
}

.form-control-area::-webkit-scrollbar-track {
    background-color: rgba(17, 44, 84, 0.05);
    /* Scrollbar track color */
    border-radius: 10px;
    /* Ensure rounded track */
}


/* Customize scrollbar for Firefox */

.form-control-area {
    scrollbar-width: thin;
    /* Make scrollbar thinner */
    scrollbar-color: #112C54 rgba(17, 44, 84, 0.05);
    /* Set thumb and track colors */
}


/* Optional hover effect for WebKit scrollbar thumb */

.form-control-area::-webkit-scrollbar-thumb:hover {
    background-color: #0A223E;
    /* Darker thumb color on hover */
}

.fm-card-box {
    background-color: #EFF0F6;
    border-radius: 5px;
    padding: 12px 12px;
    position: relative;
}

.fm-card-box h5 {
    color: #112C54;
    font-size: 13px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 3px;
}

.fm-card-box input {
    color: #112C54;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    background-color: transparent;
    border: none;
    padding: 0 0;
    outline: none;
}

.fm-card-box img {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
}

.btn-report {
    background-color: #514F6E;
    border-radius: 20px;
    font-size: 14px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    padding: 8px 20px;
    font-weight: 500;
    border: 1px solid #514F6E;
}

.btn-report:hover {
    background-color: #514F6E;
    color: #ffffff;
    border: 1px solid #514F6E;
}

.gap-line {
    padding: 0 30px;
}

.ct-title-1 {
    color: #112C54;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
}

.ct-desc-1 {
    color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.fm-card-box2 {
    background-color: #EFF0F6;
    border-radius: 5px;
    padding: 15px 15px;
    position: relative;
}

.badge-gp {
    padding: 5px 10px
}

.gp-btn2 {
    padding: 4px 11px 4px 16px;
}

.label-text {
    color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.w-gap-3 {
    padding: 5px 35px !important;
}

.setting-pills .nav-link {
    font-size: 15px;
    color: #514F6E;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    background-color: transparent;
    border-radius: 36px;
    padding: 3px 20px;
}

.setting-pills .nav-link.active {
    color: #FFFFFF;
    background-color: #EF7500;
}

.setting-pills {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.setting-title-1 {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
}

.setting-desc-1 {
    color: #514F6E;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    margin-bottom: 3px;
}

.btn-square {
    color: #fff;
    background-color: #092a53;
    border-color: #092a53;
    font-size: 12px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.btn-square:hover {
    color: #FFFFFF;
    background-color: #EF7500;
    border-color: #EF7500;
}

.tringle-btn {
    border-radius: 10px;
    padding: 5px 15px
}

.setting-tabs .tab-pane {
    padding: 5px 20px;
}

.btn-selected {
    color: #FFFFFF;
    background-color: #D9DBE9;
    border-color: #D9DBE9;
}

.ct-mobile-number {
    color: #514F6E;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.btn-allow {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
}

.btn-allow:hover {
    color: #FFFFFF;
    background-color: #514F6E;
    border-color: #514F6E;
}

.setting-icons img {
    width: 36px;
    margin: 3px;
    cursor: pointer;
}

.fm-card-box-list {
    background-color: #EFF0F6;
    border-radius: 5px;
    padding: 6px 15px;
    position: relative;
}

.ct-mobile-number2 {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 0;
}

.btn-allow-all {
    color: #fff;
    background-color: #112C54;
    border-color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 3px 15px;
    margin: 5px;
    border-radius: 20px;
}

.btn-allow-all:hover {
    color: #FFFFFF;
    background-color: #112C54;
    border-color: #112C54;
}

.icon-bar-back6 {
    width: 41px;
    cursor: pointer;
}

.selected-color-cls {
    width: 104px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    font-size: 17px;
    font-weight: 500;
}


/* Backdrop styling */

.timer-popup {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999999999;
    justify-content: center;
    align-items: center;
    animation: fadeInFromBottom 0.5s ease-out;
}

.timer-popup-content {
    background-color: #fff;
    padding: 20px 25px 10px 25px;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.5s forwards ease-out;
    width: 350px;
    margin-top: -4rem;
}

.timer-text-1 {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 3px;
}

.col-btn {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    width: 100%;
    position: relative;
    transition: background-color 0.1s ease;
}

.col-btn:hover {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
}

.col-btn:active {
    background-color: #403e5a;
    /* Slightly darker shade on click */
}

.col-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    /* Start with 0% width */
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Shade overlay color */
    transition: width 0.1s ease;
    z-index: 1;
    /* Ensure it appears above the button */
}

.col-btn:active::after {
    width: 100%;
    /* Expand to full width */
    transition: width 0.1s ease;
}

.timer-gap {
    padding: 0px 30px 0px 0px;
}

.timer-display input {
    font-size: 60px;
    text-align: center;
    width: 160px;
    padding: 0px 0px 0px 0px;
    border: none;
    border-radius: 0;
    color: #333;
    outline: none;
    cursor: text;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    height: 72px;
    border-bottom: 1px solid #ccc;
}

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

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

.timer-border {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 15px;
}

.tm-text-1,
.tm-text-2 {
    color: #333;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-left: 20px;
    margin-right: 12px;
}

.tm-text {
    padding: 0;
}

.filter-label-1 {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    padding-left: 5px;
    margin-top: 10px;
}

.filter-select-control {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #EFF0F6;
    background-color: #EFF0F6;
    height: 40px;
}

.filter-control-label {
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    padding-left: 5px;
    margin-top: 10px;
}

.filter-input-control {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-input-control-3::placeholder {
    color: #CCCCCC;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.custom-input-control-3 {
    color: #514F6E;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 2px solid #112C54;
    background-color: #EFF0F6;
    outline: none;
    height: 40px;
    padding: 0 15px;
    border-radius: 12px;
    border-bottom: 0;
    width: 100%;
}

.custom-input-control-3:focus {
    outline: none;
    /* border: none; */
    box-shadow: none;
}

.mt-gap {
    margin-top: 10px;
}

.form-filter-check input {
    width: 18px;
    height: 18px;
    position: relative;
    margin-right: 9px;
    top: 4px;
    border: 2px solid #112C54;
    background-color: transparent;
    appearance: none;
    border-radius: 2px;
    transition: background-color 0.3s, border-color 0.3s;
    cursor: pointer;
}

.form-filter-check input:checked {
    background-color: #112C54;
    border-color: #112C54;
    top: 2.5px;
}

.form-filter-check input:checked::before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="10" viewBox="0 0 11 10" fill="none"><path d="M8.71251 1.21261C8.88745 1.0392 9.12361 0.941601 9.36993 0.940922C9.61625 0.940242 9.85294 1.03653 10.0288 1.20897C10.2047 1.38142 10.3057 1.61616 10.3099 1.86244C10.3141 2.10873 10.2212 2.34677 10.0513 2.52511L5.06126 8.76261C4.9755 8.85498 4.87199 8.92911 4.75693 8.98056C4.64186 9.03202 4.5176 9.05974 4.39158 9.06208C4.26555 9.06441 4.14035 9.04131 4.02346 8.99415C3.90657 8.94699 3.80039 8.87674 3.71126 8.78761L0.405014 5.48011C0.312905 5.39428 0.239028 5.29078 0.187788 5.17578C0.136548 5.06078 0.108995 4.93664 0.106774 4.81076C0.104553 4.68488 0.127709 4.55984 0.174861 4.44311C0.222012 4.32637 0.292193 4.22033 0.381216 4.13131C0.47024 4.04228 0.576282 3.9721 0.693017 3.92495C0.809752 3.8778 0.934789 3.85465 1.06067 3.85687C1.18655 3.85909 1.31069 3.88664 1.42569 3.93788C1.54069 3.98912 1.64419 4.063 1.73001 4.15511L4.34751 6.77136L8.68876 1.24011L8.71251 1.21261Z" fill="%23FFFFFF"/></svg>');
    display: block;
    color: #fff;
    font-size: 14px;
    position: relative;
    top: -3px;
    left: 2px;
}

.btn-rounded-12 {
    border-radius: 8px !important;
}

.btn-reset-secondary {
    color: #fff;
    background-color: #112C54;
    border-color: #112C54;
    cursor: pointer;
}

.btn-reset-secondary:hover {
    color: #fff;
    background-color: #112C54;
    border-color: #112C54;
    cursor: pointer;
}

.btn-rounded-4 {
    border-radius: 8px !important;
}


/* multi select css*/


/* Container styling */

.multi-select-container {
    position: relative;
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #EFF0F6;
    background-color: #EFF0F6;
    height: 40px;
    border-radius: 4px;
}


/* Selected options box */

.selected-options {
    padding: 8px 15px 10px 15px;
    cursor: pointer;
    user-select: none;
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #EFF0F6;
    background-color: #EFF0F6;
    height: 40px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* Options list */

.options-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    z-index: 1000;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
}


/* Option styling */

.options-list label {
    display: block;
    padding: 8px 15px 10px 15px;
    cursor: pointer;
    color: #112C54;
    font-size: 15px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #EFF0F6;
    background-color: #EFF0F6;
    height: 40px;
    border-radius: 0;
    margin-bottom: 0;
}

.options-list label:hover {
    background-color: #112C54;
    color: #ffffff;
}

.options-list label.selected {
    background-color: #112C54;
    color: #ffffff;
}


/* Checkbox visibility */

.options-list input[type="checkbox"] {
    margin-right: 10px;
    display: none;
}

#drop-zone {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: start;
    color: white;
    padding-top: 12rem;
    font-size: 20px;
    border: 2px dashed white;
    z-index: 999999;
}

#drop-zone.hidden {
    display: none;
}

.multi-file-block ul li {
    display: flex;
    justify-content: start;
    align-items: center;
    line-height: 2;
    position: relative;
}

.multi-file-block ul li .file-title-1 {
    color: #000000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.multi-file-block ul li .img-file-icon {
    width: 26px;
    margin-right: 15px;
}

.multi-file-block ul li .img-file-icon-arrow {
    width: 30px;
    margin-right: 10px;
    position: absolute;
    right: 0;
    top: 4px;
}

.select-items-product {
    width: 100%;
}

.items-files-row {
    margin-bottom: 10px;
    padding-right: 40px;
}

.result-label3 {
    color: #000000;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-top: 7px;
}

.result-label3 span {
    color: #112C54;
    font-weight: 700;
}

.modal-title-small7 {
    font-size: 22px;
    color: #112C54;
    font-weight: 700;
    padding: 5px 10px 0 0px;
    width: 100%;
}

.modal-title-small8 {
    font-size: 19px;
    color: #112C54;
    font-weight: 700;
    padding: 5px 10px 0 0px;
    width: 100%;
}

.result-label-small {
    color: #000000;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
}

.result-label9 {
    color: #000000;
    font-size: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 0;
}

.prod_new-image {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
}

.preview-section {
    border-left: 1px dashed #ccc;
    padding-left: 40px;
}

.btn-rounded-33 {
    font-size: 16px;
    border-radius: 12px !important;
}

.domain-card {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding: 20px 5px;
    min-height: 135px;
}

.domain-card-title {
    color: #112C54;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 11px;
}

.domain-card-heading {
    color: #112C54;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

.domain-card-heading span.link-text-domain {
    color: #271FE0;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    text-decoration: underline;
    margin-left: 0px;
    cursor: pointer;
}

.custom-change {
    background-color: #112C54;
    border-radius: 5px !important;
    font-size: 17px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 6px 27px;
    height: 43px;
}

.custom-change:hover {
    background-color: #112C54;
    color: #ffffff;
    border: 1px solid #112C54;
}

.domain-card-icon {
    width: 30px;
    position: relative;
    top: -2px;
}

.domain-control {
    color: #112C54;
    font-size: 19px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #112C54;
    border-radius: 0;
    padding: 7px 7px 1px 0px;
}

.domain-control::placeholder {
    font-size: 19px;
}

.domain-label-ct {
    color: #112C54;
    font-size: 20px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.domain-label-ct2 {
    color: #112C54;
    font-size: 28px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.dm-label {
    color: #112C54;
    font-size: 22px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}

.domain-main-modal {
    font-size: 20px;
    color: #112C54;
    font-weight: 700;
    padding: 5px 10px 19px 0px;
    width: 100%;
    /* border-bottom: 1.3px solid #D4D4D4; */
}

.domain-main-modal svg {
    width: 30px;
}

.info-label {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    margin-left: 67px;
    margin-top: -20px;
}

.info-label2 {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    margin-left: 0;
    margin-top: -20px;
}

.info-label3 {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    margin-left: 6px;
    margin-top: -20px;
}

.btn-continue {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 20px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 8px 35px;
    border: 1px solid #112C54;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-continue img {
    width: 25px;
    margin-left: 14px;
}

.btn-continue:hover {
    background-color: #112C54;
    color: #ffffff;
    border: 1px solid #112C54;
}

.bd-right {
    border-right: 2px solid #ccc;
}

.text-label-3 {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.text-label {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.text-label-3 span {
    color: #FF8E00;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.btn-continue-outline {
    background-color: #FFFFFF;
    border-radius: 5px;
    font-size: 18px;
    color: #112C54;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 8px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copied-text {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    position: relative;
    left: 15px;
    top: 5px;
}

.btn-continue-outline svg {
    width: 20px;
    margin-right: 10px;
}

.btn-continue-outline:hover {
    background-color: #ffffff;
    color: #112C54;
    border: 1px solid #112C54;
}

.modal {
    overflow: auto;
}

.top-bg-rad-2 {
    border-radius: 12px 12px 0 0;
}

.close-canvas-modal2 {
    z-index: 1;
}

.p-15 {
    padding: 0px 15px 15px 15px;
}

.nav-link {
    cursor: pointer;
}

.timer-popup-setting {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 9999999999;
    justify-content: center;
    align-items: center;
    animation: fadeInFromBottom 0.5s ease-out;
}

.del-content {
    box-shadow: 0px 0px 193px 5px #000;
}

.custom-drp-menu label {
    margin-bottom: 0;
    cursor: pointer;
}

.mdia-uploader-flex {
    display: flex;
}

.col-fixed-flex {
    width: 90px;
    height: 90px;
    padding-right: 10px;
    padding-left: 10px;
}

.mdia-uploader-flex .col-fixed-flex:first-child {
    padding-right: 10px;
    padding-left: 10px;
}

.btn-transparent-primary {
    color: #514F6E;
    background-color: transparent;
    border-color: #514F6E;
    cursor: pointer;
    margin: 5px;
    font-weight: 700;
    border-width: 2px;
}

.btn-transparent-primary:hover {
    color: #fff;
    background-color: #514F6E;
    border-color: #514F6E;
    cursor: pointer;
}

.youtube_list {
    background-color: #ffffff;
    padding: 10px;
    border-radius: 5px;
}

.scrollable-content-height-scalable-2 {
    padding-bottom: 12rem;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
}

.scrollable-content-height-scalable-1 {
    padding-bottom: 12rem;
    padding-left: 10px;
    padding-right: 10px;
}

.horizon-menu-2 .dropdown-toggle::after {
    content: none;
}

.horizon-menu-2 .nav-link {
    background-color: #112C54;
    border-radius: 5px;
    font-size: 15px;
    color: #ffffff;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    border: 1px solid #112C54;
    padding: 8px 15px;
    width: max-content;
    height: 40px;
}

.horizon-menu-2 .nav-item {
    margin-left: 8px;
}

.horizon-menu-2 .dropdown-menu .dropdown-item img {
    width: 18px;
    margin-right: 5px;
}

.horizon-menu-2 .dropdown-menu .dropdown-item {
    padding: 8px 10px;
}

.horizon-menu-2 img {
    width: 25px;
}

.horizon-menu-2 {
    margin-top: -2px;
}

.horizon-menu-2 .dropdown-menu {
    margin: .125rem -65px 9px;
    box-shadow: 1px 5px 79px 5px rgba(0, 0, 0, 0.6);
}

.horizon-menu-2 .dropdown-menu .dropdown-item {
    padding: 8px 28px;
}

.horizon-menu-2 .dropdown-menu .dropdown-item:first-child {
    padding: 8px 28px;
    border-bottom: 1px solid #ccc;
}

.horizon-menu-2 .dropdown-item.active,
.horizon-menu-2 .dropdown-item:hover {
    background-color: #112C54 !important;
    color: #ffffff !important;
}

.horizon-menu-2 .dropdown-menu .dropdown-item.disabled {
    color: #112C54;
    font-size: 17px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
}

.filter-tabs-2 {
    padding: 0 18px;
}

.ct-icon-1 {
    margin-right: 9px;
    width: 40px !important;
    height: 38px !important;
}

.label-link {
    color: #112C54 !important;
    padding: 0 9px 0 10px !important;
    font-size: 15px !important;
    font-family: 'Inter-Regular' !important;
    font-weight: 700 !important;
}

.timer-text-highlighted {
    color: #FF8E00 !important;
    font-size: 12px !important;
    font-family: 'Inter-Medium' !important;
    font-weight: 500 !important;
    margin-bottom: 0;
    display: flex;
    justify-content: start;
    align-items: center;
}

.timer-text-highlighted img {
    width: 15px;
    margin-right: 3px;
    position: relative;
    top: -1px;
}

.act-menu li a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    clear: both;
    font-weight: 600;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: #ffffff;
    border: 0;
    cursor: pointer;
}

.act-menu li a img {
    position: relative;
    width: 24px;
    margin-right: 5px;
    top: -2px;
}

.act-menu li a:first-child {
    border-bottom: 1px solid #cccccc;
}

.act-menu li a:hover {
    color: #212529;
    background-color: #EFF0F6;
}

.title-text {
    width: 90%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.1em;
    min-height: 24px;
    word-break: break-word;
}

.nav-menu-vertical:hover .drp-menu-icon {
    position: absolute;
    width: 200px
}

.drp-menu-icon {
    position: relative;
    right: 0px;
    top: 7px;
    width: 22px !important;
    z-index: 0;
}

.nav-menu-vertical {
    height: 100%;
    overflow: auto;
}

.nav-menu-vertical a {
    position: relative;
}

.content-section-tab3 {
    background-color: rgba(17, 44, 84, 0.6);
    padding: 10px 0;
    height: auto;
}

@media (min-width: 768px) {
    .modal-md-offcanvas-lg {
        min-width: 600px;
    }

    .modal-smd-offcanvas-catalog {
        min-width: 480px;
    }

    .modal-smd-offcanvas {
        min-width: 200px;
        max-width: 450px;
    }

    .modal-lg-offcanvas-catalog {
        min-width: 870px;
    }
}

.modal-close-icon {
    position: fixed;
    right: 1.5%;
    top: 0;
    cursor: pointer;
    z-index: 999999999999999;
}

.tranparent-content {
    background-color: transparent;
    border: 0;
}

.modal-relative {
    position: relative;
    /* max-width: max-content !important; */
    max-width: 80% !important;
}

.mx-100 {
    max-width: 60% !important;
}

.note-editable {
    height: 250px !important;
}

.note-editable ul {
    list-style: disc;
}

.note-editor .note-toolbar .note-btn.btn-fullscreen {
    display: none;
}

.note-editor .note-btn-group .dropdown-toggle::after {
    display: none;
}

.note-editor .note-toolbar {
    text-align: left;
}

.custom-card-to div {
    color: #112C54;
    font-weight: 700;
    font-size: 10px;
}

.custom-card-to {
    padding-right: 25px;
    margin-right: 5px;
}


/*  phase 3 CSS end here ----*/

/* add/remove dropdown ovelaping issue fixes 23july2025 */

.edit-menu-items.dropdown-menu {
    min-width: 15rem;
    border: none;
    position: relative;
    border-radius: 15px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.15);
    left: -70px !important;
    top: 7px !important;
    padding: 15px 0;
    z-index: 9999999999;
}


.edit-menu-items.dropdown-menu a {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #170F49;
    font-size: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    padding: 10px 15px;
}

.edit-menu-items.dropdown-menu a img {
    width: 25px;
    height: 25px;
    margin-right: 12px;
}

/* add/remove dropdown ovelaping issue fixes 23july2025 /end */