/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */
/* -----------------------------------------
           02. BASE TYPOGRAPHY
-------------------------------------------- */
body {
    background-color: #ffffff;
    font-family: 'Roboto', sans-serif;
    color: #2a2e36;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;

}

body,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.navbar,
.brand,
.btn,
.btn-simple,
a,
.td-name,
td {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: 'Roboto', sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0 0 1.75rem;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
    line-height: 1.21;
    color: initial;
}

h1 {
    margin-top: 0;
    font-size: 3.052em;
}

h2 {
    font-size: 2.441em;
}

h3 {
    font-size: 1.953em;
}

h4 {
    font-size: 1.563em;
}

h5 {
    font-size: 1.25em;
}

small,
.text_small {
    font-size: 0.8em;
}

strong,
b {
    font-weight: 700 !important;
    font-family: 'Roboto', sans-serif;
}

.badge {
    display: inline;
    padding: 0.20rem .5rem;
    line-height: inherit;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 77%;
}

.badge-pill {
    padding-right: .875em;
    padding-left: .875em;
    border-radius: 50rem;
}

/*========================================
        03. PRE DEFINE CLASS CSS
==========================================*/
.ptb-100 {
    padding: 100px 0;
}

.pt-100 {
    padding-top: 100px;
}

.pt-165 {
    padding-top: 165px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt--165 {
    margin-top: -165px !important;
}

.mt--100 {
    margin-top: -100px !important;
}

.gray-light-bg {
    background: #f5f5f5;
}

.primary-bg {
    background: #0b1730 !important;
}

.secondary-bg {
    background: #7100b9;
}

.color-primary {
    color: #0b1730 !important;
}

.color-secondary {
    color: #7100b9
}

.gradient-bg {
    background: #0b1730 !important;
}

.white-bg {
    background: #ffffff;
}

a {
    color: #0b1730;
}

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

.color-1 {
    color: #ff164e;
}

.color-1-bg {
    background: rgba(255, 22, 78, 0.15);
}

.color-2 {
    color: #7100b9;
}

.color-2-bg {
    background: rgba(145, 35, 255, 0.15);
}

.color-3 {
    color: #0b1730;
}

.color-3-bg {
    background: rgba(0, 115, 236, 0.15);
}

.color-4,
.ratting-color {
    color: #ff7c3f;
}

.color-4-bg {
    background: rgba(255, 124, 63, 0.15);
}

.color-5,
.success-color {
    color: #2ebf6d;
}

.color-5-bg {
    background: rgba(46, 191, 109, 0.15);
}

.color-6 {
    color: #f25c7f;
}

.color-6-bg {
    background: rgba(242, 92, 127, 0.15);
}

.animated-btn {
    transition: all .25s ease-in-out;
}

.animated-btn:hover {
    transform: translate(0, -3px);
    -webkit-transform: translate(0, -3px);
}

.outline-btn,
.secondary-solid-btn,
.primary-solid-btn,
.solid-white-btn,
.outline-white-btn,
.secondary-outline-btn {
    padding: 12px 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    transition: all .25s ease-in-out;
}

.primary-solid-btn {
    border: 1px solid #0b1730;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .15);
    background: #0b1730;
    color: #ffffff;

}

.primary-solid-btn:hover {
    background: transparent;
    color: #0b1730;
}

.btn.primary-solid-btn:focus,
.btn.outline-btn:focus {
    outline: none;
}

.btn.primary-solid-btn:focus {
    color: #ffffff;
    background: #0b1730;
}

.secondary-solid-btn {
    color: #fff;
    background: #7100b9;
    border: 1px solid #7100b9;
}

.secondary-solid-btn:hover {
    background: transparent;
    color: #7100b9;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.secondary-outline-btn {
    color: #7100b9;
    display: inline-block;
    border: 1px solid #7100b9;
    background: transparent;
}

.secondary-outline-btn:hover {
    background: #7100b9;
    color: #ffffff;
}

.outline-btn {
    position: relative;
    display: inline-block;
    color: #0b1730;
    border: 1px solid #0b1730;
    background: transparent;
}

.outline-btn:after {
    content: " ";
    position: absolute;
    top: -1px;
    left: -1px;
    bottom: -1px;
    right: -1px;
    z-index: -1;
    border-radius: 4px;
    opacity: 0;
    transition: 400ms;
    text-shadow: 0 0.5px 0.3px rgba(0, 0, 0, .1);
    background: #0b1730;
}

.outline-btn:hover:after {
    opacity: 1;
}

.outline-btn:hover {
    color: #ffffff;
    background: #0b1730;
}

.primary-bg h1,
.primary-bg p {
    color: #fff;
}

.solid-white-btn {
    background: #ffffff;
    border-color: #ffffff;
    color: #0b1730;
}

.solid-white-btn:hover {
    background: transparent;
    color: #ffffff;
}

.outline-white-btn {
    color: #ffffff;
    border-color: #ffffff;
}

.outline-white-btn:hover {
    background: #ffffff;
    color: #0b1730;
}

.text-white {
    color: #ffffff;
}

/*icon size*/
.icon-sm {
    font-size: 25px;
    line-height: 25px;
}

.icon-md {
    font-size: 40px;
    line-height: 40px;
}

.icon-lg {
    font-size: 50px;
    line-height: 50px;
}

@media (min-width: 768px) {
    .lead {
        font-size: 18px;
        line-height: 28px;
    }
}

/*form field css*/
.form-control {
    border-color: #ebebeb;
    padding: .75rem 15px;
    height: calc(2.56em + .75rem + 2px);
    box-shadow: none;
}

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

input[type]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder,
select.form-control.has-value {
    color: #b1b1b1 !important;
    font-size: 13px;
}

input[type]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder,
select.form-control.has-value {
    /* Firefox 18- */
    color: #b1b1b1;
    font-size: 13px;
}

input[type]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder,
select.form-control.has-value {
    /* Firefox 19+ */
    color: #b1b1b1;
    font-size: 13px;
}

input[type]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder,
select.form-control.has-value {
    color: #b1b1b1;
    font-size: 13px;
}

select.form-control.has-value {
    height: 52px;
}

.section-heading h2 span {
    font-weight: 400;
    font-size: 2rem;
}

.z-index {
    z-index: 9;
}

.gradient-overlay {
    position: relative;
    width: 100%;
}

.gradient-overlay:before {
    position: absolute;
    content: '';
    background: rgb(15 93 208 / 88%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.height-lg-100vh {
    min-height: 100vh;
}

@media (max-width: 576px) {
    .height-lg-100vh {
        height: auto;
    }
}

.custom-badge {
    top: 5%;
    right: 8%;
}

section#home-banner {
    padding: 70px 0 !important;
}

.hero-equal-height {
    position: relative;
    min-height: 550px;
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background-color: #0b1730 !important;
}

.hero-content-wrap h2 {
    font-size: 3.052em;
    color: #ffffff;
    padding: 0 !important;
}

/*main menu css*/

@media (max-width: 776px) {
    .topbar-text {
        display: none;
    }
}

.topbar-text p {
    margin-bottom: 0;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 600;
    color: #757575;
}

.topbar-text p i {
    margin-right: 5px;
}

ul.top-nav {
    margin-top: 0;
}

ul.top-nav>li>a {
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 500;
}

ul.top-nav>li.primary-action>a.btn {
    padding: initial;
    background-color: transparent;
    border-radius: 0;
    color: #0b1730;
}

.navbar-brand {
    height: auto;
    display: block;
    margin-right: 60px;
    padding: 25px 15px;
}

.header-main-menu.header-fixed .navbar-brand {
    padding: 16px 15px;
}

.navbar-main {
    font-family: 'Roboto', sans-serif;
}

.navbar-main .navbar-nav>li>a {
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
    padding-left: 13px;
    padding-right: 13px;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    color: #2a2e36;
    font-weight: 400;
}

.navbar-main,
section#main-menu,
.navbar-main li.account {
    background-color: transparent;
}

.dropdown-menu>li>a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    color: #757575;
    padding: 10px 18px;
}

.navbar-main .navbar-nav>.active>a,
.navbar-main .navbar-nav>.active>a:focus,
.navbar-main .navbar-nav>.active>a:hover,
.navbar-main .navbar-nav>.open>a,
.navbar-main .navbar-nav>.open>a:focus,
.navbar-main .navbar-nav>.open>a:hover,
.navbar-main .navbar-nav>li>a:focus,
.navbar-main .navbar-nav>li>a:hover,
.navbar-main .navbar-nav .dropdown-menu>li>a:hover {
    background-color: transparent;
    opacity: 1;
    color: #0b1730 !important;
}

.navbar-main .dropdown-menu {
    padding: 0;
}


.dropdown-menu {
    min-width: 220px;
    padding: 0;
    border: none;
}

.nav .nav-divider {
    margin: 0;
    background: transparent;
}

.navbar-nav>li>.dropdown-menu,
.navbar-nav .open .dropdown-menu {
    border-top: 2px solid #0b1730;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
    -webkit-box-shadow: 0 12px 20px 0 rgba(23, 28, 33, .16);
    box-shadow: 0 12px 20px 0 rgba(23, 28, 33, .16);

}


.white-bg.gradient-bg .navbar-main .navbar-nav>li>a {
    color: #ffffff !important;
}

@media (max-width: 991px) {
    .navbar-main .navbar-nav>li>a {
        padding: 6px 20px !important;
    }
}

@media (min-width: 320px) and (max-width: 991px) {
    .header-main-menu {
        background: #ffffff !important;
    }

    .navbar-main .navbar-nav>li>a {
        padding: 8px 12px;
    }

    .navbar-right .dropdown-menu {
        position: relative;
    }

    .secondary-nav {
        align-items: baseline !important;
    }
}

@media (min-width:1200px) and (max-width: 1920px) {
    .header-main-menu .navbar-nav.navbar-center {
        position: absolute;
        left: 50%;
        transform: translatex(-50%);
    }
}

@media (max-width: 767px) {
    .navbar-nav .open .dropdown-menu {
        background-color: #f5f5f5 !important;
    }

    .navbar-main .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #0b1730;
    }

    .navbar-main .navbar-nav .open .dropdown-menu>li>a {
        color: inherit;
        padding: 6px 30px;
    }

}

.secondary-nav {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 0 !important;
}

a.sign-up-btn {
    border: 1px solid #e6e8ec;
    padding: 8px 15px !important;
    border-radius: 3px;
}

a.sign-up-btn:hover {
    background-color: #f5f5f5 !important;
}

a.login-btn {
    color: #fff !important;
    background-color: #0b1730;
    border: 1px solid #0b1730;
    padding: 8px 15px !important;
    border-radius: 3px;
    opacity: 1 !important;
}

a.login-btn:hover {
    border-color: #0b1730;
    color: #0b1730 !important;
}

a.login-btn {
    margin-left: 6px;
}

.secondary-nav li a.notification i {
    position: relative;
}

.secondary-nav li a.notification span.dot-circle {
    position: relative;
    border-radius: 50%;
}

.secondary-nav li a.notification span.dot-circle:before {
    content: "";
    width: 6px;
    height: 6px;
    line-height: 6px;
    display: table;
    right: -6px;
    top: -4px;
    border-radius: 50%;
    position: absolute;
    background-color: #F64E60;
}

