/* Email Verification Alert Styling */
.email-verification {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    animation: slideInDown 0.4s ease-out;
    position: relative;
}

.email-verification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #f7863b;
    border-radius: 8px 8px 0 0;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.email-verification .row {
    margin: 0;
    align-items: center;
    min-height: 36px;
    padding: 0;
    display: flex;
    flex-wrap: nowrap;
}

.email-verification .col-1 {
    padding: 0 6px;
    flex: 0 0 auto;
    width: auto;
}

.email-verification .col-10 {
    padding: 0 8px;
    flex: 1;
    min-width: 0;
}

.email-verification .col-12 {
    padding: 0 6px;
    flex: 0 0 auto;
    width: auto;
}

.email-verification .far,
.email-verification .fas {
    font-size: 1.3rem;
    margin-right: 0;
    display: block;
    text-align: center;
    line-height: 1;
    color: inherit !important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific icon adjustments */
.email-verification .fa-exclamation-triangle {
    font-size: 1.2rem;
}

.email-verification .fa-shield-alt {
    font-size: 1.2rem;
}

.email-verification .fa-check-circle {
    font-size: 1.2rem;
}

.email-verification .fa-times-circle {
    font-size: 1.2rem;
}

.email-verification .fa-envelope {
    font-size: 1.2rem;
}

.email-verification .fa-receipt {
    font-size: 1.2rem;
}

.status-custom {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    padding: 10px;
}

.status {
    display: inline !Important;
    padding: 10px;
}

.email-verification .fw-medium {
    font-weight: 500;
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.3;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.email-verification .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: 0;
    width: 100%;
    max-width: none;
    color: #fff;
}

.email-verification .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.email-verification .btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.email-verification .btn-close {
    background: rgba(108, 117, 125, 0.2);
    border: none;
    font-size: 1.1rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
}

.email-verification .btn-close:hover {
    background-color: #e44431;
    color: #ffffff;
    transform: scale(1.1);
}

.email-verification .btn-close:active {
    transform: scale(0.95);
}

.email-verification .btn-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(247, 134, 59, 0.25);
}

/* Button Type Specific Styling */
.email-verification .btn-warning {
    background: linear-gradient(135deg, #f7863b 0%, #ff9a56 100%);
    color: #000;
    border: none;
}

.email-verification .btn-warning:hover {
    background: linear-gradient(135deg, #e67e22 0%, #f7863b 100%);
    color: #000;
}

.email-verification .btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c9d2 100%);
    color: #fff;
    border: none;
}

.email-verification .btn-info:hover {
    background: linear-gradient(135deg, #138496 0%, #17a2b8 100%);
    color: #fff;
}

.email-verification .btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
    color: #fff;
    border: none;
}

.email-verification .btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
    color: #fff;
}

.email-verification .btn-success {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: #fff;
    border: none;
}

.email-verification .btn-success:hover {
    background: linear-gradient(135deg, #218838 0%, #28a745 100%);
    color: #fff;
}

/* Responsive Design for Email Verification */
@media (max-width: 768px) {
    .email-verification {
        padding: 12px 16px;
        margin-bottom: 16px;
    }

    .email-verification .row {
        flex-wrap: wrap;
        gap: 6px;
        min-height: auto;
    }

    .email-verification .col-1 {
        padding: 0 4px;
        order: 1;
    }

    .email-verification .col-10 {
        padding: 0 6px;
        order: 2;
        flex: 1;
        min-width: 0;
    }

    .email-verification .col-12 {
        padding: 0 4px;
        order: 3;
        width: 100%;
        margin-top: 8px;
    }

    .email-verification .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        min-height: 28px;
        max-width: none;
        width: 100%;
    }

    .email-verification .fw-medium {
        font-size: 0.9rem;
        white-space: normal;
        line-height: 1.2;
    }

    .email-verification .far,
    .email-verification .fas {
        font-size: 1.1rem;
        width: 20px;
        height: 20px;
    }

    .email-verification .btn-close {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
        order: 4;
        margin-left: auto;
    }
}

.cekmoveservice {
    margin-bottom: 15px;
    border: 2px solid #EE4D30;
    border-radius: 8px;
    background-color: #FFF;
    color: #EE4D30;
    width: 15%;
}

.cancelbutton {
    color: #EE4D30;
}

.linkquickshortcut {
    color: black;
    font-weight: 500;
}

.email-verificationx .row {
    border: 1px solid #e44431;
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 10px;
}

.email-verificationx .btn {
    color: #e44431;
    border-color: #e44431;
    background: none;
}

.alert-info {
    color: #f6f7fb;
    background-color: #f7ae7f;
    border-color: #f7ae7f;
    line-height: 1.2;
}

/* button */
.form-group input,
.form-group select,
.form-group textarea {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    border-bottom: 1px solid #cecece;
    padding: 15px 20px 16px 20px;
    height: auto;
    transition: .3s ease;
}

.form-group .btn {
    padding: 6px 12px;
    border-radius: 4px;
}

.btn {
    border-color: #F7863B;
    border: 2px solid #EE4D30;
    border-radius: 8px;
    padding: 5px 10px;
}

.btn.btn-xs,
.btn.btn-sm {
    height: auto;
}

.btnviewall {
    margin: auto;
    width: 100%;
    border: 2px solid #EE4D30 !important;
    border-radius: 8px;
    color: #EE4D30 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 5px 0px;
}

.productdetailicon {
    top: 10px;
}

.inline-text {
    display: inline-block;
}

.ulproductdetail {
    background-color: #FFFFFF;
    border: 3px solid #FEECDD;
    border-radius: 20px;
    min-height: 350px;
    padding-top: 35px;
}

.paddingtop20 {
    padding-top: 20px !important;
}

.btn:focus,
.btn:active,
.btn:hover {
    outline: none;
}

.form-group .btn-info,
.btn-info {
    color: #f7863b;
    background-color: #ffffff;
    border-color: #f7863b;
}

