body{
    padding: 0;
    margin: 0;
    font-family: "DM Sans", sans-serif;
    background-color: #F8F8F8;
}

a{
    color: #4614CA;
    text-decoration: none;
}


a:hover{
    color: unset;
    text-decoration: none;
}

.btnx:focus, .btnx:visited, .form-control, .form-control:visited{
    box-shadow: none !important;
    outline: none !important;
}

h1, h2, h3, h4, h5, h6{
    margin: 0px 0px 20px 0px;
}

p{
    margin: 0px 0px 30px 0px;
}

ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.gap-24{
    gap:24px;
}

.background-cover{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.object-cover{
    object-fit: cover;
    object-position: 50% top;
}

.login-side-img{
    width: 520px;
    height: 100vh;
}

.login-form{
    width: calc(100% - 520px);
    min-height: 100vh;
}

.login-form-area{
    width: 350px;
}

.login-header{
    text-align: center;
}

.login-header h4{
    font-size: 24px;
    margin: 0;
    font-weight: 700;
}

.login-header p{
    color: #BBBBBB;
    margin: 0;
}

.login-form-box{
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    padding: 30px;
}

.login-logo{
    margin-left: -10px;
    margin-bottom: 6px;
}

.login-form-box h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 8px;
}

.form-group label{
    color: #6E6E6E;
    font-size: 20px;
    margin-bottom: 4px;
    display: inline-block;
}

.form-group  .form-control, .form-group  .form-select{
    border-radius: 8px;
    font-size: 14px;
    border: 0.8px solid #DCDCDC;
}

.form-group  input.form-control, .form-group  .form-select{
    height: 48px;
}

.form-group  .form-control::placeholder{
    color: #000;
}

.gap-10{
    gap:10px
}

.login-btn{
    padding: 14px 40px;
    background-color: #000000;
    font-size: 14px;
    font-weight: 500;
    color: #fff !important;
    width: 100%;
    border-radius: 70px;
    margin-top: 8px;
}