@-webkit-keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(246, 78, 96, .15), 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15);
        box-shadow: 0 0 0 0 rgba(246, 78, 96, .15), 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15)
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15), 0 0 0 20px rgba(246, 78, 96, 0);
        box-shadow: 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15), 0 0 0 20px rgba(246, 78, 96, 0)
    }
}

@keyframes ripple {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(246, 78, 96, .15), 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15);
        box-shadow: 0 0 0 0 rgba(246, 78, 96, .15), 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15)
    }

    100% {
        -webkit-box-shadow: 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15), 0 0 0 20px rgba(246, 78, 96, 0);
        box-shadow: 0 0 0 5px rgba(246, 78, 96, .15), 0 0 0 10px rgba(246, 78, 96, .15), 0 0 0 20px rgba(246, 78, 96, 0)
    }
}

.language-chooser .dropdown-menu {
    height: 300px;
    overflow-y: scroll;
    position: absolute;
    right: 0;
    left: auto;
}

.user-name {
    border-bottom: 1px solid #e6e8ec;
}

.user-name span {
    display: block;
    font-size: 12px;
}




/*domain search css*/


section#home-banner .btn {
    font-size: 14px;
    font-weight: 600;
}

section#home-banner .btn.transfer {
    border-radius: 0 4px 4px 0 !important;
}

.domain-search-field.input-group-lg>.form-control {
    font-size: inherit;
}

section#home-banner .form-control {
    border-radius: 4px 0 0 4px !important;
}

section#home-banner .btn.search {
    background-color: #003e80;
    border-radius: 0 4px 4px 0;
}

section#home-banner .btn.search:focus {
    outline: none;
}

section#home-banner .btn.transfer {
    background-color: rgba(113, 0, 185, 0.93);
}

section#home-banner .btn.search i,
section#home-banner .btn.transfer i {
    padding: 5px !important;
}

section#home-banner #inputCaptcha.form-control,
#default-captcha-domainchecker #inputCaptcha.form-control {
    border-radius: 2px !important;
    height: auto;
    padding: 2px 10px;
}

#inputCaptchaImage {
    margin-right: 10px;
    margin-left: auto;
}

#default-captcha-domainchecker {
    display: inline-block;
}

section#home-banner .captchaimage,
.captchaimage {
    display: inline-block;
}



/*Promo section css*/

.lead {
    font-weight: 400;
}

@media (min-width: 992px) {

    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
}

@media (min-width: 768px) {

    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}


.p-5 {
    padding: 3rem !important;
}

.single-promo-hover {
    transition: all .2s ease-out;
    will-change: transform;
    border-radius: 30px;
}

.single-promo-2 {
    box-shadow: 0 0px 3px 0 rgba(31, 45, 61, .125) !important;
}

.single-promo-hover:hover {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
}

a .single-promo-2 p {
    color: #707070;
}

.single-promo-hover h5 {
    color: #5a5a5a;
}

.circle-icon {
    display: block;
    margin-bottom: 10px;
}

.single-promo-2 span {
    font-size: 25px;
    background-image: url('//hostlar.themetags.com/img/promo-icon-bg.svg');
    background-size: 120px;
    padding: 30px;
    background-repeat: no-repeat;
    background-position: 40% 25%;
    color: #fff;
}

.popular-categories-list li {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
    transition: all 0.3s ease-in;
}

.popular-categories-list li:last-child {
    margin-bottom: 0;
}

.help-center-box-link {
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: -50px;
    transition: all 0.3s ease-in;
}

.popular-categories-list li:hover {
    background: #f5f5f5;
}

.popular-categories-list li:hover .help-center-box-link {
    right: 20px;
}

.animation-image-wrap {
    position: relative;
}

.animation-icon-img {
    position: absolute;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-animation: bounce 1s ease-in-out 0s infinite alternate;
    animation: bounce 1s ease-in-out 0s infinite alternate
}

.animation-icon-img.animation-icon-1 {
    left: 15%;
    top: 30%;
}

.animation-icon-img.animation-icon-2 {
    left: inherit;
    right: 45%;
    top: 0;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.animation-icon-img.animation-icon-3 {
    top: 30%;
    left: 75%;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

.animation-icon-img.animation-icon-4 {
    left: inherit;
    right: 45%;
    top: 60%;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

.animation-icon-img.animation-icon-5 {
    left: 42%;
    top: 24%;
}

@-webkit-keyframes bounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    to {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px)
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }

    to {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px)
    }
}

.domain-search-list {
    position: relative;
    display: block;
    margin-top: 15px;
}

.domain-search-list li a img {
    margin-bottom: 6px;
}

.domain-search-list li:last-child:after {
    border: none;
}

.domain-search-list li:not(:last-child) {
    margin-right: 0 !important;
}

.domain-search-list li:last-child {
    border-right: none;
}

.domain-search-list li a {
    display: inline-block;
    padding: 0;
    text-align: center;
    font-weight: 600;
    color: inherit;
}

.domain-search-list li a span {
    font-size: 15px;
    line-height: 15px;
    display: block;
    opacity: 0.7;
}

.domain-search-field {
    width: 75%;
}

@media (min-width: 320px) and (max-width: 575px) {
    .domain-search-list li a {
        padding: 0;
    }

    .domain-search-list li:last-child {
        display: none;
    }

    .domain-search-list li:last-child:after {
        border: none;
    }

    .domain-search-field {
        width: 100% !important;
    }
}


.align-center-row {
    display: flex;
    -ms-flex-align: center !important;
    align-items: center !important;
}

@media (min-width: 320px) and (max-width: 991px) {
    .align-center-row {
        display: block;
    }
}

/*Main body css*/
section#main-body {
    padding: 60px 0;
}

.main-content {
    margin-bottom: 0;
    min-height: auto;
}

div.announcement-single {
    margin: 0 0 20px;
    padding: 25px;
    border: 1px solid #ebebeb;
    border-radius: 4px;
}

.announcement-single .article-items {
    margin-bottom: 10px;
    font-size: inherit;
}