.btn-primary,
.form-group .btn-primary {
    color: #fff;
    background-color: #F7863B;
    border-color: #F7863B;
    font-size: 14px;
    padding: 8px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.form-group .btn-primary:hover,
.form-group .btn-primary:focus,
.form-group .btn-primary:active {
    background-color: #e44431;
    border-color: #e44431;
    outline: none;
}

.btn-default,
.form-group .btn-default {
    color: #F7863B;
    background-color: #fff;
    border-color: #F7863B;
    font-size: 14px;
    padding: 8px 25px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.form-group .btn-default:hover,
.form-group .btn-default:focus,
.form-group .btn-default:active {
    background-color: #F7863B;
    border-color: #F7863B;
    color: #fff;
    outline: none;
}

.btn-success {
    background-color: #FFF;
}

.btn-success:hover {
    background-color: #EE4D30;
    border-color: #EE4D30;
    color: #FFF;
}

.paddingdomaindetail {
    margin-top: 25px !important;
    padding: 0px !important;
}

.btn-cta {
    background-color: #ff6d0b;
    font-weight: 700;
    color: #fff;
    border-radius: 28px;
}

.text-qw-primary {
    color: #ff6d0b;
}

.pricehome {
    font-size: 1.75rem !important;
}

#additional-product .card-description {
    height: 88px;
    max-height: 100px;
}

@media (max-width: 991px) {
    .hidelang {
        display: none !Important;
    }

    .css-15mqaft {
        bottom: 60px !important;
    }


}

.h5home {
    font-size: 1.25rem !important;
    margin-top: 4px !important;
}

.fw-bold {
    font-weight: 700 !important;
}

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

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

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.d-grid {
    display: grid !important;
}

.mt-auto {
    margin-top: auto !important;
}

.card {
    border-radius: 28px;
    background-color: white;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
}

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

.border-0 {
    border: 0 !important;
}


.btn-full,
.form-group .btn-full {
    min-width: 166px;
}

div.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success,
div.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success {
    background-color: #f7523e;
}

div#order-standard_cart .form-control#registersld,
div#order-standard_cart .form-control#transfersld {
    border: 1px solid #ddd;
}

#order-standard_cart p {
    color: #333 !important;
}

input.btn.btn-reset-pass {
    width: calc(50% - 2px);
    max-width: 166px;
}

a {
    color: #0c0c0c;
    transition: .3s ease;
}

a:hover,
a:focus,
a:active {
    color: #f7523e;
    outline: none;
}

a.list-group-item:hover {
    background: #ee4d30;
}

.client-home-panels .panel small:hover {
    color: #FFFFFF;
}

.mb-4 {
    margin-bottom: 24px;
}

.wrap-content {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    min-height: 100vh;
    overflow: visible;
}

div.header-lined .breadcrumb>.active {
    color: #000000;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    border-top: none;
}

.bg-info {
    background-color: rgba(247, 134, 59, .15);
}

.left_sidebar {
    width: 300px;
    background: #fff;
    padding: 40px 0;
    transition: .3s ease;
    overflow: visible;
    position: relative;
    z-index: 100;
}

section#main-menu {
    overflow: visible;
}

.right_content {
    width: calc(100% - 300px);
    background: #FFFFFF;
    padding: 15px 0;
    transition: .3s ease;
    position: relative;
    z-index: 1;
}

.right_content .container,
.left_sidebar .container {
    width: 100%;
    /* padding: 0 25px; */
    overflow: visible;
}

.left_sidebar .container {
    overflow: visible;
}

.arrowsidebar {
    position: absolute;
    right: 1%;
}

.arrowtopheader {
    position: relative;
    left: 10%;
}

.right_content ul.top-nav {
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    gap: 8px;
    flex-shrink: 0;
    z-index: 1001;
}

/* Avatar dropdown styling */
ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-menu {
    left: auto;
    right: 0;
    padding: 8px 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
}

ul.top-nav>li.wrap-language:not(.hidelang).open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Avatar dropdown menu items */
ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-menu li a {
    padding: 12px 20px;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    display: block;
    border-radius: 0;
}

ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #F7863B;
    padding-left: 25px;
}

ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-menu li:last-child a {
    border-radius: 0 0 10px 10px;
}

.avatar-wrapper {
    display: block;
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-radius: 100%;
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul.top-nav>li.wrap-language:not(.hidelang):hover .avatar-wrapper {
    border-color: #F7863B;
    transform: scale(1.05);
}

/* Avatar dropdown styling */
ul.top-nav>li.wrap-language:not(.hidelang) {
    position: relative;
    cursor: pointer;
}

ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul.top-nav>li.wrap-language:not(.hidelang) .dropdown-toggle:hover {
    color: #F7863B;
}

ul.top-nav>li.wrap-language:not(.hidelang) .arrow-fa {
    transition: transform 0.3s ease;
}

ul.top-nav>li.wrap-language:not(.hidelang).open .arrow-fa {
    transform: rotate(180deg);
}

/* Language dropdown styling */
ul.top-nav>li.wrap-language.hidelang .dropdown-menu {
    left: auto;
    right: 0;
    padding: 8px 0;
    margin: 0;
    background: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 150px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
}

ul.top-nav>li.wrap-language.hidelang.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

ul.top-nav>li.wrap-language.hidelang .dropdown-menu li a {
    padding: 12px 20px;
    transition: all 0.3s ease;
    color: #333;
    text-decoration: none;
    display: block;
    border-radius: 0;
}

ul.top-nav>li.wrap-language.hidelang .dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #F7863B;
    padding-left: 25px;
}

ul.top-nav>li.wrap-language.hidelang .dropdown-menu li:first-child a {
    border-radius: 10px 10px 0 0;
}

ul.top-nav>li.wrap-language.hidelang .dropdown-menu li:last-child a {
    border-radius: 0 0 10px 10px;
}

/* Language dropdown toggle styling */
ul.top-nav>li.wrap-language.hidelang {
    position: relative;
    cursor: pointer;
}

ul.top-nav>li.wrap-language.hidelang .choose-language {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

ul.top-nav>li.wrap-language.hidelang .choose-language:hover {
    color: #F7863B;
}

ul.top-nav>li.wrap-language.hidelang .arrow-fa {
    transition: transform 0.3s ease;
}

ul.top-nav>li.wrap-language.hidelang.open .arrow-fa {
    transform: rotate(180deg);
}

/* Ensure dropdowns appear above all content */
.right_content ul.top-nav li.wrap-language .dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
    top: 100% !important;
}

/* Override any banner z-index issues */
.alert, .banner, .notification, .announcement, .warning-banner {
    z-index: 1;
    position: relative;
}

/* Ensure main content doesn't interfere */
section#main-body, .container, .row {
    position: relative;
    z-index: 1;
}

.right_content #header {
    background: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1000;
}

.wrapps-topnav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    gap: 10px;
    min-height: 60px;
    z-index: 100;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    padding: 0 20px 20px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.logo-wrapper .wrap-btn-menu-toggle {
    margin-right: 20px;
    flex-shrink: 0;
}

.logo-wrapper .logo {
    display: flex;
    align-items: center;
    flex: 1;
}

.logo-wrapper .logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-menu-toggle {
    height: 33px;
    width: 33px;
    display: flex;
    align-items: center;
}

.left_sidebar.shrink .logo {
    display: none;
}

.left_sidebar.shrink .logo-wrapper {
    padding: 0 15px 15px 15px !important;
    margin-bottom: 15px !important;
    justify-content: center;
}

.left_sidebar #main-menu .nav.navbar-nav li {
    float: none;
    width: 100%;
}

.left_sidebar #main-menu .navbar-left,
#main-menu .navbar-nav {
    width: 100%;
    padding-left: 2px;
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    top: auto;
    float: none;
    padding-left: 30px;
    margin-left: 20px;
    width: calc(100% - 20px);
}

