/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oxygen', sans-serif;
    color: #444444;
}

a {
    color: #283a97;
    text-decoration: none;
}

a:hover {
    color: #717ff5;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oxygen', sans-serif;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
    padding: 60px 0;
    overflow: hidden;
}

.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0;
    color: #283a97;
    text-transform: uppercase;
}

.section-header p {
    margin: 10px 0 0 0;
    padding: 0;
    font-size: 38px;
    line-height: 42px;
    font-weight: 700;
    color: #012970;
}

@media (max-width: 768px) {
    .section-header p {
        font-size: 28px;
        line-height: 32px;
    }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: #012970;
    min-height: 40px;
    margin-top: 82px;
    color: #fff;
}

@media (max-width: 992px) {
    .breadcrumbs {
        margin-top: 57px;
    }
}

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 500;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol a {
    color: #fff;
    transition: 0.3s;
}

.breadcrumbs ol a:hover {
    text-decoration: underline;
}

.breadcrumbs ol li + li {
    padding-left: 10px;
}

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #8894f6;
    content: "/";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #283a97;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: #6776f4;
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #283a97;
}

.header.header-scrolled {
    background: #283a97;
    padding: 15px 0;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
}

.header .logo {
    line-height: 0;
}

.header .logo img {
    max-height: 50px;
    margin-right: 6px;
}

.header .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: 'Oxygen', sans-serif;
    margin-top: 3px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: 'Oxygen', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
    color: #ffffff;
}

.navbar .login-btn {
    border: #ffffff solid 1px;
    padding: 5px 15px;
    margin-left: 30px;
    border-radius: 4px;
    color: #ffffff;
}
.navbar .login-btn:hover, .navbar .login-btn:focus {
    background-color: #db192e;
    padding: 5px 15px;
    background: #db192e;
    border: #db192e solid 1px;
}

.navbar .getstarted,
.navbar .getstarted:focus {
    background: #283a97;
    padding: 6px 15px;
    margin-left: 20px;
    border-radius: 4px;
    color: #fff;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: #fff;
    opacity: 8;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: none;
    font-weight: 600;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
    color: #283a97;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(1, 22, 61, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #012970;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
    color: #283a97;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
    color: #283a97;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    height: 75vh;
    background: url(../images/hero-bg.png) top center no-repeat;
    background-size: cover;
}

.hero h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #012970;
}

.hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 16px;
}