.announcement-single h3 {
    margin-bottom: 8px;
    font-size: 16px;
    height: 42px;
    line-height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.announcement-single .title {
    font-size: 16px;
    line-height: 28px;
}

.announcement-single h3 a,
.announcement-single a {
    color: #5d5d5d;
}

.announcement-single h3 a:hover,
.announcement-single a:hover {
    color: #0b1730;
}

.announcement-single a.read-more-btn {
    margin-top: 15px;
    padding: 8px 15px;
    display: table;
    background: transparent;
    color: #0b1730;
}

.announcement-single a.read-more-btn:hover {
    border: 1px solid #0b1730;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .15);
    background-image: linear-gradient(to bottom, #0b1730, #214eec);
    color: #ffffff;
}

.announcement-single.home-news p {
    margin: 0 0 12px;
    font-size: 14px;
    text-align: left;
    height: 110px;
    line-height: 27px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

a.detail-link {
    display: inline-block;
    text-decoration: none;
    color: #495057;
    font-weight: 700;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
}

a.detail-link span {
    font-size: 12px;
    vertical-align: middle;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    color: #0b1730;
}

a.detail-link:hover,
.single-blog-card .card-body h3 a:hover {
    color: #0b1730;
}

a.detail-link:hover span {
    transform: translateX(3px);
    margin-left: 8px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
}

.article-footer span,
.article-date {
    color: #8d8f92;
}

.article-footer span i,
.article-date i {
    font-size: 12px;
}

.article-date {
    margin-bottom: 8px;
    display: block;
}

/*knowledgebase*/
.kb-wrap {
    border: 1px solid #e6e8ec;
    border-radius: 6px;
}

.kbcategories,
.kbarticles {
    background: #f5f5f5;
    border: 1px solid #e6e8ec;
    border-radius: 6px;
}

.kbarticles {
    padding: 0;
}

.custom-card-block h3 {
    font-size: 16px;
}

.custom-card-block .kbarticles {
    background: transparent;
    border: none;
    box-shadow: none !important;
    border-radius: 0;
}

.kbcategories a.knowledge-categorie {
    border-bottom: 1px solid #ebebeb;
}

.kbcategories a.knowledge-categorie i,
.single-knowledge a i {
    margin-right: 5px;
}

.kbcategories a.knowledge-categorie:nth-last-of-type(1) {
    border-bottom: none;
}

.knowledge-categorie {
    display: block;
    padding: 15px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    position: relative;
}

.knowledge-categorie p {
    margin-bottom: 0;
    color: #757575;
    font-weight: 400;
}

.cat-edit {
    position: absolute;
    right: 30px;
    margin-top: -41px;
}

.single-knowledge {
    padding: 15px;
    border-bottom: 1px solid #ebebeb;
}

.single-knowledge:last-of-type {
    border-bottom: none;
}

.single-knowledge a {
    font-size: 15px;
}

.single-knowledge a:hover {
    color: #0b1730;
}

.single-knowledge p {
    font-size: 14px;
    margin-bottom: 0;
    color: #757575;
}

.kb-rate-article {
    background-color: transparent;
    border-top: 1px solid #e6e8ec;
    margin: 0;
    padding: 15px;
    font-weight: 400;
}

.kb-rate-article form {
    display: flex;
    font-size: 17px;
    justify-content: space-between;
    flex: 1;
    align-items: center;
}

.kb-vote h5 {
    font-size: 16px;
    margin-bottom: 2px;
}

.kb-vote p {
    margin: 0;
    font-size: 13px;
    line-height: 21px;
    color: #a9a9a9;
}

.kb-also-read h3 {
    font-size: 20px;
}

.btn.vot-btn {
    padding: 8px 16px;
}

button.btn.vot-btn:foucs {
    outline: none !important;
    border: none;
}

/*breadcrumb  css*/
div.header-lined h1 {
    font-size: 26px;
    font-weight: 500;
    color: #404040;
}

div.header-lined small {
    font-size: 50%;
}

.page-header-content h1 {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 38px;
    font-weight: 300;
}

.page-header-content p {
    margin-bottom: 3px;
    font-weight: 300;
    font-size: 18px;
}

.addons-wrap {
    margin-bottom: 15px;
}

.addons-wrap .header-lined h1 {
    font-size: 16px;
    border-bottom: none;
}

/*sidebar css*/

.sidebar {
    padding-right: 25px;
}

.panel-sidebar a.list-group-item.active,
.panel-sidebar a.list-group-item.active:focus,
.panel-sidebar a.list-group-item.active:hover {
    background-color: #d5e7fb;
    border-color: #d5e7fb;
    color: #0b1730;
    font-family: 'Roboto', sans-serif;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
}

.panel-sidebar .list-group-item.disabled,
.panel-sidebar .list-group-item.disabled:focus,
.panel-sidebar .list-group-item.disabled:hover {
    color: hsla(0, 0%, 100%, .64) !important;
}

.panel-sidebar .panel-title {
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    font-size: 15px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 400;
}

.panel-sidebar>.panel-footer {
    background: #0b1730;
}

.sidebar .panel-footer.clearfix .btn-success,
.sidebar .panel-footer.clearfix .btn-default {
    color: #0b1730;
    background-color: #d5e7fb;
    border-color: #d5e7fb;
}

.sidebar .panel-footer.clearfix .btn-danger {
    background: #ff6e63;
    border-color: #ff6e63;
}

.sidebar .list-group-item .badge {
    background: none;
    padding: 0;
    margin-top: 6px;
    font-size: 100%;
}

.panel-sidebar.view-filter-btns .list-group-item.active,
.panel-sidebar.view-filter-btns .list-group-item.active:focus,
.panel-sidebar.view-filter-btns .list-group-item.active:hover {
    background-color: #d5e7fb;
    border-color: #d5e7fb;
    color: #0b1730;
}

.panel-sidebar a.list-group-item.active i,
.panel-sidebar a.list-group-item.active:focus i,
.panel-sidebar a.list-group-item.active:hover i {
    color: #0b1730;
}

/*domain search css*/
.domain-checker-container {
    background-color: #0b1730;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#0b1730), to(#7100b9));
    background: -webkit-linear-gradient(top, #0b1730, #7100b9);
    background: -moz-linear-gradient(top, #0b1730, #7100b9);
    background: -ms-linear-gradient(top, #0b1730, #7100b9);
    background: -o-linear-gradient(top, #0b1730, #7100b9);
}

.domain-checker-container .input-group-box {
    background-color: transparent;
}

h2.font-25 {
    font-size: 20px;
    margin-top: 15px;
}

.kb-article-title {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 0;
    padding: 10px 15px;
    background: #f5f5f5;
}

.kb-title {
    display: flex;
    align-items: center;
}

.kb-title h2 {
    font-size: 20px;
}

.kb-title a {
    font-size: 13px;
}

.kb-article-title .btn-print {
    font-size: initial;
}

.kb-article-content {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    margin-bottom: 0;
    padding: 15px;
}


/*foter css*/
#footer .back-to-top-btn {
    position: relative;
    display: block;
    width: 100%;
}

#footer .back-to-top {
    float: right;
    position: absolute;
    right: 0;
    bottom: 0;
}

#footer .back-to-top i {
    padding: 10px;
    background-color: #096ad0;
    color: #fff;
    border-radius: 3px;
}

.footer-top {
    padding: 65px 0;
}

.security-icon-list li {
    margin: 0 10px 15px 0;
}

@media (min-width: 320px) and (max-width: 567px) {
    .footer-top {
        padding: 50px 0;
    }
}

.footer-nav-wrap h4 {
    font-size: 13px;
    margin-bottom: 1.4rem;
    color: #ffffff;
}

.footer-nav-wrap ul li a {
    font-size: 13px;
    line-height: 24px;
    padding: 3px 0;
    color: #ffffff;
    opacity: 0.8;
}

.footer-nav-wrap ul li a:hover,
.copyright-text a:hover,
.social-list li a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-nav-wrap .nav>li>a:focus,
.footer-nav-wrap .nav>li>a:hover {
    background-color: transparent !important;
    opacity: 1;
}

.footer-bottom {
    padding: 12px 0;
}

.payment-method ul {
    align-items: center;
    margin-bottom: 0;
}

.payment-method ul li img {
    max-width: 60px;
}

.payment-method ul li:last-child img {
    margin-right: 0;
}

@media (min-width: 320px) and (max-width: 415px) {
    .payment-method {
        display: none;
    }
}

.copyright-text {
    font-size: 13px;
    margin-bottom: 0;
    padding: 6px 0;
}

.social-list li a {
    padding: 6px 10px;
}

.footer-nav-list li a span {
    font-size: 12px;
    vertical-align: middle;
}

.bottom-sticky-footer {
    position: absolute;
    bottom: 1px;
    width: 100%;
    height: 55px;
}

.social-nav ul li a {
    color: #ffffff;
    opacity: 0.8;
    transition: all 0.3s ease-in;
}


.tooltip-hover {
    position: relative;
}

.tooltip-hover a {
    display: block;
}

.tooltip-item {
    position: absolute;
    background-color: rgb(255, 255, 255);
    pointer-events: none;
    color: rgb(51, 51, 51);
    font-size: 13px;
    bottom: 90%;
    left: 50%;
    opacity: 0;
    white-space: nowrap;
    visibility: hidden;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.2) 0 4px 15px;
    transform: translate3d(-50%, 0px, 0px);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}

.tooltip-item:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 6px solid rgb(255, 255, 255);
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
}

.tooltip-hover:hover .tooltip-item {
    opacity: 1;
    visibility: visible;
    bottom: calc(100% + 5px);
}

.tooltip.show p {
    text-align: left;
}

/*new demo style start*/


.header-main-menu {
    position: relative;
    border-radius: 0;
    width: 100%;
    z-index: 9;
    transition: all 0.2s ease-in-out;
    animation-duration: 1s;
    animation-name: slideInDown;
}

.header-main-menu.header-fixed {
    position: fixed;
    width: 100%;
    top: 0px;
    z-index: 99999;
    background: #ffffff !important;
    -webkit-box-shadow: 0 9px 18px rgba(0, 0, 0, 0.08);
    box-shadow: 0 7px 17px rgba(0, 0, 0, 0.04);
    opacity: 1;
    left: 0;
    right: 0;
    transition: all 0.2s ease-in-out;
    animation-duration: 1s;
    animation-name: slideInDown;
}


.header-main-menu.header-fixed .navbar-main .navbar-nav>li>a {
    padding-top: 2rem;
    padding-bottom: 2rem;
    transition: all 0.2s ease-in-out;
    animation-duration: 1s;
    animation-name: slideInDown;
}

.navbar-main .navbar-toggle {
    padding: 16px 15px;
}

.navbar-main .navbar-toggle span {
    background-color: #0b1730 !important;
}

/*services section css*/
.rounded {
    border-radius: 4px;
}

.section-heading-center {
    width: 70%;
    margin: 0 auto;
    display: block;
}

.section-heading-center p.mb-0 {
    margin-bottom: 0 !important;
}

.single-service-plane {
    padding: 45px;
    margin-top: 30px;
}

.single-service-plane img {
    margin-bottom: 1rem;
}

.service-plane-content h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

.action-wrap {
    margin-top: 12px;
}

@media (min-width: 320px) and (max-width: 767px) {
    .section-heading-center {
        width: 100%;
    }
}

/*=========================================
          25. BREADCRUMB CSS
============================================*/
.page-header-section {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background: #0b1730;
}



.custom-breadcrumb ol li.list-inline-item:not(:last-child) {
    margin-right: 0;
}

.custom-breadcrumb ol {
    margin-bottom: 0;
    margin-left: 0;
}

.custom-breadcrumb ol li a,
.custom-breadcrumb ol li.breadcrumb-item.active {
    opacity: 0.9;
    font-size: 13px;
    font-family: 'Roboto', sans-serif;
    ;
    color: #ffffff;
    font-weight: 300;
}

.custom-breadcrumb ol li.breadcrumb-item.active {
    color: #bababa;
}

.custom-breadcrumb ol li a:hover,
.page-header-breadcrumb .custom-breadcrumb ol li a:hover {
    opacity: 1;
}

.custom-breadcrumb ol li.breadcrumb-item {
    padding-left: 0;
}

.custom-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.border-bottom {
    border-bottom: 1px solid #ebebeb !important;
}

.custom-breadcrumb ol li.breadcrumb-item i {
    margin-left: 6px;
    vertical-align: middle;
    color: #cde1f9;
}

/*======================================
       07. PRICING SECTION CSS
=======================================*/
.card.single-pricing-pack {
    transition: all 0.2s ease 0s;
    box-shadow: 0 0 0 1px #ebebeb;
    border-radius: 1rem !important;
    border: 2px solid transparent;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.card.single-pricing-pack:hover {
    z-index: 2;
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
    transform: translate(0, -3px);
    border: 2px solid #0b1730;
}

.package-name h5 span:before,
.package-name h5 span:after {
    content: "";
    position: absolute;
}


.package-name h5 span {
    width: 184px;
    height: 20px;
    line-height: 16px;
    position: absolute;
    top: 24px;
    right: 0;
    left: 230px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 0 0 0 3px #0671ec, 0px 21px 5px -18px rgba(0, 0, 0, 0.6);
    background: #0372ec;
    text-align: center;
    color: #ffffff;
    font-size: 10px;
}

.single-pricing-pack .card-body {
    color: rgb(132, 146, 166);
    flex: 1 1 auto;
    padding: 40px 55px;
}

.single-pricing-pack .card-body.px-5 {
    padding-left: 3.5rem !important;
    padding-right: 3.5rem !important;
}

.pricing-header {
    position: relative;
    background: transparent;
    padding: 10px 15px 20px;
}

.pricing-header .price {
    font-size: 35px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    color: #404040;
}

.pricing-header .price span {
    font-size: 14px;
    margin-left: 4px;
}

.pricing-header::after {
    content: "";
    display: block;
    width: 50%;
    position: absolute;
    bottom: 0;
    left: 65%;
    margin-left: -40%;
    height: 1px;
    background: radial-gradient(at center center, rgb(0, 115, 236) 0px, rgba(255, 255, 255, 0) 75%);
}

.pricing-feature-list br {
    display: none;
}

.pricing-feature-list li i {
    font-size: 14px;
}

.pricing-feature-list li {
    font-size: 15px;
    line-height: 24px;
    color: #7c8088;
    padding: 6px 0;
}

.pricing-feature-list li span {
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    color: #404040;
    font-size: 14px;
}

.single-pricing-pack li.del {
    opacity: 0.7;
}

.popular-price {
    box-shadow: 0 1rem 3rem rgba(31, 45, 61, .125) !important;
    border: 2px solid #0b1730 !important;
}

.package-name {
    position: relative;
    background: transparent;
    padding: 35px 15px 20px;
}

.package-name h5 {
    margin-bottom: 0;
}

/*call to action */
.action-btns {
    margin-top: 15px;
}

.action-btns a:first-child {
    margin-right: 15px;
}

@media (max-width: 575px) and (min-width: 320px) {
    .action-btns a.btn {
        margin: 8px 0;
    }
}

/*about css*/
.tech-feature-list li {
    padding: 5px 0;
}

.tech-feature-list li span {
    margin-right: 8px;
}

/*=======================================
        12. FEATURE SECTION CSS
=======================================*/
/*feature box css*/
.features-box {
    position: relative;
    display: block;
    padding: 21px;
}

.features-box-icon {
    display: table-cell;
    vertical-align: top;
}

.features-box-content {
    display: table-cell;
    padding-left: 20px;
}

/*technical feature*/
.tech-feature-list li {
    font-size: 14px;
}


/*=========================================
      24. CLIENT RATTING OR REVIEW CSS
============================================*/
.single-testimonial {
    padding: 35px;
    margin-top: 20px;
}

.ratting-list {
    margin-left: 0;
}

.ratting-list li {
    background: #fbae00;
    padding: 0;
    margin: 0;
    line-height: initial
}

.ratting-list li:not(:last-child) {
    margin-right: -1px !important;
}

.ratting-list li span {
    font-size: 14px;
    color: #ffffff;
    padding: 0 4px;
    line-height: 21px;
}

.ratting-author h6 {
    font-weight: bold;
    display: inline-block;
    font-size: 13px;
}

.ratting-author small {
    text-align: right;
    float: right;
}

/*==============================
        10. FAQ CSS
===============================*/
.card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem;
}

.accordion-faq .card {
    border-radius: 0;
    border: 0;
}

.accordion-faq .card-header {
    padding: 15px 0;
    background: transparent;
    border-bottom: 1px solid #ebebeb;
    cursor: pointer;
    margin-bottom: 0 !important;
    color: inherit;

}

.accordion-faq .card-header h6 {
    font-family: 'Roboto', sans-serif;
    ;
    font-weight: 500;
    display: inline-block;
    font-size: 15px;
    line-height: 21px;
    margin: 0;
}

.accordion-faq .card-body {
    padding: 25px 0;
    background: transparent;
}

.accordion-faq .card-header.collapsed:after {
    content: "\f067";
    transition: 0.5s;
}

.accordion-faq .card-header:after {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f068";
    float: right;
    transition: 0.5s;
}

/*after login css*/

.dataTables_wrapper .dataTables_filter label {
    padding: 0 !important;
}

.dataTables_wrapper .dataTables_info {
    background-color: transparent;
    border: none;
    color: #4f5360;
    font-size: 14px;
    font-weight: 400 !important;
}

div.dataTables_wrapper div.dataTables_info {
    padding: 10px 0 8px !important;
}

.pagination>.active>a,
.pagination>.active>a:focus,
.pagination>.active>a:hover,
.pagination>.active>span,
.pagination>.active>span:focus,
.pagination>.active>span:hover {
    background-color: #0b1730;
    border-color: #0b1730;
}

.panel.panel-accent-emerald form input.form-control {
    height: calc(1.76em + .75rem + 2px) !important;
}

.home-kb-search input.form-control {
    height: 46px !important;
}

.tile .icon {
    color: #c6defa !important;
    font-size: 35px !important;
}

.top-nav a span.label {
    border-radius: .25em !important;
}

.kb-search .input-group-btn .btn {
    font-size: 14px !important;
}

#order-standard_cart .product-info {
    padding: 15px !important;
}

#order-standard_cart .summary-container {
    border-radius: 0 0 4px 4px !important;
}