.left_sidebar #main-menu .navbar-left,
.left_sidebar #main-menu .navbar-nav,
.left_sidebar #main-menu .navbar-left .navbar-nav {
    overflow: visible;
}

/* Light Mode - Ensure dropdown not cut off */
.wrap-content {
    overflow: visible !important;
}

.left_sidebar {
    overflow: visible !important;
    position: relative;
    z-index: 100;
}

.right_content {
    position: relative;
    z-index: 1;
}

.right_content .container {
    overflow: visible !important;
}

.left_sidebar .container {
    overflow: visible !important;
}

section#main-menu {
    overflow: visible !important;
}

.left_sidebar.shrink {
    overflow: visible !important;
}

.left_sidebar.shrink #main-menu {
    overflow: visible !important;
}

.left_sidebar.shrink #main-menu .navbar-left {
    overflow: visible !important;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav {
    overflow: visible !important;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown {
    overflow: visible !important;
}

/* Light Mode - Dropdown positioning for shrink mode */
.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu {
    position: absolute !important;
    left: 100% !important;
    top: 0 !important;
    min-width: 250px !important;
    background: #ffffff !important;
    border: 1px solid #E0E0E0 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    z-index: 1000 !important;
    padding: 8px 0 !important;
    margin-left: 8px !important;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a {
    color: #333333 !important;
    background-color: transparent !important;
    padding: 12px 20px !important;
    display: block !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border-radius: 4px !important;
    margin: 2px 8px !important;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a:hover {
    background-color: #f7863b !important;
    color: #ffffff !important;
    transform: translateX(4px) !important;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a i {
    color: #6c757d !important;
    margin-right: 10px !important;
    width: 16px !important;
    text-align: center !important;
}

/* Addons Page Styling - Improved */
#order-standard_cart .addons-grid {
    margin-top: 20px;
}

.addons-grid {
    margin-top: 20px;
}

/* Flexible height columns for addons */
#order-standard_cart .addons-grid .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}

#order-standard_cart .addons-grid .col-lg-6 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
}

.addons-grid .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}

.addons-grid .col-lg-6 {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    min-width: 0 !important;
}

#order-standard_cart .addon-card {
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
    min-height: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
    flex: 1 !important;
}

.addon-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex: 1;
}

#order-standard_cart .addon-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
    border-color: #f7863b !important;
}

.addon-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #f7863b;
}

#order-standard_cart .addon-form {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.addon-form {
    height: 100%;
    display: flex;
    flex-direction: column;
}

#order-standard_cart .addon-header {
    padding: 24px 24px 0 24px !important;
    margin-bottom: 20px !important;
}

.addon-header {
    padding: 24px 24px 0 24px;
    margin-bottom: 20px;
}

#order-standard_cart .addon-title {
    width: 100% !important;
}

.addon-title {
    width: 100%;
}

#order-standard_cart .addon-name {
    color: #2c3e50 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.3 !important;
}

.addon-name {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

#order-standard_cart .addon-availability {
    color: #28a745 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.addon-availability {
    color: #28a745;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

#order-standard_cart .addon-body {
    padding: 0 24px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.addon-body {
    padding: 0 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#order-standard_cart .addon-description {
    color: #6c757d !important;
    font-size: 1.4rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
    flex: 1 !important;
}

.addon-description {
    color: #6c757d;
    font-size: 1.4rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

#order-standard_cart .addon-selection {
    margin-bottom: 24px !important;
}

.addon-selection {
    margin-bottom: 24px;
}

#order-standard_cart .form-label {
    color: #495057 !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 12px !important;
    display: block !important;
}

.form-label {
    color: #495057;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    display: block;
}

#order-standard_cart .form-select {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid #e9ecef !important;
    border-radius: 12px !important;
    background-color: #ffffff !important;
    color: #495057 !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    background-color: #ffffff;
    color: #495057;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

#order-standard_cart .form-select:focus {
    border-color: #f7863b !important;
    box-shadow: 0 0 0 4px rgba(247, 134, 59, 0.1) !important;
    outline: none !important;
}

.form-select:focus {
    border-color: #f7863b;
    box-shadow: 0 0 0 4px rgba(247, 134, 59, 0.1);
    outline: none;
}

#order-standard_cart .addon-footer {
    padding: 24px !important;
    border-top: 1px solid #f8f9fa !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px !important;
    margin-top: auto !important;
}

.addon-footer {
    padding: 24px;
    border-top: 1px solid #f8f9fa;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

#order-standard_cart .addon-pricing {
    flex: 1 !important;
}

.addon-pricing {
    flex: 1;
}

#order-standard_cart .price-free {
    text-align: center !important;
}

.price-free {
    text-align: center;
}

#order-standard_cart .price-amount {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: #28a745 !important;
    display: block !important;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #28a745;
    display: block;
}

#order-standard_cart .price-period {
    font-size: 1.1rem !important;
    color: #6c757d !important;
    font-weight: 600 !important;
}

.price-period {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
}

#order-standard_cart .price-paid {
    text-align: center !important;
}

.price-paid {
    text-align: center;
}

#order-standard_cart .price-paid .price-amount {
    color: #f7863b !important;
    font-size: 1.8rem !important;
}

.price-paid .price-amount {
    color: #f7863b;
    font-size: 1.8rem;
}

#order-standard_cart .price-setup {
    font-size: 1rem !important;
    color: #6c757d !important;
    margin-top: 6px !important;
    font-weight: 500 !important;
}

.price-setup {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 6px;
    font-weight: 500;
}

#order-standard_cart .btn-addon {
    background: linear-gradient(135deg, #f7863b 0%, #ff9a56 100%) !important;
    color: white !important;
    border: none !important;
    padding: 16px 32px !important;
    border-radius: 12px !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 12px rgba(247, 134, 59, 0.3) !important;
}

.btn-addon {
    background: linear-gradient(135deg, #f7863b 0%, #ff9a56 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(247, 134, 59, 0.3);
}

#order-standard_cart .btn-addon:hover {
    background: linear-gradient(135deg, #e6732a 0%, #f7863b 100%) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(247, 134, 59, 0.4) !important;
    color: white !important;
}

.btn-addon:hover {
    background: linear-gradient(135deg, #e6732a 0%, #f7863b 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(247, 134, 59, 0.4);
    color: white;
}

#order-standard_cart .btn-addon:active {
    transform: translateY(-1px) !important;
}

.btn-addon:active {
    transform: translateY(-1px);
}

#order-standard_cart .empty-state {
    padding: 80px 20px !important;
    text-align: center !important;
}

.empty-state {
    padding: 80px 20px;
    text-align: center;
}

#order-standard_cart .empty-icon {
    opacity: 0.6 !important;
    font-size: 4rem !important;
    color: #6c757d !important;
    margin-bottom: 20px !important;
}