.sidebarx{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: #fff;
    width: 102px;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.sidebarx.open{
    width: 290px;
}

.main-content{
    margin-left: 102px;
    padding-left: 20px;
    transition: all 0.3s ease-in-out;
}

.main-content.opened{
    margin-left: 290px;
}

.sidebarx-logo{
    padding: 36px 28px 15px;
    border: 1px solid #F8F8F8;
    transition: all 0.3s ease-in-out;
}

.sidebarx.open .sidebarx-logo{
    padding: 36px 36px 15px;
}

.sidebarx-nav{
    padding: 24px 28px;
    transition: all 0.3s ease-in-out;
}

.sidebarx.open .sidebarx-nav{
    padding: 24px 38px;
}

.sidebarx-nav ul li:not(:last-child){
    padding-bottom: 15px;
}

.sidebarx-nav ul li a{
    padding: 10px;
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    color: #6E6E6E;
}

.sidebarx-logo img{
    height: 56px;
}

.sidebarx-logo .logo-full{
    display: none;
}

.sidebarx.open .sidebarx-logo .logo-full{
    display: block;
}

.sidebarx.open .sidebarx-logo .logo-sm{
    display: none;
}

.sidebarx-nav ul li.active a{
    background-color: #000;
    color: #fff;
}

.sidebarx-nav ul li a span{
    display: none;
}

.sidebarx.open .sidebarx-nav ul li a span{
    display: block;
}

.sidebarx.open .sidebarx-nav ul li a{
    width: 100%;
}

.sidebarx-nav ul li.active a svg{
    fill: #fff;
}

.sidebarx-bottom{
    padding: 20px;
}

.sidebarx.open .sidebarx-bottom{
    padding: 36px;
}

.sidebarx-bottom-content{
    padding: 25px;
    border: 1px solid #DCDCDC;
    background-color: #C3FF84;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    display: none;
    transition: all 0.4s ease-in-out;
}

.sidebarx.open .sidebarx-bottom-content{
    display: block;
}

.sidebarx-bottom-content p{
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.btnx-main{
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
    min-width: 140px;
}

.btnx-black{
    background-color: #000;
    color: #fff !important;
}

.btnx-light-green{
    border: 1px solid #6E6E6E;
    background-color: #C3FF84;
    color: #000 !important;
}

.sidebarx-bottom-content .btnx{
    width: 100%;
}

.logout-btn .btnx{
    padding: 10px;
    display: inline-flex;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
    width: 100%;
    color: #6E6E6E;
}

.logout-btn .btnx span{
    display: none;
}


.sidebarx.open .logout-btn .btnx span{
    display: block;
}

.headerx{
    padding: 30px 0px;
    position: fixed;
    top: 0;
    left: 102px;
    width: calc(100% - 102px);
    z-index: 1000;
    background-color: #f8f8f8;
    transition: all 0.3s ease-in-out;
    padding-left: 20px;
}

.headerx.opened{
    width: calc(100% - 290px);
    left: 290px;
}

.headerx-content span{
    color: #6E6E6E;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}

.headerx-content h3{
    font-size: 34px;
    font-weight: 700;
    margin: 0;
}

.headerx-menu{
    max-width: 422px;
    gap: 20px;
    border: 1px solid #DCDCDC;
    border-radius: 30px;
    background-color: #fff;
    padding: 10px;
}

.headerx-menu-item ul{
    display: inline-flex;
    align-items: center;
    justify-content: end;
    gap: 18px;
}

.headerx-menu-item ul .item-icon{
    width: 24px;
}

.headerx-menu-item ul .avatar-icon{
    width: 41px;
    height: 41px;
    border-radius: 100%;
}

.theme-search{
    position: relative;
}

.theme-search .form-control{
    background-color: #F8F8F8;
    border-radius: 50px;
    height: 41px;
    width: 214px;
    border: none;
    padding: 10px 20px 10px 45px;
}

.theme-search .search-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    padding: 0;
}

.headerx-padding{
    padding-top: 125px;
}

.dashbaord-stats-box{
    padding: 20px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
}

.dashbaord-stats-boxes{
    margin: 30px 0px;
}

.dashbaord-stats-box{
    gap: 18px;
}

.stats-icon{
    width: 56px;
    height: 56px;
    background: radial-gradient(50% 50% at 50% 50%, #C3FF84 49.5%, rgba(195, 255, 132, 0) 100%);
    border-radius: 100%;
}

.stats-icon.unpaid{
    background: #F8F8F8;
}

.stats-content p{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.stats-content h4{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.dashbaord-products{
    background-color: #fff;
    padding: 22px 38px;
    border-radius: 20px;
    border: 1px solid #DCDCDC;
    margin-bottom: 30px;
}

.dashboard-product-header{
    margin-bottom: 30px;
}

.product-header-left h4{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.product-table-filters{
    gap: 20px;
}

.table-dropdown .dropdownx-toggle{
    background-color: #F8F8F8;
    border-radius: 50px;
    padding: 10px 30px;
    color: #6E6E6E;
    font-size: 12px;
}

.table-dropdown .dropdownx-menu{
    border-radius: 20px;
}

.table-dropdown .dropdownx-item{
    font-size: 14px;
}

.product-table .table{
    margin: 0;
}

.product-table .table th, .product-table .table td{
    padding: 10px 0px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    color: #6E6E6E;
}
.product-table .table tr{
    vertical-align: middle;
}
.product-table .table td strong{
    color: #000;
}

.product-table-content{
    gap: 26px;
}

.product-table-image img{
    width: 90px;
    height: 56px;
    border-radius: 8px;
}

.product-table-description h4{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.product-table-description p{
    font-size: 12px;
    font-weight: 500;
    margin: 0;
    color: #BBBBBB;
}

.status-icon{
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    border-radius: 7px;
    padding: 7px;
    border: 1px solid #000000;
}

.status-icon.active{
    border-color: #000;
    background-color: #c3ff84;
    color: #000;
}

.status-icon.inactive{
    background-color: #0000001a;
    color: #000;
}

.register-domain{
    padding: 20px;
    background-color: #fff;
    border: 1px dashed #BBBBBB;
    border-radius: 20px;
    min-height: 100%;
}

.register-domain .register-image{
    width: 91px;
    margin-bottom: 6px;
}
.register-domain-content{
    padding: 10px;
}
.register-domain-content h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.register-domain-content p{
    margin-bottom: 4px;
    color: #BBBBBB;
    font-size: 14px;
}

.register-domain-content .theme-search .form-control{
    width: 100%;
}

.dashbaord-other-info{
    margin-bottom: 30px;
}

.register-domain-content .theme-search{
    margin-bottom: 30px;
}

.action-btn{
    gap: 10px;
}

.recent-support{
    padding: 24px 30px;
    border: 1px solid #DCDCDC;
    background-color: #fff;
    border-radius: 20px;
    min-height: 100%;
}
.recent-support-header {
    margin-bottom: 26px;
}

.recent-support-header h4{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.recent-support-header a{
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    gap: 8px;
}

.recent-support-table .table{
    margin: 0;
}

.recent-support-table .table th, .recent-support-table .table td{
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    border: none;
    color: #6E6E6E;
}

.recent-support-table .table td a{
    color: #6E6E6E;
    font-weight: 500;
    text-decoration: underline;
    margin-left: 5px;
    display: inline-block;
}

.recent-support-table .table td .status{
    display: inline-flex;
    gap: 5px;
}
.recent-support-table .table td b{
    color: #000;
}

.statsSwiper .swiper-pagination{
    bottom: 0px;
}

.statsSwiper .swiper-pagination-bullet{
    background-color: #BBBBBB;
    opacity: 1;
}

.statsSwiper .swiper-pagination-bullet-active{
    background-color: #000000;
}

.footerx{
    position: fixed;
    bottom: 0;
    left: 102px;
    padding: 16px 0px;
    width: calc(100% - 102px);
    background-color: #F8F8F8;
    z-index: 1000;
    padding-left: 20px;
    transition: all 0.3s ease-in-out;
}

.footerx.opened{
    width: calc(100% - 290px);
    left: 290px;
}

.footerx-content p{
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: #BBBBBB;
}

.footerx-links ul li{
    display: inline-block;
    padding-left: 30px;
}

.footerx-links ul li a{
    font-size: 14px;
    font-weight: 500;
    color: #BBBBBB;
}
.footerx-padding{
    padding-bottom: 56px;
}

.no-data-found{
    padding: 110px 0px;
    border: 1px dashed #BBBBBB;
    background-color: #fff;
    border-radius: 20px;
    margin-top: 20px;
}

.no-data-found-content{
    text-align: center;
}

.no-data-found-content img{
    width: 91px;
    margin-bottom: 20px;
}

.no-data-found-content h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.no-data-found-content p{
    color: #BBBBBB;
    font-size: 14px;
    margin-bottom: 16px;
}

.no-data-found-content .btnx{
    height: 46px;
    font-weight: 500;
    padding: 10px 40px;
}

.inner-header-content h4{
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.product-table-btm-cont h5{
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin: 0;
}

.product-table-btm-cont .status-icon{
    padding: 4px 7px;
}

.domains-actions-area{
    margin: 32px 0px;
}

.domains-act-btns{
    gap:20px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px dashed #BBBBBB;
    padding: 27px;
}

.domains-content h4{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.domains-content p{
    color: #BBBBBB;
    font-size: 14px;
    margin: 0;
}

.domains-icon{
    width: 42px;
    height: 42px;
    border: 1px solid #6E6E6E;
    border-radius: 100%;
}

.store-page-tabs{
    margin-bottom: 20px; 
}
.store-page-tabs ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
.store-page-tabs ul li{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 24px;
    background-color: #f8f8f8;
    font-weight: 500;
}

.store-page-tabs ul li.completed{
    background-color:#C3FF84;
    border:0.25px solid #6E6E6E;
}

.store-page-tabs ul::before{
    position:absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width:100%;
    height: 1.5px;
    content: '';
    background-color: #D9D9D9;
}

.store-page-tabs ul li .count{
    border: 1px solid #D9D9D9;
    width: 24px;
    height: 24px;
    border-radius: 100%;
    font-size: 12px;
}

.store-page-tabs ul li.completed .count{
    border: none;
}

.store-section-header h4{
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-box{
    position: relative;
    padding: 30px;
    gap: 20px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    margin-bottom: 30px;
}

.product-box input[type="radio"]{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.product-box:has(input[type="radio"]:checked){
    border: 2px solid #C3FF84;
}

.product-box img{
    height: 205px;
    width: 100%;
    border-radius: 14px;
}

.product-box-content{
    gap: 20px;
}

.product-box-content h4{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.product-box-content .btnx{
    font-size: 14px;
    min-width: 106px;
    padding: 4px 20px;
}

.product-box input[type="radio"]:checked ~ .product-box-content  .btnx-black{
    background-color: #C3FF84;
    border-color: #6E6E6E;
    color: #000000 !important;
}

.order-summaryx{
    padding: 32px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
}

.order-summaryx h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.order-summaryx .table{
    margin: 0;
}
.order-summaryx .table th{
    font-size: 14px;
    color: #BBBBBB;
    border: none;
    padding: 0px;
}

.order-summaryx .table td, .order-summaryx-content p{
    font-size: 14px;
    font-weight: 500;
    color: #6E6E6E;
    padding: 0px;
    border-color: #DCDCDC;
}

.order-summaryx .table td:last-child{
    text-align: right;
}

.order-summaryx-content p{
    margin-bottom: 6px;
}

.order-summaryx-content h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 6px;
}

.btnx-grey{
    border: 0.25px solid #BBBBBB;
    color: #BBBBBB;
    background-color: #F8F8F8;
}

.order-summaryx .btnx{
    width: 100%;
}

.server-content h4{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.server-content p{
    color: #BBBBBB;
    font-size: 14px;
    margin:0px;
}

.product-box-content ul li{
    color: #6E6E6E;
    font-size: 14px;
    font-weight: 500;
}

.location-box{
    gap: 20px;
}

.location-icon{
    position: relative;
}

.location-icon2{
    position: relative;
}

.location-icon img{
    width: 42px;
    height: 42px;
}

.location-icon2 img{
    width: 82px;
    height: 42px;
}

.location-icon .check-img{
    position: absolute;
    top:0;
    left: 0;
    opacity: 0;
}

.location-content-box{
    position: relative;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    padding: 24px;
    margin-bottom: 30px;
    border-radius: 20px;
}

.location-content-box input[type="radio"]{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.location-content-box:has(input[type="radio"]:checked){
    border: 2px solid #C3FF84;
}

.location-content-box input[type="radio"]:checked ~ .location-box .location-icon .flag-img{
    opacity: 0;
}

.location-content-box input[type="radio"]:checked ~ .location-box .location-icon .check-img{
    opacity: 1;
}

.location-content h4{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.location-content p{
    font-size: 14px;
    margin: 0;
    color: #BBBBBB;
}

.billing-form{
    gap:24px;
    padding: 40px;
    background-color: #fff;
    border-radius: 20px;
    border: 1px solid #DCDCDC;
    margin-bottom: 20px;
}

.form-group ul li:not(:last-child){
    padding-right: 10px;
}

.form-section h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom:6px;
}

.form-group ul li label{
    font-size: 14px;
    color: #000000;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.payment-method{
    accent-color:#000;
}

.qty-boxes {
    gap: 16px;
}

.qty-boxes .btnx{
    width: 32px;
    height: 32px;
    border-radius: 100%;
    background-color: #C3FF84;
    border: 0.25px solid #6E6E6E;
}

.qty-boxes .form-control{
    height: 48px;
    border: 1px solid #DCDCDC;
    border-radius: 8px;
    background-color: #ffffff3b;
}

.gpu-modal-header h4{
    color: #6E6E6E;
    font-size: 18px;
    font-weight: 700;
}

.quantity-form-group{
    margin-bottom: 20px;
}

.quantity-form-group label{
    color: #6E6E6E;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 8px;
}

.quantity-form-group .form-select{
    color: #6E6E6E;
    height: 48px;
    border: 0.8px solid #DCDCDC;
    border-radius: 8px;
}

.ticket-boxes{
    margin-top: 16px;
}

.ticket-box{
    gap: 20px;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #DCDCDC;
    background-color: #fff;
}

.ticket-box-content h4{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.ticket-box-content p{
    font-size: 14px;
    margin: 0;
    color: #BBBBBB;
}

.form-group .hint{
    font-size: 14px;
    color: #6E6E6E;
}

.file-group{
    gap: 10px;
    position: relative;
}

.file-group label{
    position: absolute;
    top: 1px;
    left: 1px;
    height: 46px;
    border-right: 1px solid #DCDCDC;
    color: #000;
    margin: 0;
    background-color: #f8f8f8;
    padding: 12px 20px;
    font-size: 14px;
}

.ticket-box-area, .ticket-reply, .ticket-information{
    padding: 30px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    margin-bottom: 10px;
}

.ticket-reply{
    padding: 10px 20px;
    border-radius: 10px;
}

.ticket-reply a{
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.ticket-box-area h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ticket-box-area h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.ticket-box-area p{
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 20px;
}

.ticket-information{
    border-radius: 10px;
    padding: 12px 20px;
}

.ticket-information ul li:not(:last-child){
    padding-bottom: 10px;
}

.ticket-information ul li{
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.ticket-information ul li span{
    font-size: 12px;
    color: #BBBBBB;
    display: block;
}

.ticket-information ul li .status{
    color: #6E6E6E;
    gap: 5px;
}

.ticket-attachment a{
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid #DCDCDC;
    gap: 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #6E6E6E;
}

.most-popular-search{
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
}

.most-popular-search h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.popular-search-box{
    padding: 10px;
    border-radius: 10px;
    gap: 16px;
    background-color: #F8F8F8;
    margin-bottom: 10px;
}

.popular-search-box:last-child{
    margin-bottom: 0px;
}

.popular-search-content h4{
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

.popular-search-content p{
    font-size: 12px;
    font-weight: 500;
    color: #BBBBBB;
    margin: 0;
}

.category-box{
    padding: 17px;
    background-color: #fff;
    border: 1px solid #DCDCDC;
    border-radius: 20px;
    gap: 18px;
    margin-bottom: 20px;
}

.category-area{
    margin-top: 32px;
}

.new-header h4{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.category-box span{
    width: 56px;
    height: 56px;
    border-radius: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #C3FF84 49.5%, rgba(195, 255, 132, 0) 100%);
}

.category-box h4{
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #000;
}

.popular-article{
    padding: 10px 20px;
    background-color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 20px;
}

.popular-article h4{
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.popular-article p{
    color: #BBBBBB;
    font-size: 12px;
    font-weight: 500;
    margin: 0;
}

.news-details{
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #DCDCDC;
    background-color: #fff;
}

.news-details img{
   /* width: 100%; */
    margin-bottom: 24px;
}

.news-details h3{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.news-details p{
    font-size: 14px;
    color: #000000;
}

.news-details h4{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.account-action-btn{
    padding-bottom: 20px;
}

.email-preference ul li{
    padding-bottom: 20px;
    font-size: 14px;
    display:flex;
    color: #6E6E6E;
    align-items: center;
    gap: 10px;
}

.email-preference ul{
    margin-top: 10px;
}

.email-preference ul li input{
    width: 24px;
    height: 24px;
    border: none;
    border: 2px solid #DCDCDC;
    position: relative;
    border-radius: 4px;
}

.email-preference ul li input::before{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 4px;
}

.email-preference ul li input:checked:before{
    background-image: url(../images/checked-icon.svg);
    border: none;
}

.form-group .form-control::placeholder {
    color: #b8b8b8;
}

.sortable-header {
    display: inline-block;
    text-decoration: none;
    font-weight: bold;
    color: inherit; /* Inherit the color of the header */
    padding: 5px 10px;
    border-radius: 5px;
}

.sortable-header:hover {
    background-color: #c3ff84;
    color: #000; /* Change text color on hover if needed */
    cursor: pointer;
}