#order-standard_cart .order-summary {
    background-color: #0b1730 !important;
    border-bottom: 4px solid #0b1730 !important;
}

.client-dashboard-wrap {
    margin: 0 0 30px;
}

.client-dashboard-single {
    display: block;
    color: #0b1730;
    border-radius: 6px;
    transition: all 0.3s ease-in;
    text-align: center;
    position: relative;
    padding: 35px;
    background: #f5f5f5;
    border: 1px solid #e6e8ec;
}

.client-dashboard-single:hover {
    background: transparent;
    box-shadow: 0 4px 10px rgba(31, 45, 61, .125) !important;
}

.client-dashboard-single i {
    font-size: 16px;
    padding-bottom: 5px;
    color: #c1c1c1;
    position: absolute;
    left: 10px;
    top: 10px;
}

.client-dashboard-single:hover i {
    color: #0b1730;
}

.client-dashboard-single h2,
.icon-title-wrap h5 {
    margin-bottom: 0;
}

.client-dashboard-single h2 {
    color: inherit;
    font-size: 40px;
    line-height: 42px;
    font-weight: 400;
}

.icon-title-wrap {
    position: relative;
    border-radius: 0 0 4px 4px;
}

.icon-title-wrap h5 {
    display: inline-block;
    font-size: 14px;
    color: #777474;
}

.affiliate-stat {
    margin-bottom: 20px;
}

.affliate-sign-up .alert-info {
    background: none;
    border: none;
    padding: 0;
}

.affliate-sign-up .alert-info h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;

}

.tab-content.margin-bottom .col-sm-offset-1 {
    margin-left: 0 !important;
}

.tab-content.margin-bottom .row h2 {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}

.tab-content.margin-bottom .row h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.dataTables_wrapper .dataTables_filter label .form-control {
    background: url(../../../assets/img/search.png) #fff no-repeat 5px 5px;
    padding: 0px 5px 0px 35px !important;
    border-color: #e6e8ec;
    height: 35px;
}


.overdue-invoices {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

[class~='overdue-invoices']:last-of-type {
    margin-bottom: 20px !important;
}

.alert-content {
    display: flex;
    align-items: baseline;
    max-width: 90%;
    width: 100%;
}

.alert-content p {
    margin-bottom: 0;
    padding-left: 5px;
}

.alert-action a.close {
    font-size: 16px;
}

.alert-action {
    right: 0;
    position: absolute;
    display: flex;
    align-items: center;
    width: 8%;
}

.custom-panel-box {
    border: 1px solid #e6e8ec;
    border-radius: 3px;
    position: relative;
    display: block;
    box-shadow: none;
    margin-bottom: 30px;
}

.client-home-panels .panel>.list-group {
    border-bottom: 0;
}

.client-home-panels .panel>.list-group .list-group-item {
    padding: 16px;
    font-size: 14px;
}

.client-home-panels .panel small,
.client-home-panels .panel>.list-group .list-group-item span {
    font-size: 12px;
    color: #a2a0a0;
}

.client-home-panels .panel>.list-group .list-group-item span.text-domain {
    color: #0b1730;
}

.client-home-panels .panel>.list-group .list-group-item span.label {
    color: #ffffff;
    font-size: 11px;
    border-radius: 2px;
}

.client-home-panels .panel>.list-group .list-group-item span.label,
.client-home-panels .panel>.list-group .list-group-item .label {
    font-size: 11px;
    border-radius: 2px;
}

.client-home-panels .panel .list-group .list-group-item:last-of-type {
    border-bottom: 0;
}

.client-home-panels .panel .list-group {
    max-height: 328px;
    overflow-y: auto;
    position: relative;
    border-top: 1px solid #ebebeb;
}

.client-home-panels .panel.custom-panel-box>.list-group .list-group-item:hover {
    background: #fafafa;
}

.client-home-panels .custom-domain-register {
    overflow: hidden;
    position: relative;
    background: #3c4e77 !important;
    border: none;
    padding: 25px 5px;
}

.custom-domain-register form .input-group {
    display: flow-root;
    flex-wrap: wrap;
    margin: 20px;
}

.custom-domain-register form .input-group .form-control {
    border-radius: 4px;
}

.custom-domain-register form .input-group-btn {
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-direction: row-reverse;
}

.custom-domain-register form .input-group-btn .btn {
    flex: 1;
    height: 48px;
    padding: 8px 24px;
    font-size: 14px;
    line-height: 28px;
    border-radius: 4px;
    color: #0b1730;
    background-color: #e3effc;
    border-color: #e3effc;
    font-weight: 500;
}

.custom-domain-register form .input-group-btn .btn:focus {
    outline: none;
    border: 0;
}

.custom-domain-register form .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-radius: 4px;
}

.custom-domain-register form .input-group-btn .btn-success {
    margin-left: 10px;
    color: #ffffff;
    background-color: #0b1730;
    border-color: #0b1730;
}

tr.masspay-invoice-detail td {
    font-size: 12px;
}

.panel>.list-group .ticket-details-children .title,
.list-group-item .badge {
    color: hsla(0, 0%, 100%, .64);
}

.list-group-item>i.far.fa-circle {
    display: none;
}

.ticket-panel {
    border: 1px solid #e6e8ec;
    border-radius: 4px;
    box-shadow: none;
}

.ticket-panel .panel-heading {
    border-bottom: 0;
    cursor: pointer;
    border-color: #e6e8ec;
    background: #f5f5f5;
}

.ticket-reply {
    margin: 30px 0;
    border: 1px solid #e6e8ec;
    border-radius: 4px;
}

.collapse-icon {
    top: -3px;
    position: relative;
}

.ticket-replay-header {
    background: #f5f5f5;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ticket-reply .user {
    background: none;
    padding: 0;
    display: flex;
    align-items: baseline;
}

.ticket-replay-header .user i {
    font-size: 14px;
    padding: 0;
    color: #b9bdc5;
    margin-right: 10px;
}

.ticket-reply .user .name {
    font-size: 15px;
    font-weight: 700;
}

.ticket-reply .info {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    line-height: 18px;
    color: #7c8088;
}

.ticket-reply .user .type {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.ticket-reply .date {
    float: none;
    padding: 0;
    font-size: 13px;
}

.ticket-reply .attachments ul {
    padding: 0;
}

.ticket-reply .attachments ul li {
    font-size: 13px;
}

.ticket-reply .attachments {
    border-top: 1px dashed #e6e8ec;
    background-color: #f5f5f5;
    font-size: 14px;
}

.ticket-reply .attachments strong {
    font-weight: 500 !important;
}

#containerAddCcEmail .input-group-btn button.btn {
    padding: 11.5px;
    font-weight: 500;
    color: #0b1730;
    background-color: #d5e7fb;
    border-color: #d5e7fb;
}

#containerAddCcEmail .input-group-btn button.btn:focus {
    outline: none;
}

.recent-ticket small span:last-of-type {
    color: #1fc063 !important;
}


/*alert customize*/

.alert-success {
    color: #60a561;
    background-color: #e9f3e5;
    border-color: #daeacc;
}

.alert-info {
    color: #0b1730;
    background-color: #eaf1fb;
    border-color: #d5e2f6;
}

.alert-warning {
    color: #926420;
    background-color: #f9f0e3;
    border-color: #f7e5cc;
}

.alert-danger {
    background-color: #f7ecec;
    border-color: #f5dce0;
    color: #d26765;
}

/*standard css*/
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 5px;
}

#registration .field,
#registration .form-control {
    height: calc(2.56em + .75rem + 2px);
    box-shadow: none;
    border-color: #ececec;
}

#registration .prepend-icon .field-icon {
    line-height: 44px;
}

.intl-tel-input.separate-dial-code.allow-dropdown.iti-sdc-4 .selected-flag:focus {
    outline: none;
}

.intl-tel-input .flag-container {
    padding: 0;
}

#registration .sub-heading {
    margin-top: 0;
    height: auto;
    margin-bottom: 5px;
    text-align: left;
    border: none;
}

#registration .sub-heading span,
#registration .sub-heading-borderless span {
    display: inline-block;
    position: relative;
    font-family: 'Roboto', sans-serif;
    ;
    font-size: 15px;
    font-weight: 500;
    color: #0b1730;
    background-color: #fff;
    padding: 0;
    top: 0;
}

#containerNewUserSecurity .row {
    margin-bottom: 20px;
}

.table-container {
    display: block;
    overflow: hidden;
    padding: 0;
}

.dataTables_length label {
    margin-bottom: 0;
}

.dataTables_wrapper .dataTables_length label {
    padding: 10px;
}

.dataTables_wrapper .dataTables_paginate {
    padding: 10px 10px 0;
}