.empty-icon {
    opacity: 0.6;
    font-size: 4rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #order-standard_cart .addon-card {
        min-height: 350px !important;
    }
    
    .addon-card {
        min-height: 350px;
    }
    
    #order-standard_cart .addon-header {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 20px 20px 0 20px !important;
    }
    
    .addon-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 20px 0 20px;
    }
    
    #order-standard_cart .addon-icon {
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }
    
    .addon-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    #order-standard_cart .addon-body {
        padding: 0 20px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .addon-body {
        padding: 0 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    #order-standard_cart .addon-description {
        flex: 1 !important;
        margin-bottom: 20px !important;
    }
    
    .addon-description {
        flex: 1;
        margin-bottom: 20px;
    }
    
    #order-standard_cart .addon-footer {
        flex-direction: column !important;
        gap: 24px !important;
        padding: 20px !important;
        margin-top: auto !important;
    }
    
    .addon-footer {
        flex-direction: column;
        gap: 24px;
        padding: 20px;
        margin-top: auto;
    }
    
    .addon-pricing {
        text-align: center;
    }
    
    .btn-addon {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    #order-standard_cart .addon-card {
        margin-bottom: 24px !important;
        min-height: 320px !important;
    }
    
    .addon-card {
        margin-bottom: 24px;
        min-height: 320px;
    }
    
    #order-standard_cart .addon-header {
        padding: 16px 16px 0 16px !important;
    }
    
    .addon-header {
        padding: 16px 16px 0 16px;
    }
    
    #order-standard_cart .addon-body {
        padding: 0 16px !important;
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .addon-body {
        padding: 0 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    #order-standard_cart .addon-description {
        flex: 1 !important;
        margin-bottom: 16px !important;
        font-size: 1.3rem !important;
    }
    
    .addon-description {
        flex: 1;
        margin-bottom: 16px;
        font-size: 1.3rem;
    }
    
    #order-standard_cart .addon-footer {
        padding: 16px !important;
        margin-top: auto !important;
    }
    
    .addon-footer {
        padding: 16px;
        margin-top: auto;
    }
    
    #order-standard_cart .addon-name {
        font-size: 1.3rem !important;
    }
    
    .addon-name {
        font-size: 1.3rem;
    }
}

.left_sidebar .nav .open>a {
    background: transparent;
    color: #F7863B;
}