.hero .btn-get-started {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #283a97;
    box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.hero .btn-get-started span {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.hero .hero-img {
    text-align: right;
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .hero {
        height: auto;
        padding: 120px 0 60px 0;
    }

    .hero .hero-img {
        text-align: center;
        /*    margin-top: 80px;*/
    }

    .hero .hero-img img {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .hero-img img {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    background: #283a97;
    padding: 0 0 10px 0;
    font-size: 14px;
}

.footer .footer-top {
    background: #f6f9ff;
    border-top: 1px solid #e1ecff;
    border-bottom: 1px solid #e1ecff;
    padding: 30px 0 0px 0;
}

@media (max-width: 992px) {
    .footer .footer-top {
        background-position: center bottom;
    }
}

.footer .footer-top .footer-info {
    margin-bottom: 30px;
}

.footer .footer-top .footer-info .logo {
    line-height: 0;
    margin-bottom: 15px;
}

.footer .footer-top .footer-info .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-top .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #012970;
    font-family: 'Oxygen', sans-serif;
    margin-top: 3px;
}

.footer .footer-top .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    font-family: 'Oxygen', sans-serif;
}

.footer .social-links a {
    font-size: 20px;
    display: inline-block;
    color: #ffffff !important;
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: #ffffff;
}

.footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: #012970;
    text-transform: uppercase;
    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: #d0d4fc;
    font-size: 12px;
    line-height: 0;
}

.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: #013289;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

.footer .footer-top .footer-links ul a:hover {
    color: #283a97;
}

.footer .footer-top .footer-contact p {
    line-height: 26px;
}

.footer .copyright {
    padding-top: 30px;
    color: #012970;
}

.footer .copyright p {
    font-size: 12px;
    color: #ffffff;
}

@import "node_modules/vue-multiselect/dist/vue-multiselect.min.css";
.text-blue {
    color: #283996;
}

.bg-blue {
    background: #283996;
}

.bg-lightgrey {
    background-color: #F0F3F8 !important;
}

.table-lt-grey,
.bg-lt-grey {
    background: #F6F7FB;
}

.text-grey {
    color: #555555;
}

.text-blue-grey {
    color: #425466;
}

.text-light-grey {
    color: #999999;
}

.search-wd {
    width: 400px;
}

.titleudrline {
    width: 5%;
    margin-bottom: 20px;
    height: 5px !important;
    border: 0;
    background: #283a97;
    border-radius: 3px;
    opacity: .85;
}

.titleudrline-2 {
    width: 5%;
    margin-bottom: 20px;
    height: 3px !important;
    border: 0;
    background: #283a97;
    border-radius: 3px;
    opacity: .85;
}

.service-thumb,
.service-thumb img {
    width: 80px;
    height: 80px;
}

.service-title {
    font-size: 14px;
    font-weight: 600;
}

.hero-section {
    padding: 100px 0px 30px 0px;
    overflow: hidden;
}

.card hr {
    margin-bottom: 0px;
    height: 1px !important;
    border: 0;
    background: #eaeaea;
    opacity: .85;
}

.card p {
    font-size: 14px;
}

.btn {
    font-size: .9rem;
}

.btn-primary {
    color: #fff;
    background-color: #283a97 !important;
    border-color: #283a97 !important;
}

.btn-primary:hover {
    opacity: .8;
}

.bg-primary {
    background-color: #283a97 !important;
}

.btn-outline-primary {
    color: #283a97;
    border-color: #283a97;
}

.btn-outline-primary:hover {
    background-color: #283a97;
    border-color: #283a97;
}

.card .btn-wd {
    width: 49% !important;
}

/**/

@media (max-width: 767.98px) {
    .search-wd {
        width: 100%;
    }
}

/*sub pages*/

/*--------------------------------------------------------------
# Sub Hero Section
--------------------------------------------------------------*/
.sub-hero-section {
    /*        padding: 100px 0px 30px 0px;*/
    overflow: hidden;
    margin-top: 90px;
}

.sub-hero {
    width: 100%;
    height: 45vh;
    background: url(../images/hero-bg.png) top center no-repeat;
    background-size: cover;
}

.sub-hero h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
    color: #012970;
}

.sub-hero h2 {
    color: #444444;
    margin: 15px 0 0 0;
    font-size: 16px;
}

.sub-hero .btn-get-started,
.btn-primary {
    margin-top: 30px;
    line-height: 0;
    padding: 15px 40px;
    border-radius: 4px;
    transition: 0.5s;
    color: #fff;
    background: #283a97;
    box-shadow: 0px 5px 30px rgba(65, 84, 241, 0.4);
}

.sub-hero .btn-get-started span {
    font-family: 'Oxygen', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.sub-hero .btn-get-started i {
    margin-left: 5px;
    font-size: 18px;
    transition: 0.3s;
}

.sub-hero .btn-get-started:hover i {
    transform: translateX(5px);
}

.sub-hero .hero-img {
    text-align: right;
}

@media (min-width: 1024px) {
    .sub-hero {
        background-attachment: fixed;
    }
}

@media (max-width: 991px) {
    .sub-hero {
        height: auto;
        /*            padding: 120px 0 60px 0;*/
    }

    .sub-hero-section {
        margin-top: 40px;
    }
}

.sub-hero .hero-img {
    text-align: center;
    /*    margin-top: 80px;*/
}

.sub-hero .hero-img img {
    width: 80%;
}

@media (max-width: 768px) {
    .sub-hero {
        text-align: center;
    }

    .sub-hero h1 {
        font-size: 26px;
    }

    .sub-hero h2 {
        font-size: 24px;
    }

    .sub-hero .hero-img img {
        width: 100%;
    }
}

#sub-hero h1 {
    font-size: 42px;
}