.dataTables_wrapper table.table-list thead th,
.dataTables_wrapper table.table-list thead th:nth-child(even) {
    border-bottom: 0;
    background: #0b1730;
    font-size: 13px;
    padding: 12px;
    color: hsla(0, 0%, 100%, .64);
    text-align: left;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.dataTables_wrapper table.table-list thead th.sorting_asc,
.dataTables_wrapper table.table-list thead th.sorting_desc {
    background: #0b1730;
}

.dataTables_wrapper table.table-list thead th.sorting_asc:focus,
.dataTables_wrapper table.table-list thead th.sorting_desc:focus {
    outline: none;
    border: none;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin: 0;
}

.status-custom,
.status {
    border: none !important;
    background: transparent;
    font-size: 11px;
    font-weight: 500;
}

.table-list>tbody>tr:nth-child(even)>td:focus {
    outline: none;
}

.dataTables_wrapper table.table-list {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #e6e8ec;
}

table.dataTable tbody tr td {
    padding: 8px 12px;
}

.table-list>tbody>tr:nth-child(even)>td {
    background-color: transparent;
}

table.dataTable tbody tr td img {
    width: 20px;
}

table.dataTable tbody tr td i {
    font-size: 13px;
}

.panel-sidebar>.panel-heading,
.panel-sidebar .panel-heading {
    background-color: #0b1730;
    border-color: #038bec;

}

.client-home-panels .panel>.panel-heading {
    background-color: #f5f5f5;
    padding: 15px;

}

.client-home-panels .panel>.panel-heading .panel-title {
    font-size: 15px;
    color: #404040;
}

.panel-sidebar .list-group-item,
.panel-sidebar .panel-body,
.list-group-tab-nav {
    color: hsla(0, 0%, 100%, .64);
    background: #0b1730;
    border: 1px solid hsla(0, 0%, 100%, .24);
    font-size: 14px;
    line-height: 26px;
}

.panel-sidebar a.list-group-item:hover,
.list-group-tab-nav a.list-group-item.disabled:hover {
    background-color: #d5e7fb;
    color: #0b1730;
}

.panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
    display: none;
}

.search-form-wrap {
    background: #f5f5f5;
    padding: 40px;
    border: 1px solid #e6e8ec;
    border-radius: 6px;
    margin-bottom: 20px;
}

.ticket-number {
    font-weight: 500;
    color: #5f5b5b;
    font-size: 13px;
    font-style: normal;
}

tbody .mass-pay-single {
    display: block;
    border: 1px solid #e6e8ec;
}

.status-panel .panel-body {
    font-size: 14px;
    line-height: 28px;
}

.status-panel .panel-body span {
    background: transparent;
}

.panel-info>.panel-heading {
    color: #2a2e36;
    background-color: #0b1730;
    border-color: #e6e8ec;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
}

.status-panel.panel-info {
    border-color: #e6e8ec;
    box-shadow: none;
}

.status-panel .panel-footer {
    background: transparent;
    display: flex;
    justify-content: space-between;
}

.status-panel .panel-footer span {
    color: #8c8c8c;
}

.status-panel .panel-footer span strong {
    font-weight: 500 !important;
}

.mass-pay-table tbody {
    border: 1px solid #e6e8ec;
}

.table.mass-pay-table>thead>tr>th {
    border-bottom: none;
}

.table.mass-pay-table .bg-info {
    background-color: #f5f5f5;
}

.forgot-link {
    float: right;
}

.ticket-departments {
    border: 1px solid #e6e8ec;
    background: #fff;
    border-radius: 6px;
    margin-top: 20px;

}

.ticket-departments>a {
    display: flex;
    padding: 18px 16px;
}

.ticket-departments>a:hover {
    background-color: #fafafa;
}

a .department-info {
    padding-left: 12px;
}

a .department-info p {
    color: #7c8088 !important;
    margin-bottom: 0;
}

.department-info span {
    font-size: 15px;
    display: flex;
    align-items: center;
    font-weight: 500;
    margin-bottom: 10px;
}


/*product details css*/
.product-status {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #0b1730;
    border-radius: 4px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .05);
}

div.product-details .product-info-wrap,
.overview-info-wrap {
    padding: 30px;
    background: #f5f5f5;
    border: 1px solid #e6e8ec;
    border-radius: 3px;

}

.overview-info-wrap:not(.ssl-overview) {
    min-height: 295px;
}

.ssl-overview {
    background: #0b1730;
    color: #fff;
}

div.product-details div.product-icon {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    font-size: inherit;
}

.product-status {
    margin: 0;
}

.product-details .product-icon .fa-stack {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 5px;
    color: #fff;
    font-size: 65px;
}

.product-status-text {
    padding: 0;
    text-transform: capitalize;
    display: flex;
    align-items: center;
}

.product-status-text span.label {
    font-size: 13px;
    line-height: 13px;
    border-radius: 2px;
    text-transform: uppercase;
    margin-left: 8px;
    padding-top: 4px;
}

@media only screen and (max-width: 767px) {
    .product-details .product-status {
        margin-bottom: 15px;
    }
}

.product-info-list,
.addon-info-list {
    padding: 0;
    margin: 0;
}

.product-info-list li {
    margin-bottom: 15px;
}

.product-info-list li:last-child {
    margin-bottom: 0 !important;
}

.product-info-list li {
    flex-direction: column;
}

.product-info-list li {
    display: flex;
}

.list-info-title,
.left-title {
    color: #a0a0a0;
}

.product-info-list .list-info-text {
    font-size: 15px;
    font-weight: 500;
    line-height: 23px;
}

.product-info-list .ssl-inactive .list-info-title {
    color: #ffffff;
}

.gradient-bg .product-info-list span.list-info-text {
    color: #ffffff;
}

.pay-invoice {
    border: 1px solid #0b1730;
    padding: 2px 10px;
}

.view-message {
    border: none;
    background: transparent;
    width: 15px;
    height: 15px;
    line-height: 15px;
    position: absolute;
}

.view-message i {
    margin-left: -5px;
}

.view-message:focus {
    outline: none;
}

.row-eq-height {
    display: flex;
    flex-wrap: wrap;
}

.row-eq-height>div[class*=col-] {
    display: flex;
}

.row-eq-height>div[class*=col-]>* {
    width: 100%;
}

.custom-panel {
    border-color: #f5f5f5 !important;
}

.custom-panel>.panel-heading {
    background-color: #fafafa;
    border-color: #f5f5f5;
}

.addon-info-list li {
    display: flex;
}

.left-title,
.right-text {
    flex-basis: 50%;
    word-break: break-word;
}

a.remove-icon {
    color: #ffffff;
    opacity: 0.8;
}

a.remove-icon:hover {
    opacity: 1;
}

/*affiliats*/

.referral-commission-table {
    border: 1px solid #ebebeb;
    display: block;
    padding: 15px;
    border-radius: 6px;
    background: #f5f5f5;
}

.table.referral-commission-table>tbody>tr>td {
    border: none;
    width: 100%;
}

.affiliate-referral-link {
    margin-bottom: 20px;
    margin-top: 0;
    background: #0b1730;
    border-radius: 6px;
    padding: 25px;
}

.affiliate-referral-link h5 {
    font-size: 16px;
    color: #ffffff;
}

.affiliate-referral-link span {
    font-size: 15px;
    border-radius: 4px;
    background: #ffffff;
}

.referals-headding h2 {
    font-size: 18px;
    line-height: 28px;
}

/*account*/
.edit-payment-heading {
    color: #5f5e5e;
    font-size: 18px;
    line-height: 28px;
}

.custom-card-block {
    border: 1px solid #e6e8ec;
    background: #fafafa;
    padding: 30px;
    border-radius: 6px;
}

.custom-card-block.well {
    box-shadow: none;
}

.account-eidt label {
    font-weight: 500;
    color: #757575;
}

.sub-contact .checkbox {
    margin-top: 0;
    margin-bottom: 20px;
}

.details-form .sub-heading h3,
.sub-heading h3 {
    display: inline-block;
    position: relative;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.btn+.btn {
    margin-left: 8px;
}

.delete-btn {
    padding: 12px 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 13px;
    transition: all .25s ease-in-out;
    background: #ff6e63;
    color: #fff;
}

.btn-success {
    background: #1fc063;
    border-color: #1fc063;
}

.btn-danger {
    background: #ff6e63;
    border-color: #ff6e63;
}

.delete-btn:hover {
    background: transparent;
    border-color: #ff6e63;
}

.popover-user-notifications {
    border-radius: 6px;
    padding: 0;
    border-color: #e6e8ec;
}

.popover-user-notifications ul li {
    padding: 0;
    border-color: #e6e8ec;
}

.popover-user-notifications ul li a:hover {
    background-color: transparent;
}

table.payment-method-table {
    border: 1px solid #e6e8ec;
}

table.payment-method-table>tbody>tr>th {
    border: none;
    color: #716b6b;
    font-weight: 400;
}

table.payment-method-table>tbody>tr>td {
    border-top: 1px solid #e6e8ec;
    vertical-align: middle;
    line-height: inherit;
    padding: 9px 15px;
}

table.payment-method-table>tbody>tr>td {
    border-right: 1px solid #e6e8ec;
}


#cvvWhereLink {
    border: none;
    background: transparent;
}

#cvvWhereLink:focus {
    outline: none;
}

.modal.in .modal-dialog {
    height: 100vh;
    display: flex;
    align-items: center;
}

.modal-content {
    width: 100%;
}

.modal-dialog .panel-primary>.panel-heading {
    background: #0b1730;
    border: 1px solid hsla(0, 0%, 100%, .24);

}

.modal-dialog .panel-primary>.panel-heading .close {
    color: #ffffff;
    text-shadow: none;
    opacity: .6;
}

.modal-dialog .panel-primary>.panel-heading button.close:focus {
    outline: none;
}

#frmGeneratePassword .modal-title {
    color: hsla(0, 0%, 100%, .64);
    font-size: 16px;
}

#modalEmptyCart .modal-title i,
#order-standard_cart .modal-title i {
    color: #fb665b;
}

.add-new-address {
    margin-top: 10px;
    display: block;
    padding-left: 5px;
    font-size: 14px;
    font-weight: 500;
}

.form-horizontal .control-label {
    color: #7c8088;
    font-weight: 500;
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: left;

    }
}

.check-all-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.pass-generation-wrap .form-group {
    margin-left: 0;
    margin-right: 0;
}

.has-feedback label~.form-control-feedback {
    top: 41px !important;
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 0;
}

.btn-check-all {
    border: 1px solid #f5f5f5;
    background: #ffffff;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
}

.btn-check-all {
    padding: 5px 12px;
    border-color: #0b1730;
}

.btn-check-all:focus {
    outline: none !important;
}

.listtable table {
    width: 100% !important;
}

.password-wrap {
    display: flex;
    margin-top: 20px;
    align-items: center;
}

.change-password-wrap .primary-solid-btn,
.outline-btn.generate-password {
    border-color: #ebebeb;
    background: #ebebeb;
    color: #545454;
    box-shadow: none;
    padding: 6px 15px;
    font-weight: 400;
    font-size: 12px;
}

.change-password-wrap .primary-solid-btn:focus {
    outline: none;
}

.password-wrap .progress {
    flex: 1;
    margin: 0 0 0 12px;
}

.password-wrap .progress {
    overflow: hidden;
    background-color: #e5f1ff;
    border-radius: 2px;
    height: 10px;
}

.password-strength-meter p {
    display: none;
}

.progress-bar-striped,
.progress-striped .progress-bar {
    background-image: none;
}

.password-wrap .progress-bar-warning {
    background-color: #0b1730;
}

#registration .prepend-icon .field {
    padding-left: 15px;
}

.marketing-email-optin .bootstrap-switch {
    border-radius: 20px;

}

.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.bootstrap-switch .bootstrap-switch-handle-on {
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.bootstrap-switch .bootstrap-switch-handle-off {
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
}

.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
    background: #f7bfbf;
}

/*login css*/
.auth-wrap {
    background: #0b1730;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.auth-wrap #main-body {
    background: transparent !important;
    display: flex;
    align-items: center;
    height: auto;
    flex: 1 0 auto;
}

.auth-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.auth-content-wrap .logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.header-lined.auth-header {
    margin-bottom: 35px;
}