.left_sidebar .nav .open>a svg path {
    fill: #F7863B;
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li a {
    padding: 12px 20px;
    color: #333333;
    background-color: transparent;
    display: block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
    border-bottom: 1px solid #e9ecef;
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li.nav-divider {
    margin: 0;
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li.nav-divider a {
    padding: 0;
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #F7863B;
    transform: translateX(4px);
}

.left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li a i {
    color: #6c757d;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}


.navbar-nav>li>a.nav_icon {
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
    color: #000000;
    font-weight: 1000;
    transition: .3s ease;
}

.left_sidebar.shrink .text-navi {
    display: none;
}

.navbar-nav>li>a.nav_icon svg {
    width: 20px;
    height: 20px;
    margin-right: 24px;
}

.navbar-nav>li>a.nav_icon .fa {
    font-size: 20px;
    max-width: 20px;
    height: 20px;
    margin-right: 24px;
}

.left_sidebar #main-menu .nav.navbar-nav li a:hover,
.left_sidebar .nav>li>a:focus {
    background: transparent;
    color: #F7863B;
}

.left_sidebar #main-menu .nav.navbar-nav li a svg path {
    transition: .3s ease;
}

.left_sidebar #main-menu .nav.navbar-nav li a:hover svg path,
.left_sidebar #main-menu .nav.navbar-nav li a:hover svg circle {
    fill: #F7863B !important;
}

.right_content section#main-body {
    background: #f8f8f8;
}

ul.top-nav>.wrap-count>a {
    position: relative;
    padding: 0 15px;
    border: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 46px;
    background: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    min-width: 46px;
}

ul.top-nav>.wrap-count>a:hover {
    background: #f8f9fa;
    border-color: #F7863B;
    color: #F7863B;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(247, 134, 59, 0.15);
}


.cpanelshortcutcard {
    padding: 20px;
    background: #FEECDD;
    border-radius: 20px;
}

.formoverviewcpanel {
    border: 0.5px solid #cecece;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

ul.top-nav>.wrap-count>a i {
    font-size: 20px;
}

.circle_count {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    top: 0;
    right: 0;
    color: #fff;
    /* color: transparent; */
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle_count.viewcart {
    background: #F7523E;
}

.right_content ul.top-nav li {
    margin-left: 0;
    position: relative;
}

.right_content ul.top-nav li.wrap-language {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 15px;
    border-radius: 10px;
    border: 1px solid #E0E0E0;
    background: #ffffff;
    transition: all 0.3s ease;
    min-width: 46px;
    justify-content: center;
}

.right_content ul.top-nav li.wrap-language:hover {
    background: #f8f9fa;
    border-color: #F7863B;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(247, 134, 59, 0.15);
}

.right_content ul.top-nav>li.account-avatar .dropdown-menu li {
    margin-left: 0;
}

.wrap-search {
    max-width: 260px;
    display: inline-block;
    width: 100%;
    flex: 1;
    margin-right: 20px;
}

.wrap-search .form-group {
    position: relative;
    margin-bottom: 0;
}

.icon-serach {
    position: absolute;
    left: 20px;
    top: 15px;
}

.icon-serach img {
    height: 17px;
}

.wrap-search .form-group #searchInput,
.wrap-search .form-group #kb-search-input {
    text-align: left;
    background: transparent;
    box-shadow: none;
    border-radius: 10px;
    border: 1px solid #cecece;
    padding: 0px 20px 0px 55px;
    height: 46px;
    transition: .3s ease;
    margin-bottom: 10px;
}

.wrap-search .form-group #searchInput:hover,
.wrap-search .form-group #searchInput:focus,
.form-group input:hover,
.form-group input:focus {
    border-color: #F7523E;
    box-shadow: none;
    background: #efefef;
}

.form-group .form-control:focus {
    border-color: #F7863B;
    box-shadow: none;
    background: #efefef;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 14px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.subcon label input {
    position: absolute;
    opacity: 100;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid #F7523E;
    border-radius: 3px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkcontainer input:checked~.checkmark {
    border: 1px solid #F7523E;
}

.checkcontainer .checkmark:after {
    left: 5px;
    top: 1px;
    width: 7px;
    height: 12px;
    border: solid #F7523E;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.checkcontainer input:checked~.checkmark:after {
    display: block;
}

.left_sidebar.shrink {
    width: 113px;
    overflow: visible;
}

.right_content.expand {
    width: calc(100% - 113px);
}

.shrink #primary-nav {
    padding-left: 0;
    padding-right: 0;
}

.shrink .navbar-nav>li>a.nav_icon svg {
    margin-right: 0;
}

.shrink #main-menu .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.left_sidebar.shrink #main-menu {
    overflow: visible;
}

.left_sidebar.shrink #main-menu .navbar-left {
    overflow: visible;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav {
    overflow: visible;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown {
    overflow: visible;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu {
    position: fixed;
    background: #ffffff;
    top: auto;
    left: 113px;
    padding-left: 0;
    min-width: 250px;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-left: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a {
    color: #2c3e50;
    background-color: transparent;
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 2px 8px;
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a:hover {
    background-color: #f7863b;
    color: #ffffff;
    transform: translateX(4px);
}

.left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a i {
    color: #6c757d;
    margin-right: 10px;
    width: 16px;
    text-align: center;
}

.img-full-width {
    max-width: 100%;
    width: 100%;
}

div.header-lined h1 {
    font-family: 'Open Sans', Verdana, Tahoma, serif;
    color: #000000;
    border: none;
    margin-bottom: 16px;
    padding: 0;
}

.wrap-rewards {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.btn-rewards {
    padding: 15px 32px;
    font-size: 14px;
    line-height: 17px;
    margin-right: 24px;
}

.text-rewards {
    color: #C4C4C4;
}

.rewards-count {
    color: #333;
    font-weight: 600;
}

.panel-footer {
    background: transparent;
    padding: 0;
    border: none;
}

.panel-heading {
    padding: 0;
}

.panel-body,
.list-group {
    padding: 0;
    margin: 16px 0;
    color: #BFBEC3;
}

.panel-title {
    display: inline-block;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
}

.text-mobile-nav {
    display: none;
}

.text-mobile-nav2 {
    display: none !important;
}

.item-mobile {
    display: none !important;
}


.text-mobile-nav2 .nav-item {
    margin-bottom: 10px;
}

.text-mobile-nav2 .nav-link {
    display: flex;
    align-items: center;
    font-size: 1em;
    /* color: #f7863b; */
    transition: color 0.3s ease;
}

.text-mobile-nav2 .nav-link i {
    width: 20px;
    margin-right: 10px;
    font-size: 1em;
    text-align: center;
}

.text-mobile-nav2 .nav-link:hover {
    color: #f7523e;
}

.item-desktop {
    display: inline !important;
}
    

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.align-items-center {
    align-items: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
    display: block;
    float: none;
}

.row.form-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.panel-default {
    padding: 30px;
    border: none;
    border-radius: 10px;
    transition: ease .3s;
}

.panel-default:hover {
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

.panel-default>.panel-heading {
    border: none;
    background: transparent;
}

/* index */
section#home-banner {
    background: transparent;
}

section#home-banner h2 {
    color: #333;
}

section#home-banner .btn.search {
    background: #F7863B;
}

.home-shortcuts {
    background: transparent;
}

.home-shortcuts ul {
    display: flex;
    flex-wrap: wrap;
}

.home-shortcuts li {
    border: none;
    width: calc(25% - 15px);
    margin-right: 20px;
    transition: .3s ease;
    padding: 0;
    border-radius: 10px;
}

.home-shortcuts li:first-child {
    border: none;
}

.home-shortcuts li:last-child {
    margin-right: 0;
}

.home-shortcuts li a {
    padding: 24px;
    position: relative;
}

.qwords-tiles .tile {
    width: calc(25% - 15px);
    margin-right: 20px;
    border: none;
    padding: 24px;
    border-radius: 10px;
    position: relative;
    transition: .3s ease;
}

.home-shortcuts li p {
    margin-top: 8px;
}

div.announcement-single {
    margin-top: 20px;
    padding: 24px;
    border-radius: 10px;
    background: #fff;
    transition: .3s ease;
}

div.announcement-single:hover {
    box-shadow: 0px 6px 8px rgba(191, 191, 191, 0.3);
}

.title-announcement {
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.date-announcement {
    font-size: 12px;
    width: 75px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.title-announcement a {
    color: #333;
    transition: .3s ease;
    width: calc(100% - 75px);
    font-size: 18px;
    font-weight: 600;
}

.date-announcement i {
    margin-right: 8px;
}

.title-announcement a:hover {
    color: #F7863B;
}

.link-readmore {
    transition: .3s ease;
}

.link-readmore:hover {
    color: #f7863b;
}

/* Services */
div.dataTables_wrapper div.dataTables_info {
    background-color: #F7863B;
    padding: 20px !important;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.dataTables_wrapper .dataTables_filter label {
    padding-right: 20px;
}

.dataTables_wrapper .dataTables_filter label .form-control {
    background: url(../img/search.png) #F6F7FB no-repeat 8px 8px;
    border: 1px solid #F6F7FB;
}

.dataTables_wrapper table.table-list thead th {
    border-bottom: 4px solid rgba(247, 134, 59, 0.5);
}

.dataTables_wrapper table.table-list thead th:nth-child(even) {
    border-bottom: 4px solid rgba(247, 134, 59, 0.5);
}

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

.status {
    border-radius: 20px;
}

.status-pending {
    color: #fff;
    background: #FDD365;
    border-color: #FDD365;
}

/* cart */
#order-standard_cart .header-lined {
    margin-bottom: 10px;
}

#order-standard_cart .pull-md-right,
#order-standard_cart .sidebar {
    width: 100%;
}

#order-standard_cart .sidebar {
    margin-bottom: 32px;
}

#order-standard_cart .sidebar .panel-sidebar {
    margin-bottom: 0;
    border: none;
}

#order-standard_cart .panel-sidebar .panel-heading {
    padding: 10px 20px;
    background: #fff;
    border-bottom: 1px solid #f6f7fb;
}

#order-standard_cart .panel-sidebar .list-group {
    margin-top: 0;
    padding: 0px 30px;
}

#order-standard_cart .panel-sidebar a.list-group-item.active,
#order-standard_cart .panel-sidebar a.list-group-item.active:focus,
#order-standard_cart .panel-sidebar a.list-group-item.active:hover {
    background: #fff;
    border-color: #fff;
    color: #f7863b;
    font-weight: bold;
}

#order-standard_cart .panel>.list-group .list-group-item:hover {
    background: transparent;
    color: #f7863b;
}

#order-standard_cart .panel>.list-group .list-group-item:hover i,
#order-standard_cart .panel .list-group-item:hover i,
#order-standard_cart .panel-sidebar a.list-group-item.active i {
    color: #f7863b !important;
}

#order-standard_cart .panel-sidebar .panel-body {
    padding: 15px 30px;
    margin: 0;
}

#order-standard_cart .products .row-eq-height {
    display: flex;
    flex-wrap: wrap;
    /* margin-bottom: 24px; */
}

#order-standard_cart .products .row-eq-height .col-md-6 {
    margin-bottom: 24px;
}

#order-standard_cart #products.products .product {
    padding: 0;
    border: none;
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: .3s ease;
}

#order-standard_cart .products .product:hover {
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

#order-standard_cart #products.products .product header {
    width: 100%;
    background: rgba(247, 134, 59, .15);
    margin: 0;
}

#order-standard_cart #products.products .product div.product-desc {
    padding-left: 20px;
    padding-right: 10px;
    width: 55%;
}

#order-standard_cart #products.products .product footer {
    width: 45%;
    padding-right: 20px;
}