#sub-hero h2 {
    font-size: 24px;
    text-transform: lowercase;
}

.page-link {
    color: #283a97;
}

.page-item.active .page-link {
    background-color: #283a97 !important;
    border-color: #283a97 !important;
}

.nav-justified .nav-item,
.nav-justified > .nav-link {
    flex-basis: auto;
    flex-grow: 0;
    text-align: center;
    margin-right: 10px;
}

.sub-page-tab .nav-tabs .nav-link.active {
    color: #ffffff !important;
    background-color: #283a97 !important;
    border: #fff solid 1px;
}

.sub-page-tab .nav-tabs .nav-link {
    border-radius: .25rem;
}

.sub-page-tab .nav-link {
    color: #666;
    padding: .25rem 1rem;
}

.tab-pane .option {
    padding: 8px 15px 8px 15px;
    border-radius: .25rem;
    font-size: .9rem;
    display: inline-block;
}

.tab-pane .btn-light,
.tab-pane .option {
    background-color: #ededed;
    color: #888888;
    margin: 8px 5px 8px 5px;

}

.tab-pane .option:active,
.tab-pane .option:focus {
    background: #283a97 !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
}

.text-shadow {
    text-shadow: #000000 0em 0em 0.05em;
}

.addon-desc {
    min-height: 140px;
}

/*multi carousal*/
/*
@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }

    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}
*/

/* medium and up screens */
/*
@media (min-width: 768px) {

    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    .carousel-inner .carousel-item-start.active,
    .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.carousel-control-next,
.carousel-control-prev {
    position: relative;
    display: inline;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background: #283a97;
    color: #ffffff;
}
*/

/*end multi carousal*/
/*sub page*/
.subpage-hero-section {
    /*        padding: 100px 0px 30px 0px;*/
    overflow: hidden;
    margin-top: 90px;
}

.subpage-hero {
    width: 100%;
    min-height: 120px;
    background: url(../images/hero-bg.png) top center no-repeat;
    background-size: cover;
}

.subpage-hero h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #283996;
}

.subpage-hero h2 {
    color: #000000;
    margin: 15px 0 0 0;
    font-size: 14px;
}

#select-hor .form-select {
    font-size: 13px;
}

.sort .form-select {
    width: 50%;
    font-size: 13px;
}

.product-card {
    border-bottom: #eaeaea solid 1px;
}

.product-card:last-child {
    border-bottom: none;
}

.product-card h6 {
    font-size: 14px;
}

/*sub page*/
.category-title {
    font-size: 13px;
}

/*collapse panel*/
#searchCollapse .accordion-item {
    border: none;
}

#searchCollapse .accordion-button:not(.collapsed) {
    color: #212529;
    background-color: #ffffff;
    box-shadow: none;
}

#searchCollapse .accordion-button {
    padding: 20px 0px 20px 0px;
    font-weight: bold;
    font-size: 14px;
    color: #444444;
}

#searchCollapse .accordion-button::after {
    width: 1.10rem;
    height: 1.10rem;
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ffffff;
    outline: 0;
    box-shadow: none;
}

#searchCollapse .accordion-body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
}

#searchCollapse label {
    color: #444444;
}

/*collapse panel*/
.sm-banner {
    background: #fbfbfb url(../images/sm-banner-bg.png) no-repeat;
}

.grey-lite-bg {
    background: #F0F3F8;
}

.t-90 {
    font-size: .9rem;
}

.t-80 {
    font-size: .8rem;
}

.text-gray-500 {
    color: #000000;
    opacity: .5;
}

.table tr {
    border: #eaeaea solid 1px;
}

.table tr:last-child td,
.table tr:last-child th,
.table thead tr th {
    border: none;
    border-bottom-width: 0px;
    box-shadow: none;
}

.table tr:last-child {
    border: none;
}

.table tbody {
    font-weight: normal !important;
}

.wd-60 {
    width: 60px;
}

.fw-bold {
    font-weight: bold !important;
}