.header-lined.auth-header p {
    color: #b7b2b2;
    font-size: 13px;
}

.header-lined.auth-header h1 {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

.logincontainer {
    max-width: 360px !important;
}

.logincontainer,
.signupcontainer {
    border: 1px solid #e6e8ec;
    border-radius: 6px;
    padding: 35px !important;
    background: #ffffff;
    margin: 20px auto;
    width: 100%;

}

.logincontainer.signupcontainer {
    max-width: 718px !important;
}

.signupcontainer {
    margin: 20px auto !important;
}

@media (min-width: 768px) {
    .logincontainer.with-social .login-form {
        padding: 0 !important;
        border-right: none;
    }
}

.social-signin-btns button {
    margin-bottom: 0;
}

.btn-social.btn-google {
    padding: 10px 30px;
    text-align: center;
}

.logincontainer .custom-social-signup .social-signin-btns .btn {
    width: auto;
}

.custom-social-signup .btn-social.btn-google {
    margin: 0 auto;
}

.custom-social-signup .sub-heading {
    display: none;
}

.custom-social-signup .social-signin-btns {
    padding-top: 0;
}

.other-login-signup {
    text-align: center;
    overflow: hidden;
}

.other-login-signup .or-login-signup {
    text-align: center;
    display: inline-block;
    position: relative;
    padding: 0 25px;
    z-index: 1;
}

.other-login-signup .or-login-signup:before {
    display: inline-block;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #e5e9f2;
    left: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}

.other-login-signup .or-login-signup:after {
    display: inline-block;
    content: "";
    height: 1px;
    width: 100%;
    background-color: #e5e9f2;
    right: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 1;
}



.listtable {
    border-radius: 6px;
}

.listtable table.dataTable {
    margin: 0 !important;
    border-radius: 3px;
}

.listtable .table>thead>tr>th {
    border-bottom: 0 !important;
}

.dataTables_wrapper .dataTables_length {
    background: transparent;
}

table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    font-family: "Font Awesome 5 Pro" !important;
    font-weight: 900;
    top: 12px !important;
    right: 12px !important;
}

table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after {
    opacity: 1 !important;
}

table.dataTable thead .sorting_asc:after {
    content: "\f0dd" !important;
}

table.dataTable thead .sorting_desc:after {
    content: "\f0de" !important;
}

table.dataTable thead .sorting:after {
    content: "\f0dc" !important;
}



/*addons css*/
.single-addon {
    display: flex;
    align-items: flex-start;
    border: 1px solid #e6e8ec;
    padding: 20px;
    margin: 20px 0;
    border-radius: 6px;
}

.addon-icon {
    margin-right: 15px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #7b7b7b;
}

.addon-icon i {
    font-size: 30px;
}

.addon-info form .btn {
    margin-top: 10px;
}


/*no data found css*/

.message-no-data {
    padding: 32px;
    min-height: 320px;
    justify-content: center;
    border: 1px solid #e6e8ec;
}

.message-no-data .message-image {
    margin-bottom: 15px;
    color: #a2a1a1;
}

.message,
.message-icon {
    display: flex;
    align-items: left;
}

.message {
    flex-direction: column;
    background: #fff;
    border-radius: 4px;
}

.message hr {
    margin: 0;
}

.imagem {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   INNOVA HOST — CAMADA DE MODERNIZAÇÃO GLOBAL DO TEMA
   Anexar ao FINAL de css/custom.css
   Design system: navy #0b1730 · hero #0b1730 · accent #2a6bbf
   Superfícies #f4f8ff/#f7f9fc · texto #1a2640/#4a5568/#6b7a99
   ============================================================ */

/* ---------- 1. Cabeçalho de página (todas as páginas) ---------- */
.page-header-section {
    background: #0b1730;
    border-bottom: 0;
    padding: 36px 0 40px;
}

.page-header-content h1 {
    font-weight: 700;
    letter-spacing: -0.3px;
}

.custom-breadcrumb ol li a,
.custom-breadcrumb ol li.breadcrumb-item.active {
    color: #a8c8f0;
    font-weight: 400;
}

.custom-breadcrumb ol li.breadcrumb-item.active {
    color: #6a89b8;
}

/* ---------- 2. Cor secundária: roxo legado -> azul da marca ---------- */
.secondary-solid-btn {
    background: #2a6bbf;
    border-color: #2a6bbf;
}

.secondary-solid-btn:hover {
    color: #2a6bbf;
    border-color: #2a6bbf;
}

.secondary-outline-btn {
    color: #2a6bbf;
    border-color: #2a6bbf;
}

.secondary-outline-btn:hover {
    background: #2a6bbf;
    border-color: #2a6bbf;
}

/* ---------- 3. Botões ---------- */
.btn {
    border-radius: 7px;
}

.outline-btn,
.secondary-solid-btn,
.primary-solid-btn,
.solid-white-btn,
.outline-white-btn,
.secondary-outline-btn {
    border-radius: 7px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.primary-solid-btn:hover {
    background: #1a3f78;
    border-color: #1a3f78;
    color: #ffffff;
}

.outline-btn:after {
    border-radius: 7px;
}

.btn-primary,
.btn.btn-action {
    background-color: #0b1730;
    border-color: #0b1730;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn.btn-action:hover {
    background-color: #1a3f78;
    border-color: #1a3f78;
}

/* ---------- 4. Painéis / cards ---------- */
.panel {
    border-radius: 10px;
    border: 1px solid #d0d4dc;
    box-shadow: none;
    overflow: hidden;
}

.panel-default > .panel-heading,
.panel-sidebar > .panel-heading,
.client-home-panels .panel > .panel-heading {
    background-color: #0b1730;
    border-bottom: 0;
    color: #ffffff;
}

.panel-default > .panel-heading .panel-title,
.panel-sidebar .panel-title,
.client-home-panels .panel > .panel-heading .panel-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.panel-sidebar .panel-minimise {
    color: #a8c8f0;
}

.panel-sidebar > .panel-footer {
    background-color: #f7f9fc;
    border-top: 1px solid #e2e8f0;
}

.panel-primary {
    border-color: #d0d4dc;
}

.panel-primary > .panel-heading {
    background-color: #0b1730;
    border-color: #0b1730;
}

.custom-card-block,
.custom-card-block.well {
    border-radius: 10px;
    border: 1px solid #d0d4dc;
    background: #ffffff;
    box-shadow: none;
}

/* Painéis com faixa de destaque colorida — normaliza para o azul da marca */
.panel.panel-accent-gold,
.panel.panel-accent-green,
.panel.panel-accent-red,
.panel.panel-accent-blue,
.panel.panel-accent-orange,
.panel.panel-accent-pink,
.panel.panel-accent-purple,
.panel.panel-accent-lime,
.panel.panel-accent-magenta,
.panel.panel-accent-teal {
    border-top: 3px solid #2a6bbf;
}

/* ---------- 5. Sidebar (lista de ações) ---------- */
/* O tema original pinta o corpo dos painéis laterais de navy;
   no novo design apenas o cabeçalho é navy e o corpo é branco */
.panel-sidebar .list-group-item,
.panel-sidebar .panel-body,
.list-group-tab-nav {
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #f0f2f5;
    color: #4a5568;
}

.panel-sidebar .list-group-item:last-child,
.list-group-tab-nav .list-group-item:last-child {
    border-bottom: 0;
}

.panel-sidebar .panel-body {
    border-bottom: 0;
}

.list-group-tab-nav a.list-group-item {
    color: #4a5568;
}

.list-group-tab-nav a.list-group-item:hover {
    background-color: #f4f8ff;
    color: #0b1730;
}

.panel-sidebar .list-group-item .badge {
    background-color: #f4f8ff;
    color: #185fa5;
}

.panel-sidebar a.list-group-item.active .badge {
    background-color: #0b1730;
    color: #ffffff;
}

.panel-sidebar a.list-group-item:hover {
    background-color: #f4f8ff;
    color: #0b1730;
}

.panel-sidebar a.list-group-item.active,
.panel-sidebar a.list-group-item.active:focus,
.panel-sidebar a.list-group-item.active:hover,
div.sidebar .list-group-item-selected {
    background-color: #f4f8ff !important;
    border-left: 3px solid #2a6bbf;
    color: #0b1730;
    font-weight: 600;
}

div.sidebar .list-group-item-selected .badge {
    background-color: #0b1730;
    color: #ffffff;
}

.panel-sidebar .list-group-item i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
    display: inline-block;
    color: #185fa5;
    width: 18px;
    text-align: center;
    margin-right: 6px;
}

.panel-sidebar a.list-group-item.active i:not(.fa-circle):not(.fa-dot-circle):not(.no-transform) {
    color: #185fa5;
}

/* ---------- 6. Tabelas (listagens e DataTables) ---------- */
table.table-list thead th {
    background-color: #0b1730;
    border-bottom: 0;
    color: #a8c8f0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.dataTables_wrapper table.table-list thead th,
.dataTables_wrapper table.table-list thead th:nth-child(even) {
    border-bottom: 3px solid #2a6bbf;
    background-color: #0b1730;
    color: #a8c8f0;
}

.dataTables_wrapper table.table-list thead th.sorting_asc,
.dataTables_wrapper table.table-list thead th.sorting_desc {
    background-color: #0b1730;
    color: #ffffff;
}

.table-list > tbody > tr:nth-child(even) > td {
    background-color: #f7f9fc;
}

.table-list > tbody > tr:hover > td {
    background-color: #f4f8ff;
}

.dataTables_wrapper .dataTables_info {
    background-color: transparent;
    border-bottom: 0;
    color: #6b7a99;
}

.dataTables_wrapper .dataTables_length {
    background-color: transparent;
    color: #6b7a99;
}

.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_filter input {
    background-color: transparent;
}

.dataTables_wrapper .dataTables_filter input,
table.table-list + .dataTables_filter input,
.dataTables_filter .form-control {
    background-color: #ffffff;
    border: 1px solid #d0d4dc;
    border-radius: 7px;
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background-color: #0b1730;
    border-color: #0b1730;
}

.pagination > li > a,
.pagination > li > span {
    color: #185fa5;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before,
table.dataTable.dtr-column > tbody > tr > td.control:before,
table.dataTable.dtr-column > tbody > tr > th.control:before {
    background-color: #2a6bbf;
}

/* ---------- 7. Status como badges (pills) ---------- */
.status {
    display: inline-block;
    padding: 2px 14px;
    border: 0;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
    background-color: #f0f2f5;
    color: #6b7a99;
}

.status-active,
.status-completed,
.status-open,
.status-paid,
.status-accepted,
.status-delivered {
    background-color: #eaf3de;
    color: #3b6d11;
}

.status-pending,
.status-suspended,
.status-onhold,
.status-pending.transfer {
    background-color: #fff8e1;
    color: #7a5c00;
}

.status-unpaid,
.status-overdue,
.status-inprogress,
.status-collections,
.status-fraud,
.status-terminated {
    background-color: #fcebeb;
    color: #a32d2d;
}

.status-customer-reply,
.status-answered {
    background-color: #f4f8ff;
    color: #185fa5;
}

.status-cancelled,
.status-closed,
.status-expired,
.status-refunded,
.status-dead,
.status-lost,
.status-transferred.away {
    background-color: #f0f2f5;
    color: #6b7a99;
}

/* ---------- 8. Tiles do painel (estatísticas) ---------- */
.tiles .tile {
    background-color: #ffffff;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    margin: 0 6px 12px;
    transition: all .15s;
}

.tiles .tile:hover {
    background-color: #ffffff;
    border-color: #2a6bbf;
    box-shadow: 0 4px 16px rgba(21, 52, 98, 0.10);
    transform: translateY(-2px);
}

.tile .stat {
    color: #0b1730;
    font-weight: 700;
}

.tile .title {
    color: #6b7a99;
    letter-spacing: 0.06em;
}

.tile .icon {
    color: #c3d9f8;
}

.tiles .tile .highlight {
    background-color: #2a6bbf !important;
}

/* ---------- 9. Formulários ---------- */
.form-control {
    border-radius: 7px;
    border-color: #d0d4dc;
    color: #1a2640;
}

.form-control:focus {
    border-color: #2a6bbf;
    box-shadow: 0 0 0 3px rgba(42, 107, 191, 0.12);
}

label {
    color: #4a5568;
}

/* ---------- 10. Alertas ---------- */
.alert {
    border-radius: 8px;
}

.alert-success {
    color: #2d5a11;
    background-color: #eaf3de;
    border-color: #b2d99a;
}

.alert-info {
    color: #185fa5;
    background-color: #f4f8ff;
    border-color: #c3d9f8;
}

.alert-warning {
    color: #7a5c00;
    background-color: #fff8e1;
    border-color: #ffe082;
}

.alert-danger {
    color: #a32d2d;
    background-color: #fcebeb;
    border-color: #f09595;
}

/* ---------- 11. Tickets ---------- */
.ticket-reply {
    border-radius: 10px;
    border-color: #e2e8f0;
    overflow: hidden;
}

.ticket-reply .user {
    background-color: #f7f9fc;
}

.ticket-reply.staff {
    border-color: #c3d9f8;
}

.ticket-reply.staff .user {
    background-color: #f4f8ff;
}

.ticket-number {
    color: #185fa5;
}

/* ---------- 12. Links e tipografia ---------- */
a {
    color: #185fa5;
}

a:hover,
a:focus {
    color: #0b1730;
}

div.header-lined h1 {
    color: #0b1730;
}

/* ---------- 13. E-mail verification bar ---------- */
.email-verification .btn {
    background-color: #0b1730;
    border-color: #0b1730;
    border-radius: 7px;
}

.email-verification .btn:active,
.email-verification .btn[disabled]:hover {
    background-color: #0b1730;
    border-color: #0b1730;
}

/* ---------- 14. Modais ---------- */
.modal-content {
    border-radius: 12px;
    border: 1px solid #d0d4dc;
}

.modal-header {
    background-color: #0b1730;
    color: #ffffff;
    border-radius: 12px 12px 0 0;
    border-bottom: 3px solid #2a6bbf;
}

.modal-header .modal-title,
.modal-header .modal-title span,
.modal-header .modal-title i,
.modal-header h4 {
    color: #ffffff;
}

.modal-header .close {
    color: #ffffff;
    text-shadow: none;
    opacity: 0.7;
}

.modal-header .close:hover {
    opacity: 1;
    color: #ffffff;
}

/* ============================================================
   BASE DE CONHECIMENTO — knowledgebase.tpl / cat / article
   ============================================================ */

/* Busca flutuante sobre o cabeçalho de página */
.kb-search-float {
    max-width: 720px;
    margin: 28px auto 36px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.kb-search-card {
    background: #fff;
    border: 1px solid #d0d4dc;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    gap: 8px;
    box-shadow: 0 6px 24px rgba(21, 52, 98, 0.14);
}

.kb-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 14px;
    color: #1a2640;
    background: transparent;
}

.kb-search-btn {
    background: #0b1730;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s;
}

.kb-search-btn:hover {
    background: #1a3f78;
}

.kb-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #185fa5;
    font-weight: 700;
    margin: 0 0 16px;
}

/* Grid de categorias */
.kb-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .kb-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
    .kb-cat-grid { grid-template-columns: 1fr; }
}

.kb-cat-card {
    background: #fff;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    padding: 20px 18px;
    text-align: center;
    transition: all .15s;
    text-decoration: none;
    display: block;
}

.kb-cat-card:hover,
.kb-cat-card:focus {
    border-color: #2a6bbf;
    box-shadow: 0 4px 16px rgba(21, 52, 98, 0.10);
    transform: translateY(-2px);
    text-decoration: none;
}

.kb-cat-icon {
    width: 48px;
    height: 48px;
    background: #f4f8ff;
    border: 1px solid #c3d9f8;
    border-radius: 12px;
    line-height: 48px;
    font-size: 19px;
    color: #185fa5;
    margin: 0 auto 12px;
}

.kb-cat-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a2640;
    margin-bottom: 5px;
}