.domain-pricing .tld-pricing-header div:nth-child(odd),
.domain-pricing .tld-pricing-header .col-xs-4 {
    border-color: rgba(247, 134, 59, 0.5);
}

.domain-pricing .row.tld-pricing-header {
    margin: auto;
}

.tld-filters .label-success {
    background: #02C885;
    padding: 8px 24px;
    border-radius: 20px;
}

#order-standard_cart .row {
    display: flex;
    flex-wrap: wrap;
}

.domain-promo-box p {
    padding-right: 78px;
}

#order-standard_cart .domain-promo-box {
    border: none;
    border-radius: 10px;
}

#order-standard_cart .domain-promo-box {
    border: none;
    border-radius: 10px;
    background: #fff;
    height: 100%;
}

#order-standard_cart .domain-promo-box:hover {
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

.domain-promo-box h3 {
    padding-right: 78px;
}

.domain-promo-box i {
    width: 70px;
    height: 70px;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    border-radius: 15px;
    color: #fff;
}

.domain-promo-box i.fa-server {
    background: #7D58FE;
}

.domain-promo-box i.fa-globe {
    background: #02C885;
}

#frmDomainTransfer .col-sm-8 {
    width: 100%;
    margin: 0;
}

#frmDomainTransfer .panel {
    padding: 30px;
    border: none;
    border-radius: 10px;
    transition: ease .3s;
}

#frmDomainTransfer .panel:hover {
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
}

#frmDomainTransfer .panel .panel-heading {
    border: none;
    background: transparent;
}

#frmDomainTransfer .panel .form-group input {
    height: auto;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cecece;
    border-radius: 0;
    transition: .3s ease;
}

#frmDomainTransfer .panel .form-group input:hover,
#frmDomainTransfer .panel .form-group input:active,
#frmDomainTransfer .panel .form-group input:focus {
    outline: none;
    border-color: #F7863B;
}

.page-cart #order-standard_cart .view-cart-items-header {
    padding: 20px;
    background-color: #F7863B;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

div#order-standard_cart .view-cart-items {
    border-bottom: 0;
}

.page-cart .view-cart-items {
    background: #fff;
}

.page-cart .view-cart-tabs {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.page-cart #order-standard_cart .view-cart-tabs .nav-tabs>li.active>a,
.page-cart #order-standard_cart .view-cart-tabs .tab-content {
    background: transparent;
}

.page-cart .btn-block {
    background-color: #F7863B;
    border-color: #F7863B;
    color: #fff;
    padding: 10px 15px;
}

#order-standard_cart .order-summary .btn-continue-shopping {
    width: 100%;
    border-radius: 4px;
}

.page-cart .btn-block:hover,
.page-cart .btn-block:active,
.page-cart .btn-block:focus {
    background-color: #e44431;
    border-color: #e44431;
    outline: none;
}

.page-cart #order-standard_cart .order-summary,
div#order-standard_cart .order-summary {
    background-color: #f7863b;
    border-bottom: 0;
    border-radius: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.page-cart #order-standard_cart .summary-container,
div#order-standard_cart .summary-container {
    border-radius: 0;
    background: #fff;
}

.page-cart #order-standard_cart .order-summary h2,
div#order-standard_cart .order-summary h2 {
    padding: 18px 20px;
}

.page-cart #order-standard_cart .btn-checkout,
#btnGoToCart {
    padding: 10px 15px;
    width: 100%;
    margin-bottom: 16px;
    font-size: 14px;
}

#order-standard_cart .field-container {
    padding: 30px 30px 15px 30px;
    background: #fff;
    border-color: transparent;
    border-radius: 16px;
    box-shadow: 0 0 4px hsla(0, 0%, 75%, .5);
}

.field-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.field-container .row {
    width: 40%;
}

.field-container .form-group.custom-input-container input[type="text"],
.field-container .form-group.custom-input-container textarea {
    width: 100%;
    max-width: 100%;
    color: #F7863B;
}

div#order-standard_cart .product-info p {
    margin: 0;
}

div#order-standard_cart .field,
div#order-standard_cart .form-control {
    background: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    padding: 1rem 0.75rem;
    height: auto;
    width: 100%;
    box-shadow: none;
}

div#order-standard_cart .panel-addon .panel-add {
    background-color: #f7863b;
}

div#order-standard_cart .sub-heading span,
div#order-standard_cart .sub-heading-borderless span {
    background-color: #F6F7FB;
    color: #333;
}

#order-standard_cart .addon-products .col-sm-6 {
    margin-bottom: 24px;
}

#order-standard_cart .addon-products .panel-addon {
    height: 100%;
    margin-bottom: 0;
}

.right_content ul ul.language-dropdown li {
    margin-left: 0;
}

.right_content .categorydesktop img {
    max-width: 100%;
    object-fit: contain;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    /* border-bottom-color: #f7863b; */
    background-color: #f7863b;
    color: #fff;
    border: none;
}

.dropzone.dz-clickable {
    border: none;
    border-bottom: 1px solid #cecece;
    background: transparent;
}

.dropzone.dz-clickable:hover,
.dropzone.dz-clickable:active,
.dropzone.dz-clickable:focus {
    border-color: #F7523E;
    box-shadow: none;
    outline: none
}

#frmGeneratePassword .panel-primary>.panel-heading {
    padding: 15px;
    background: #F7863B;
    border-color: #F7863B;
}

.modal-header .close {
    opacity: 1;
    text-shadow: none;
}

.wrapp-table table {
    min-width: 600px;
}

.columnhidden {
    display: none;
}

@media (max-width: 1199px) {
    .logincontainer .social-signin-btns .btn {
        max-width: 200px;
        padding: 6px 12px;
        display: block;
        margin: auto;
    }

    .logincontainer.with-social .login-form {
        padding-right: 0;
        border: none;
    }

    .wrapp-table {
        width: 100%;
        display: block;
    }
}

@media (max-width: 1120px) {
    .wrap-search {
        max-width: 40%;
    }
}

@media (min-width: 992px) {
    #order-standard_cart .row .col-md-6 {
        width: 50%;
    }

    .resp-lang {
        display: none;
    }
}