.options .btn-options {
    margin-top: 30px;
    line-height: 0;
    padding: 22px 25px;
    border-radius: 4px;
    transition: 0.5s;
    color: #283996;
    background: #EEEFF7;
    text-align: start;
    font-weight: bold;
    /*    box-shadow: 0px 5px 30px rgb(65 84 241 / 40%);*/
}

.options .btn-options:hover {
    color: #EEEFF7;
    background: #283996;
}

.options .active {
    color: #EEEFF7;
    background: #283996;
}

.options-status {
    float: left;
    height: 4px;
    background-color: #E8EAFF;
    margin-right: 10px;
    border-radius: 3px;
}

.opt-status .active {
    background-color: #283996;
}

.opt-status .col:last-child .option-status {
    margin-right: 0px;
}

.form-select {
    background-color: #F6F7FB;
    border: none;
    padding: 15px 20px;
    color: #718096;
}

.text-bgrey {
    color: #425466;
}

.text-light-bgrey {
    color: #718096;
}

.fw-normal {
    font-weight: normal !important;
}

#newtable table {
    border-collapse: separate;
    border-spacing: 0 .5em;
}

.table > :not(caption) > * > * {
    padding: .8rem .8rem;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

.userinfo .form-control {
    /*    background: #F6F7FB;*/
    color: #718096;
}

.userinfo .form-control {
    font-size: 13px;
}

#addon-card button {
    background-color: transparent !important;
}

#addon-card .card-title {
    min-height: 35px;
}

#addon-card ul,
#addon-card .spec {
    min-height: 94px;
}

#addon-card .card-body {
    padding: 1rem 1rem .5rem 1rem;
}

.addon-close-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    right: 5px;
    top: 5px;
    /*    z-index: 100;*/
    outline: none;
    color: #718096;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12), 0 4px 8px rgba(0, 0, 0, .06);
}

.addon-close-btn:hover {
    color: #CD2424;
}

.btn-refresh {
    padding: 2px 10px 2px 10px;
    margin-left: 10px;
}

/*custom select drop down*/
/* The container must be positioned relative: */
.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none;
    /*hide original SELECT element: */
}

.select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

/**/
/*steps*/
.text-primary {
    color: #283a97 !important;
}

/* CSS */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.step-button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background-color: #F1F2F8;
    transition: 0.4s;
    color: #283a97;
    font-weight: bold;
    font-size: 12px;
}

.step-button[aria-expanded="true"] {
    width: 35px;
    height: 35px;
    background-color: #5361AB;
    color: #fff;
}

.done {
    background-color: #5361AB;
    color: #fff;
}

.step-item {
    z-index: 10;
    text-align: center;
}

#progress {
    -webkit-appearance: none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 2px;
    margin-left: 12px;
    margin-bottom: 0px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: #5361AB;
    transition: 0.5s ease;
}

#progress::-webkit-progress-bar {
    background-color: #F1F2F8;
}

.opacity-5 {
    opacity: .5;
}

/*end steps*/
#checkout .form-control {
    font-size: .9rem;
    padding: .675rem .75rem;
}

.nav-tabs .credit-card .active,
.nav-tabs .pay-account .active {
    background: #283996;
    color: #ffffff;
    border: #ffffff solid 1px;
}

.nav-tabs .nav-link {
    color: #718096;
    border: #C7CFE0 solid 1px;
}

.form-control::-webkit-input-placeholder {
    color: #718096;
}

/* WebKit, Blink, Edge */
.form-control:-moz-placeholder {
    color: #718096;
}

/* Mozilla Firefox 4 to 18 */
.form-control::-moz-placeholder {
    color: #718096;
}

/* Mozilla Firefox 19+ */
.w-90 {
    width: 90%;
}

/**/
.sticky-parent {
    min-height: 100vh;
    overflow: inherit;
}

.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 95px;
}

/**/
.body-content {
    margin-top: 90px;
}

.success-ic {
    color: #283996;
    font-size: 62px;
}

.vendor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
}