.kb-cat-count {
    display: inline-block;
    background: #f4f8ff;
    border-radius: 20px;
    padding: 1px 10px;
    font-size: 11px;
    font-weight: 600;
    color: #185fa5;
    margin-bottom: 8px;
}

.kb-cat-desc {
    font-size: 11px;
    color: #9aa3b2;
    line-height: 1.5;
    margin: 0;
}

/* Grid de artigos */
.kb-popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 40px;
}

@media (max-width: 767px) {
    .kb-popular-grid { grid-template-columns: 1fr; }
}

.kb-article-card {
    background: #fff;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color .15s;
    text-decoration: none;
}

.kb-article-card:hover,
.kb-article-card:focus {
    border-color: #2a6bbf;
    text-decoration: none;
}

.kb-article-icon {
    width: 34px;
    height: 34px;
    background: #f4f8ff;
    border: 1px solid #c3d9f8;
    border-radius: 8px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color: #185fa5;
    flex-shrink: 0;
}

.kb-article-content {
    flex: 1;
    min-width: 0;
}

.kb-article-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #0b1730;
    margin-bottom: 4px;
}

.kb-article-preview {
    font-size: 12px;
    color: #6b7a99;
    line-height: 1.6;
    margin: 0;
}

.kb-article-edit {
    display: block;
    margin-top: 6px;
    font-size: 11px;
}

/* Página do artigo */
.kb-article-wrap {
    background: #fff;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 36px;
}

.kb-article-header {
    background: #f7f9fc;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 28px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.kb-article-header-main h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a2640;
}

.kb-article-header-main .admin-inline-edit {
    font-size: 12px;
}

.kb-print-btn {
    width: 38px;
    height: 38px;
    background: #f4f8ff;
    border: 1px solid #c3d9f8;
    border-radius: 8px;
    line-height: 38px;
    text-align: center;
    color: #185fa5;
    flex-shrink: 0;
    transition: all .15s;
}

.kb-print-btn:hover,
.kb-print-btn:focus {
    background: #e6f1fb;
    color: #0b1730;
    text-decoration: none;
}

.kb-article-body {
    padding: 28px;
    font-size: 15px;
    line-height: 1.8;
    color: #4a5568;
    font-weight: 400;
}

.kb-article-body h1,
.kb-article-body h2,
.kb-article-body h3,
.kb-article-body h4 {
    color: #1a2640;
}

.kb-article-body a {
    color: #185fa5;
}

.kb-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.kb-article-body pre,
.kb-article-body code {
    background: #f0f4ff;
    border: 1px solid #b8ccf0;
    border-radius: 6px;
    color: #1a2640;
}

/* Avaliação do artigo */
.kb-rate-box {
    background: #f4f8ff;
    border-top: 1px solid #c3d9f8;
    padding: 18px 28px;
}

.kb-rate-box form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.kb-rate-question h5 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #185fa5;
}

.kb-rate-question p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #6b7a99;
}

.kb-rate-question p .fa-heart {
    color: #d9534f;
}

.kb-vote-btn {
    background: #fff;
    border: 1px solid #c3d9f8;
    border-radius: 7px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #185fa5;
    cursor: pointer;
    transition: all .15s;
}

.kb-vote-btn:hover {
    border-color: #2a6bbf;
    background: #e6f1fb;
}

.kb-vote-btn.kb-vote-yes:hover {
    border-color: #b2d99a;
    background: #eaf3de;
    color: #3b6d11;
}

.kb-vote-btn.kb-vote-no:hover {
    border-color: #f09595;
    background: #fcebeb;
    color: #a32d2d;
}

/* CTA de suporte */
.kb-support-cta {
    background: #153462;
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {
    .kb-support-cta { flex-direction: column; text-align: center; }
}

.kb-support-cta-text h3 {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
}

.kb-support-cta-text p {
    color: #a8c8f0;
    font-size: 13px;
    margin: 0;
}

.kb-support-cta-btn {
    background: #2a6bbf;
    color: #fff;
    border-radius: 8px;
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: background .15s;
}

.kb-support-cta-btn:hover,
.kb-support-cta-btn:focus {
    background: #3579cf;
    color: #fff;
    text-decoration: none;
}

/* Link de retorno */
.kb-back-wrap {
    margin-bottom: 20px;
}

.kb-back-link {
    font-size: 13px;
    color: #185fa5;
    font-weight: 500;
}

.kb-back-link:hover {
    color: #0b1730;
    text-decoration: none;
}

/* Ajuste: esconde estilos antigos que conflitam */
.kb-wrap {
    border: 0;
}

/* Em telas menores a sidebar empilha acima do conteúdo; a busca deixa
   de flutuar sobre o cabeçalho para não sobrepor o painel Categorias */
@media (max-width: 991px) {
    .kb-search-float { margin: 20px auto 28px; }
}

@media (max-width: 600px) {
    .kb-search-card { flex-direction: column; }
    .kb-search-btn { width: 100%; }
    .kb-article-header { flex-wrap: wrap; }
    .kb-article-header-main h2 { font-size: 18px; }
    .kb-support-cta { padding: 22px 20px; }
    .kb-article-body { padding: 20px 18px; }
}

/* Títulos dentro de cabeçalhos navy de painéis (ex.: addons do produto) */
.panel-default > .panel-heading h1,
.panel-default > .panel-heading h2,
.panel-default > .panel-heading h3,
.panel-default > .panel-heading h4,
.panel-default > .panel-heading h5,
.custom-panel .panel-heading h5 {
    color: #ffffff;
    margin: 0;
}

/* Reforços de responsividade gerais */
@media (max-width: 767px) {
    .kb-support-cta-btn { width: 100%; text-align: center; }
    .client-dashboard-single { margin-left: 0; margin-right: 0; }
    .custom-domain-register form .input-group-btn { flex-wrap: wrap; gap: 8px; }
    .custom-domain-register form .input-group-btn .btn { min-width: 45%; }
    .kb-rate-box form { justify-content: center; text-align: center; }
}

/* ============================================================
   ÁREA DO CLIENTE — clientareahome.tpl (esboço aprovado)
   ============================================================ */

/* Cards de estatísticas */
.client-dashboard-wrap {
    margin: 0 -6px 10px;
}

.client-dashboard-single {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 18px 20px;
    background: #ffffff;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: all .15s;
}

.client-dashboard-single:hover {
    background: #ffffff;
    border-color: #2a6bbf;
    box-shadow: 0 4px 16px rgba(21, 52, 98, 0.10) !important;
    transform: translateY(-2px);
}

.client-dashboard-single i {
    position: static;
    width: 42px;
    height: 42px;
    background: #f4f8ff;
    border: 1px solid #c3d9f8;
    border-radius: 10px;
    line-height: 40px;
    text-align: center;
    font-size: 17px;
    color: #185fa5;
    padding: 0;
    flex-shrink: 0;
}

.client-dashboard-single:hover i {
    color: #0b1730;
}

.client-dashboard-single .icon-title-wrap h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #0b1730;
    line-height: 1;
}