@media (max-width: 991px) {
    /* Header responsive improvements */
    .wrapps-topnav {
        padding: 10px 15px;
        gap: 8px;
        min-height: 50px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .wrap-search {
        flex: 1;
        min-width: 200px;
        margin-right: 10px;
    }
    
    .right_content ul.top-nav {
        gap: 4px;
        flex-shrink: 0;
    }
    
    ul.top-nav>.wrap-count>a {
        padding: 0 10px;
        min-width: 40px;
        height: 40px;
    }
    
    .right_content ul.top-nav li.wrap-language {
        padding: 0 8px;
        min-width: 40px;
        height: 40px;
    }
    
    .avatar-wrapper {
        width: 35px;
        height: 35px;
    }

    .wrapp-table {
        overflow-x: auto;
        width: 100%;
        display: block;
    }


    .email-verification .col-sm-pull-1 {
        right: unset;
    }

    .email-verification .text {
        padding: 0 0 6px 38px;
    }

    .email-verification .btn {
        white-space: normal;
        max-width: 200px;
        display: block;
        margin: auto;
    }

    .col-md-8,
    .col-md-4 {
        width: 100%;
    }

    #order-standard_cart .row .col-md-6 {
        width: 100%;
        margin-bottom: 24px;
    }

    .right_content #header {
        position: fixed;
        z-index: 99;
        background: #fff;
        width: 100%;
        left: 0;
        margin-bottom: 0;
        bottom: 0;
    }

    .left_sidebar {
        position: fixed;
        z-index: 99;
        width: 100%;
        top: 0;
        padding: 10px 0;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
    }

    .left_sidebar.shrink {
        width: 100%;
    }

    .left_sidebar.shrink .logo,
    .left_sidebar.shrink .text-navi {
        display: block;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 250px;
        background: #fff;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        padding: 8px 0;
        margin-left: 8px;
    }

    .left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu {
        padding-left: 28px;
        margin-left: 20px;
        width: calc(100% - 20px);
    }
    
    .left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li a {
        padding: 10px 15px;
        margin: 0;
        border-radius: 0;
        border-bottom: 1px solid #e9ecef;
        color: #333333;
    }
    
    .left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    
    .left_sidebar #main-menu .navbar-left .navbar-nav .dropdown-menu li a:hover {
        background-color: #f8f9fa;
        color: #F7863B;
        transform: none;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu {
        padding-left: 0;
    }

    /* Dropdown menu items styling for shrink mode */
    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li {
        margin: 0;
        list-style: none;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a {
        display: block;
        padding: 12px 20px;
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 4px;
        margin: 2px 8px;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a:hover {
        background-color: #f7863b;
        color: #fff;
        transform: translateX(4px);
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu li a i {
        margin-right: 10px;
        width: 16px;
        text-align: center;
    }

    /* Ensure dropdown doesn't get cut off */
    .left_sidebar.shrink {
        overflow: visible !important;
    }

    .left_sidebar.shrink #main-menu {
        overflow: visible !important;
    }

    .left_sidebar.shrink #main-menu .navbar-left {
        overflow: visible !important;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav {
        overflow: visible !important;
    }

    .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown {
        overflow: visible !important;
    }

    /* Mobile responsive adjustments for shrink mode */
    @media (max-width: 768px) {
        .left_sidebar.shrink #main-menu .navbar-left .navbar-nav .dropdown-menu {
            position: fixed !important;
            left: 50% !important;
            top: 50% !important;
            transform: translate(-50%, -50%) !important;
            width: 90% !important;
            max-width: 300px !important;
            z-index: 9999 !important;
            margin: 0 !important;
        }
    }

    /* Dropdown backdrop styling */
    .dropdown-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        display: none;
    }

    .shrink .navbar-nav>li>a.nav_icon svg {
        margin-right: 24px;
    }

    .right_content.expand,
    .right_content {
        width: 100%;
        padding-top: 72px;
    }

    .logo-wrapper {
        margin-bottom: 0;
        width: 88px;
        margin-right: 24px;
        padding: 0 10px 15px 10px !important;
        border-bottom: 1px solid #e9ecef !important;
    }

    .logo-wrapper .wrap-btn-menu-toggle {
        display: none;
    }
    
    .logo-wrapper .logo {
        width: 100%;
    }
    
    .logo-wrapper .logo img {
        width: 100%;
        max-width: 88px;
    }

    .left_sidebar .container {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 0 15px;
    }

    section#main-menu {
        background: #fff;
        width: calc(100% - 115px);
    }

    .navbar-toggle {
        margin-right: 0;
        padding-right: 0;
    }

    .navbar-toggle .icon-bar {
        background: #333;
    }

    .left_sidebar #main-menu .navbar-left {
        margin-bottom: 0;
    }

    .navbar-left #primary-nav {
        position: absolute;
        width: calc(100% - -115px);
        right: 0;
        z-index: 99;
        background: #fff;
        top: 61px;
        max-height: calc(100vh - 142px);
    }

    ul.language-dropdown {
        top: auto;
        bottom: calc(100% - -9px);
    }

    .shrink #primary-nav {
        padding-left: 15px;
        padding-right: 15px;
    }

    #main-menu .navbar-nav {
        margin-left: 0;
        margin-right: 0;
    }

    .wrap-search {
        display: none;
    }

    .right_content .container {
        padding: 0 15px;
    }

    .right_content #header {
        position: fixed;
        z-index: 99;
        background: #fff;
        width: 100%;
        left: 0;
        margin-bottom: 0;
        bottom: 0;
        padding: 10px 0;
    }

    .btn-primary {
        min-width: 154px;
    }

    .btn-full,
    .form-group .btn-full {
        min-width: 154px;
    }

    .right_content ul.top-nav {
        width: 100%;
        justify-content: space-between;
        align-items: flex-start;
    }

    ul.top-nav>li.account-avatar .dropdown-menu {
        /* top: calc(-100% - 80px); */
        box-shadow: none;
        height: calc(100vh - 141px);
        position: fixed;
        width: 100%;
        overflow-y: auto;
    }

    ul.top-nav>li.primary-action {
        border: none;
        padding-left: 0;
    }

    .right_content ul.top-nav li {
        margin-left: 0;
        max-width: 25%;
    }

    ul.top-nav>li>a.login-btn {
        color: #F7863B;
        background-color: #fff;
        border: 1px solid #F7863B;
    }

    .popover.bottom {
        top: 0 !important;
        max-width: 100%;
        left: 0 !important;
        position: fixed;
        height: calc(100% - 80px);
    }

    .popover.bottom>.arrow,
    .language-popover.popover.bottom>.arrow:after {
        display: none;
    }

    ul.top-nav>.wrap-count>a {
        padding-left: 15px;
    }

    .text-mobile-nav {
        display: block;
        text-align: center;
    }

    .text-mobile-nav2 {
        display: block !important;
    }
    
    .item-mobile {
        display: inline !important;
    }
    
    .item-desktop {
        display: none !important;
    }

    .right_content ul.top-nav li.wrap-language {
        flex-wrap: wrap;
        border: 0px;
    }

    .desk-lang {
        display: none;
    }

    .flag-language {
        display: block;
        width: 100%;
        text-align: center;
    }

    .right_content ul.top-nav li.wrap-language a {
        width: 100%;
        text-align: center;
    }

    ul.top-nav .account-avatar>.dropdown-toggle {
        padding-top: 0;
        margin: auto;
        display: block;
    }

    .avatar-wrapper {
        width: 20px;
        height: 20px;
    }

    .btn-rewards {
        margin-bottom: 16px;
    }

    /* .dataTables_wrapper {
        overflow-x: auto;
    }

    .listtable {
        min-width: 600px;
    } */

    #chatstack-launcher-frame {
        bottom: 78px !important;
    }
}