#vendor-list .border {
    border-color: #EAEBF4 !important;
}

#vendor-list .form-control {
    font-size: 13px;
}

.vendor-container:hover {
    cursor: pointer;
}

.account-submenu {
    background: #F6F7FB url(../images/arrow-right.svg) no-repeat;
    background-position: 96% 20%;
    transition: all .5s;

}

.account-submenu:hover {
    cursor: pointer;
    background-position: 98% 20%;
    transition: all .5s;
    box-shadow: 0px 0px 12px rgba(65, 84, 241, 0.4);
}

.navbar a {
    padding: 7px 12px;
    border-bottom: 2px solid #283996;
    margin: 0px 3px;
}

@media (min-width: 768px) {

    .navbar a.nav-link:hover,
    .navbar a.nav-link:focus {
        /*        background: #db192e;*/
        padding: 7px 12px;
        margin: 0px 3px;
        border-bottom: 2px solid #db192e;
    }

    .navbar .getstarted:hover,
    .navbar .getstarted:focus {
        border-radius: 0px;
        border-bottom: 2px solid #db192e;
    }
}

.navbar .cart-btn:hover,
.navbar .cart-btn:focus {
    border-bottom: 2px solid #db192e !important;
    opacity: 1;
    border-radius: 0px;
    cursor: pointer;
}

/*manage cards*/
.managecards {}

.managecards .cards,
.manageaddress .cards {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
    border-radius: 5px;
    padding: 20px;
    transition: 0.3s all;
}

.managecards .cards:hover {
    box-shadow: rgba(149, 157, 165, 0.6) 0px 0px 15px;
}

.text-cardname {
    font-size: 12px;
}

.primary-badge {
    background: rgba(69, 197, 9, 0.2);
    border: #45C509 solid 1px;
    color: #45C509;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px 10px;
    transition: all .5s;
}

.primary-badge:hover {
    background: rgba(69, 197, 9, 1);
    color: #ffffff;
    transition: all .5s;
}

.make-primary-badge {
    background: rgba(113, 128, 150, 0.2);
    border: #718096 solid 1px;
    color: #425466;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px 10px;
    transition: all .5s;
}

.make-primary-badge:hover {
    background: rgba(113, 128, 150, 1);
    color: #ffffff;
    transition: all .5s;
}

.mgcard-delete-btn {
    padding: 6px 8px 6px 8px;
    margin-left: 10px;
    background: rgba(205, 36, 36, 0.2);
    color: #CD2424;
    transition: all .5s;
}

.mgcard-delete-btn:hover {
    background: rgba(205, 36, 36, 1);
    color: #ffffff;
    transition: all .5s;
}

.or-line {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #C7CFE0;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.or-line span {
    background: #fff;
    padding: 0 10px;
    font-size: 13px;
}

.saved-cards-img {
    width: 40px;
}

.saved-cards {
    border: #C7CFE0 solid 2px;
    padding: 7px 10px 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.saved-cards:focus {
    border: #283996 solid 2px;
}

/*end manage cards*/
.fs-7 {
    font-size: .75rem;
}

#pills-tab .nav-link {
    color: #283a97 !important;
    background-color: #dee2e6;
    font-weight: 500;
    margin-right: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    font-weight: bold;
    padding: 7px 20px;
}

#pills-tab .nav-item .active {
    color: #ffffff !important;
    background-color: #283a97 !important
}

#pills-tab {
    border-bottom: #dee2e6 solid 1px !important;
}

.btn:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

#subscription .table thead tr:hover {
    background-color: #ffffff !important;
}

#subscription .table tr:last-child {
    border: #eaeaea solid 1px;
}

/*
#subscription .table tr:hover{
    background: rgba(113, 128, 150, 0.1);
}
*/
#subscription .table > :not(:first-child) {
    border-top: #cccccc solid 2px;
}

#subscription .table .btn-outline-primary:hover,
#subscription .table .btn-outline-primary:focus {
    color: #ffffff;
    border: #283a97 1px solid;
    background: #283a97;
}