.client-dashboard-single .icon-title-wrap h5 {
    margin: 3px 0 0;
    font-size: 11px;
    font-weight: 600;
    color: #6b7a99;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Painéis da home */
.custom-panel-box {
    border-radius: 10px;
    border: 1px solid #d0d4dc;
    box-shadow: none;
    overflow: hidden;
}

.client-home-panels .panel.custom-panel-box > .panel-heading {
    background-color: #0b1730;
    border-bottom: 0;
    padding: 12px 18px;
}

.client-home-panels .panel.custom-panel-box > .panel-heading .panel-title {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.client-home-panels .panel.custom-panel-box > .panel-heading .panel-title a,
.client-home-panels .panel.custom-panel-box > .panel-heading .panel-title .btn {
    color: #a8c8f0;
}

.client-home-panels .panel.custom-panel-box > .panel-heading .panel-title a:hover {
    color: #ffffff;
}

.client-home-panels .panel.custom-panel-box > .list-group .list-group-item {
    border-color: #f0f2f5;
    padding: 10px 18px;
    color: #4a5568;
}

.client-home-panels .panel.custom-panel-box > .list-group .list-group-item:hover {
    background-color: #f4f8ff;
    color: #0b1730;
}

.custom-panel-footer {
    background: #f7f9fc;
}

.custom-panel-footer:empty {
    display: none;
}

/* Card de registro de domínio — card branco com cabeçalho navy,
   integrado ao visual dos demais painéis da página
   (o CSS original usa #3c4e77 !important, por isso o !important aqui) */
.client-home-panels .custom-domain-register {
    background: #ffffff !important;
    border: 1px solid #d0d4dc;
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
}

.client-home-panels .custom-domain-register .panel-title {
    background: #0b1730;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: left;
    margin: 0;
    padding: 12px 18px;
}

.custom-domain-register form .input-group {
    margin: 20px 18px;
}

.custom-domain-register form .input-group .form-control {
    border-radius: 7px !important;
    border: 1px solid #d0d4dc;
    height: 44px;
    color: #1a2640;
    background: #ffffff;
}

.custom-domain-register form .input-group .form-control:focus {
    border-color: #2a6bbf;
    box-shadow: 0 0 0 3px rgba(42, 107, 191, 0.12);
}

.custom-domain-register form .input-group-btn .btn {
    border-radius: 7px !important;
    height: 44px;
    font-weight: 600;
    background: #f4f8ff;
    border: 1px solid #c3d9f8;
    color: #185fa5;
    margin: 0 4px;
}

.custom-domain-register form .input-group-btn .btn:hover,
.custom-domain-register form .input-group-btn .btn:focus {
    background: #e6f1fb;
    border-color: #2a6bbf;
    color: #0b1730;
}

.custom-domain-register form .input-group-btn .btn-success {
    background: #0b1730;
    border-color: #0b1730;
    color: #ffffff;
}

.custom-domain-register form .input-group-btn .btn-success:hover,
.custom-domain-register form .input-group-btn .btn-success:focus {
    background: #1a3f78;
    border-color: #1a3f78;
    color: #ffffff;
}

/* Alertas do topo do painel (faturas vencidas etc.) */
.client-home-panels .alert {
    border-radius: 10px;
}

/* ============================================================
   NAVEGAÇÃO E RODAPÉ GLOBAIS
   ============================================================ */

/* Navbar permanece branca (padrão original do tema) — apenas refinamentos */
.navbar-main,
section#main-menu,
.navbar-main li.account,
.navbar-main .navbar-nav > .active > a,
.navbar-main .navbar-nav > .active > a:focus,
.navbar-main .navbar-nav > .active > a:hover,
.navbar-main .navbar-nav > .open > a,
.navbar-main .navbar-nav > .open > a:focus,
.navbar-main .navbar-nav > .open > a:hover,
.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > li > a:hover {
    background-color: transparent;
}

.navbar-main .navbar-nav > li > a {
    color: #4a5568;
}

.navbar-main .navbar-nav > li > a:focus,
.navbar-main .navbar-nav > li > a:hover,
.navbar-main .navbar-nav > .active > a,
.navbar-main .navbar-nav > .open > a {
    color: #0b1730 !important;
}

.dropdown-menu {
    border-radius: 8px;
    border: 1px solid #d0d4dc;
    box-shadow: 0 8px 24px rgba(21, 52, 98, 0.12);
    overflow: hidden;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover,
.navbar-main .dropdown-menu > li > a:hover {
    background-color: #0b1730;
    color: #ffffff;
}

ul.top-nav > li.primary-action > a.btn {
    background-color: #0b1730;
    border-radius: 7px;
}

section#footer {
    background-color: #0b1730;
    border-top: 3px solid #2a6bbf;
    color: #a8c8f0;
}

section#footer a {
    color: #a8c8f0;
}

section#footer a:hover {
    color: #ffffff;
}

section#footer .back-to-top i {
    background-color: #0b1730;
    color: #a8c8f0;
    border-radius: 7px;
}

/* ============================================================
   COMPLEMENTOS GLOBAIS (login, well, labels, badges, progress)
   ============================================================ */

.well {
    background-color: #f7f9fc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: none;
}

.label {
    border-radius: 20px;
    padding: 3px 10px;
    font-weight: 600;
}

.label-default { background-color: #6b7a99; }
.label-primary { background-color: #0b1730; }
.label-info    { background-color: #2a6bbf; }

.badge {
    background-color: #f4f8ff;
    color: #185fa5;
    border-radius: 20px;
    font-weight: 600;
}

.progress {
    border-radius: 20px;
    background-color: #eef1f6;
    box-shadow: none;
}

.progress-bar {
    background-color: #2a6bbf;
    box-shadow: none;
}

.list-group-item {
    border-color: #f0f2f5;
}

a.list-group-item.active,
a.list-group-item.active:focus,
a.list-group-item.active:hover {
    background-color: #0b1730;
    border-color: #0b1730;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    color: #0b1730;
    font-weight: 600;
    border-top: 2px solid #2a6bbf;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:focus,
.nav-pills > li.active > a:hover {
    background-color: #0b1730;
}

/* Popovers e tooltips */
.popover {
    border-radius: 10px;
    border-color: #d0d4dc;
    box-shadow: 0 8px 24px rgba(21, 52, 98, 0.12);
}

.popover-title {
    background-color: #f7f9fc;
    border-color: #e2e8f0;
    border-radius: 10px 10px 0 0;
}

/* Upgrade de produtos */
.upgrade .products .product .header {
    background-color: #0b1730;
}

.upgrade .products .product .btn {
    background-color: #0b1730;
    border-radius: 7px;
}

/* Afiliados */
.affiliate-referral-link span {
    border: 1px solid #c3d9f8;
    background: #f4f8ff;
    border-radius: 8px;
    color: #185fa5;
}

/* ============================================================
   TROCA DE SENHA — gerador e medidor de força
   ============================================================ */

/* Botão do gerador de senha em evidência */
.password-wrap .generate-password,
.generate-password {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0 12px;
    padding: 10px 22px;
    font-weight: 600;
}

.generate-password i {
    font-size: 13px;
}

/* Cores do medidor de força da senha:
   vermelho (fraca) -> amarelo (média) -> VERDE ao atingir o mínimo.
   As regras genéricas .progress-bar desta camada pintavam a barra de
   azul mesmo com a classe -success aplicada; as regras abaixo vêm
   depois na cascata e restauram a semântica das cores. */
#passwordStrengthBar {
    height: 10px;
    margin-top: 6px;
}

/* Estado inicial/fraca (o seletor com ID exige que os estados
   warning/success também usem o ID para vencer a especificidade) */
#passwordStrengthBar .progress-bar,
.progress .progress-bar.progress-bar-danger {
    background-color: #c9302c;
}

#passwordStrengthBar .progress-bar.progress-bar-warning,
.progress .progress-bar.progress-bar-warning {
    background-color: #e0a800;
}

#passwordStrengthBar .progress-bar.progress-bar-success,
.progress .progress-bar.progress-bar-success {
    background-color: #4a9d2f;
}

/* ============================================================
   AJUSTES: sidebar de ações, alerta 2FA e popup de e-mail
   ============================================================ */

/* Sidebar: cobre os seletores com âncora e os itens .disabled do CSS
   original (que usam texto branco translúcido com !important) */
.panel-sidebar a.list-group-item,
.panel-sidebar div.list-group-item,
.list-group-tab-nav a.list-group-item {
    background: #ffffff;
    color: #4a5568;
}

.panel-sidebar .list-group-item.disabled,
.panel-sidebar .list-group-item.disabled:focus,
.panel-sidebar .list-group-item.disabled:hover,
.list-group-tab-nav a.list-group-item.disabled,
.list-group-tab-nav a.list-group-item.disabled:hover {
    background: #ffffff;
    color: #9aa3b2 !important;
}

/* Alerta de recomendação do 2FA: amarelo chama atenção quando
   a autenticação está desabilitada */
.custom-card-block .alert-warning {
    color: #7a5c00;
    background-color: #fff8e1;
    border-color: #ffe082;
}

.custom-card-block .alert-info {
    color: #185fa5;
    background-color: #f4f8ff;
    border-color: #c3d9f8;
}

/* Popup de visualização de e-mail (viewemail.tpl) */
body#popup-backdrop {
    background: #e8eaf0;
    padding: 16px;
}

#popup-backdrop .panel-heading {
    background: #0b1730;
    border-bottom: 3px solid #2a6bbf;
}

#popup-backdrop .panel-heading h2 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    padding: 6px 4px;
}

#popup-backdrop .panel-body.main-content {
    background: #ffffff;
    color: #1a2640;
}

#popup-backdrop .panel-footer {
    background: #f7f9fc;
    border-top: 1px solid #e2e8f0;
}

/* ============================================================
   RODAPÉ — copyright centralizado
   ============================================================ */
.footer-bottom [class*="col-"] {
    float: none;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom .copyright-text {
    text-align: center;
}

.footer-bottom .payment-method {
    text-align: center !important;
    display: inline-block;
}

/* ============================================================
   CARRINHO (standard_cart) — legibilidade sobre fundos escuros
   ============================================================ */
/* Botão/links "Remover" e afins dentro de cabeçalhos navy dos itens */
#order-standard_cart .panel-heading .btn-link,
#order-standard_cart .panel-heading a:not(.btn-primary):not(.btn-default),
#order-standard_cart .panel-heading button.btn-link,
#order-standard_cart .panel-title .btn-link {
    color: #ffffff;
}

#order-standard_cart .panel-heading .btn-link:hover,
#order-standard_cart .panel-heading a:not(.btn-primary):not(.btn-default):hover {
    color: #d7e4f7;
    text-decoration: none;
}

/* Resumo do pedido: textos auxiliares em cabeçalhos escuros */
#order-standard_cart .summary-container .panel-heading small,
#order-standard_cart .panel-heading small {
    color: #a8c8f0;
}