@media (max-width: 821px) {
    #order-standard_cart .products .row-eq-height .col-md-6 {
        width: 100%;
    }

    #order-standard_cart .domain-pricing .row .col-sm-4 {
        width: 20%;
    }

    #order-standard_cart .domain-pricing .col-sm-8 {
        width: 80%;
    }

    #order-standard_cart .domain-pricing .filtered-row {
        margin: 0;
    }
    
    .btn-primary,
    .form-group .btn-primary {
        color: #fff;
        background-color: #F7863B;
        border-color: #F7863B;
        font-size: 12px;
        padding: 5px 5px;
        border-radius: 20px;
    }
    
    table.table-list tbody td {
    padding: 10px;
    vertical-align: middle;
    font-size: 13px;
    }
}

@media (max-width: 767px) {
    .wrapps-topnav {
        padding: 8px 12px;
        gap: 6px;
        min-height: 45px;
    }
    
    .wrap-search {
        min-width: 150px;
        margin-right: 8px;
    }
    
    .wrap-search .form-group #kb-search-input {
        height: 40px;
        padding: 0px 15px 0px 45px;
        font-size: 14px;
    }
    
    .icon-serach {
        left: 15px;
        top: 12px;
    }
    
    .icon-serach img {
        height: 15px;
    }
    
    ul.top-nav>.wrap-count>a {
        padding: 0 8px;
        min-width: 35px;
        height: 35px;
    }
    
    .right_content ul.top-nav li.wrap-language {
        padding: 0 6px;
        min-width: 35px;
        height: 35px;
    }
    
    .avatar-wrapper {
        width: 30px;
        height: 30px;
    }
    
    .circle_count {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }

    #order-standard_cart .addon-products .col-sm-6 {
        width: 100%;
    }

    .home-shortcuts li {
        width: calc(50% - 15px);
        margin-bottom: 16px;
        margin-right: 30px;
    }

    .home-shortcuts li:nth-child(2n) {
        margin-right: 0;
    }

    .home-shortcuts li a {
        padding: 20px 10px;
    }

    #chatstack-launcher-frame {
        bottom: 78px !important;
    }
}

@media (max-width: 600px) {
    .dataTables_wrapper .dataTables_filter {
        width: 50%;
        margin-top: 7px;
    }
}

@media (max-width: 575px) {

    #order-standard_cart .categories-collapsed .pull-left,
    #order-standard_cart .categories-collapsed .pull-right {
        width: 100%;
    }

    .index-search .input-group {
        display: block;
        width: 100%;
    }

    .index-search .input-group .input-group-btn {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding-top: 8px;
    }

    .index-search .input-group .input-group-btn input {
        width: 150px;
        max-width: 50%;
        font-size: 14px;
        padding: 10px 8px;
    }

    input.btn.btn-reset-pass {
        width: 100%;
        max-width: 200px;
        margin-bottom: 16px;
    }

    .home-shortcuts li p {
        font-size: 12px;
        white-space: normal;
    }
}

@media (max-width: 375px) {

    .btn-full,
    .form-group .btn-full,
    .btn-primary {
        min-width: calc(50% - 2px);
    }
}

/* Fix style */
#example_info {
    background: transparent;
    color: black !important;
}

/* Email verification styles */
.email-verification {
    margin-bottom: 15px;
    border-radius: 10px;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
    background-color: #fff;
}

.email-verification .row {
    border: 1px solid #e44431;
    padding: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-radius: 10px;
}

.email-verification .text {
    flex: 1;
    font-size: 16px; /* Increase font size */
}

.email-verification .btn {
    color: #e44431;
    border-color: #e44431;
    background: none;
    margin-top: 10px;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 767px) {
    .email-verification .text {
        padding: 0 0 6px 38px;
    }

    .email-verification .btn {
        white-space: normal;
        display: block;
        margin: auto;
    }
}

.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.arrow-fa {
    width: 10px;
    height: 7px;
    transition: transform 0.3s ease;
}

/* Dark Mode Toggle Styles */
#container-dark {
    width: 200px;
}

#logo-qw {
    max-width: 120px;
}

#container-dark label {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    position: relative;
    margin: 1.8rem 0 4rem 0;
    cursor: pointer;
    box-shadow: 0px 0px 0px 1px #a2a2a2;
}

#container-dark .toggle {
    position: absolute;
    width: 50%;
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#container-dark .names {
    font-size: 90%;
    font-weight: bolder;
    width: 65%;
    margin-left: 17.5%;
    margin-top: 0.5%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    user-select: none;
}

#container-dark .content {
    display: flex;
    flex-direction: column;
    margin: auto;
    text-align: center;
}

#container-dark .dark,
#container-dark .light {
    margin: 0;
    padding-top: 4px;
}

#container-dark label,
#container-dark .toggle {
    height: 2.8rem;
    border-radius: 100px;
}

/* Toggle */
#container-dark [type="checkbox"] {
    display: none;
}

#container-dark [type="checkbox"]:checked+.app .toggle {
    transform: translateX(100%);
    background-color: #34323d;
}

#container-dark [type="checkbox"]:checked+.app .dark {
    opacity: 1;
    color: white;
}

#container-dark [type="checkbox"]:checked+.app .light {
    opacity: 0.5;
}

/* Navbar Icon Styles */
.navbar-nav>li>a.nav_icon .fas {
    font-size: 20px;
    max-width: 20px;
    height: 20px;
    margin-right: 24px;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    right: auto;
    left: 0;
    margin-left: -20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    padding: 8px 0;
    min-width: 200px;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    padding: 12px 20px;
    color: #2c3e50;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

.dropdown-menu li a i {
    width: 16px;
    text-align: center;
    color: #6c757d;
}

.dropdown-menu li a:hover i {
    color: #007bff;
}

/* Responsive Design for Email Verification */
@media (max-width: 768px) {
    .email-verification {
        padding: 16px 18px;
        margin-bottom: 20px;
        border-radius: 10px;
    }

    .email-verification .row {
        padding: 0;
        min-height: 36px;
    }

    .email-verification .col-1 {
        padding: 0 6px;
    }

    .email-verification .col-10 {
        padding: 0 10px;
    }

    .email-verification .col-12 {
        padding: 0 6px;
    }

    .email-verification .btn {
        font-size: 0.85rem;
        padding: 8px 16px;
        min-height: 36px;
    }

    .email-verification .fw-medium {
        font-size: 1rem;
    }

    .email-verification .far,
    .email-verification .fas {
        font-size: 1.5rem;
    }

    .email-verification .btn-close {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .email-verification {
        padding: 14px 16px;
        margin-bottom: 16px;
        border-radius: 8px;
    }

    .email-verification .fw-medium {
        font-size: 0.95rem;
    }

    .email-verification .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        min-height: 32px;
    }

    .email-verification .far,
    .email-verification .fas {
        font-size: 1.3rem;
    }

    .email-verification .btn-close {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
}