#subscription .table tbody tr:nth-child(even) {
    background: rgba(113, 128, 150, 0.1);
}

#subscription .table .btn {
    font-size: .8rem;
}

#subscription .form-select {
    background-color: #F6F7FB;
    border: #eaeaea solid 1px;
    padding: 8px 15px 8px 15px !important;
    color: #718096;
}

#subscription .reset,
#subscription .reset:hover,
#subscription .reset:focus {
    padding: 17px 15px 18px 15px;
    margin-top: 0px;
}

#subscription input,
input::-webkit-input-placeholder,
#subscription .form-select {
    font-size: .85rem;
}

#subscription .form-control {
    padding: 8px 16px;
}

.line-after {
    overflow: hidden;
}

.line-after:after {
    content: "";
    display: inline-block;
    height: 0.7em;
    vertical-align: bottom;
    width: 100%;
    margin-right: -100%;
    margin-left: 10px;
    border-top: 1px solid #dee2e6;
}
.subscription-box {
    border:2px solid #eaeaea!important;
}
.subscription-box:hover {
    border: #283a97 2px solid!important;
}
.mytab .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color:#ffffff;
    background-color:#283996;
    border-color: #dee2e6 #dee2e6 #fff;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;

}
.mytab .nav-tabs .nav-link {
    border: none!important;
}
.mytab .nav-link {
    padding: .5rem 1.5rem;
}

.subscription-month-label {
    color:#ffffff;
    background-color:#283996;
    border-color: #dee2e6 #dee2e6 #fff;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;

}

.subscription-status-active {
    background-color: rgb(224, 242, 241);
    color: green;
}

.subscription-status-success {
    background-color: rgb(224, 242, 241);
    color: green;
}

.subscription-status-pending {
    background: #c87f0a !important;
    color: white !important;
}

.subscription-status-renewed {
    background: #6c71c4 !important;
    color: white !important;
}

.subscription-status-unpaid {
    background: #e98787 !important;
    color: white !important;
}

.subscription-status-expire_soon {
    background: #ff4f0b !important;
    color: white !important;
}


.subscription-status-expired {
    background: red !important;
    color: white !important;
}

.subscription-status-cancelled {
    background: grey !important;
    color: white !important;
}

.callout.callout-info {
    border-left-color: #bd2130;
}
.callout {
    border-radius: 0.25rem;
    box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    background-color: #fff;
    border-left: 5px solid #e9ecef;
    margin-bottom: 1rem;
    padding: 1rem;
}

.payment-due {
    border-radius: 4px;
}

* {
    word-break: break-all;
}

.gray-card {
    background: #f6f7fb;
    border-radius: 0.25rem;
}

.gray-card .card-header {
    background-color: transparent;
    border-bottom: none;
    padding: 1rem 1.25rem;
}

.gray-card .card-title {
    color: #283a97; /* 939ba2 */
    font-weight: bold;
}

.white-card {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 10px;
    border-radius: 5px;
    transition: 0.3s all;
    margin-bottom: 24px;
}

.gray-card .card-body,
.white-card .card-body {
    position: relative;
}

.card-header {
    background-color: transparent;
}

.text-gray {
    color: #939ba2;
}

.small {
    font-size: .925rem;
}

.card:hover {
    transform: none;
    box-shadow: none;
}

.nav-tabs .nav-item {
    margin-right: 15px;
}

.nav-tabs .nav-link:hover {
    color: #ffffff;
    background-color: #283996;
    border-color: #dee2e6 #dee2e6 #fff;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-accent-bg: rgb(0 0 0 / 3%);
}

/* pricing list table */
#price .table > thead > tr > th:first-child {
    width: 900px;
}

#orders-table > thead > tr > th:first-child {
    width: 550px;
}

#product-detail-table > thead > tr > th:first-child {
    width: 266px;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        max-height: 80vh;
        overflow: scroll;
    }

    /* pricing list table */
    #price .table > thead > tr > th:first-child,
    #orders-table > thead > tr > th:first-child,
    #product-detail-table > thead > tr > th:first-child {
        width: auto;
    }
}