.activestorebuttn .next_avb p{
    color: white !important;
}
.activestorebuttn .miles_hdf{
    color: white !important;
}

.activestorebuttn .next_avb span{
    color: white !important;
}
.activestorebuttn h4{
    color: white !important;
}
.activestorebuttn i{
    color: white !important;
}
.activestorebuttn p{
    color: white;
}
.activestorebuttn{
    background-color: #1370f2 !important;
    color: white !important;
}
.user-menu {
    position: relative;
}

.user-menu-dropdown {
    position: relative;
    display: inline-block;
}

.user-menu-toggle {
    cursor: pointer;
}

.user-avatar {
    width: 30px;
    border-radius: 50%; /* Optional: to make the avatar circular */
}

.user-menu-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    width: 200px;
    border-radius: 10px;
    padding: 10px;
}

.user-menu-item {
    display: block;
    padding: 10px;
    color: black;
    text-decoration: none;
    border-radius: 10px;
}

.user-menu-item:hover {
    background-color: #f1f1f1;
}

.user-menu-dropdown:hover .user-menu-dropdown-content {
    display: block;
}

.login-icon {
    font-size: 24px; /* Adjust size if needed */
}
.cart-proceedbutton {
    color: #fff;
    width: 100%;
    border-radius: 5px;
    padding-bottom: .75rem;
    padding-top: .75rem;
    text-decoration-line: none;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    background-color: black;
}

.cart-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    background-color: #fff;
    border-left: 1px solid #ddd;
    z-index: 9999;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-sidebar.active {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    padding: 20px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.close-btn {
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

/* Cart Body */
.cart-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-product {
    border: 1px solid #2f3137;
    border-radius: .375rem;
    padding: .75rem;
    margin-bottom: 20px;
    background-color: white;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.cart-product h3 {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    font-weight: 600;
    line-height: 1.75rem;
    font-family: BMDupletDSP, HelveticaDSP, sans-serif;
}

.product-color {
    margin-left: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.product-attributes {
    margin-top: 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.attribute {
    font-size: 14px;
    border: 1px solid #aaacb1;
    line-height: 18px;
    padding-left: .25rem;
    padding-right: .25rem;
    border-width: 1px;
    max-width: 100%;
/*    display: inline-block;*/
    font-weight: 600;
    border-radius: .125rem;
    color: #0e1016;
}

.product-pricing {
    margin-top: 12px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-size: 22px;
    font-weight: bold;
}

/* Cart Footer */
.cart-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn-block:hover {
    background-color: #0056b3;
}
@media (max-width: 767px) {
  .top-navbar {
    display: none;
  }
}
@media (max-width: 767px) {
    /* Targeting columns inside the .ddf_gt container */
    .ddf_gt .col-sm-6, 
    .ddf_gt .col-sm-4, 
    .ddf_gt .col-sm-3 {
        width: 50%; /* Two boxes per row */
        float: left;
    }

    /* Clearfix for every odd element to prevent wrapping issues */
    .ddf_gt .col-sm-6:nth-child(2n+1), 
    .ddf_gt .col-sm-4:nth-child(2n+1), 
    .ddf_gt .col-sm-3:nth-child(2n+1) {
        clear: both;
    }
}
 /* Container for the search results */
#search-results {
    position: absolute;
    top: 100%; /* Adjust according to the position of the search bar */
    left: 0;
    width: 100%;
    max-height: 400px; /* Adjust height as needed */
    overflow-y: auto;
    background-color: #ffffff; /* White background for results */
    border: 1px solid #ddd; /* Light border around the results */
    border-radius: 4px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    z-index: 1000; /* Ensure the dropdown is above other elements */
}
.result-link{
    display: flex;
}
/* Individual result item */
.result-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee; /* Light border between items */
    text-decoration: none; /* Remove underline from links */
    color: #333; /* Dark text color */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

/* Hover effect for result items */
.result-item:hover {
    background-color: #f5f5f5; /* Light grey background on hover */
}

/* Product image styling */
.result-item img {
    width: 50px; /* Fixed width for images */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Space between image and text */
    border-radius: 4px; /* Rounded corners for the image */
}

/* Container for product information */
.result-item .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1; /* Allow info to grow and fill available space */
}

/* Product name styling */
.result-item .name {
    font-weight: bold;
    margin-bottom: 5px; /* Space below the name */
    font-size: 16px; /* Adjust font size as needed */
    color: #000; /* Black text color */
}

/* Product price styling */
.result-item .price {
    font-size: 14px; /* Adjust font size as needed */
    color: #00c880; /* Green color for price */
}

/* No results message styling */
.no-results {
    padding: 10px;
    text-align: center;
    color: #999; /* Light grey color for no results message */
    font-style: italic; /* Italicize the text */
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0px;
    margin: 0px 0;
    /* background-color: #f8f9fa; */
    border-radius: 4px;
    overflow-x: auto; /* Enable horizontal scrolling */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.breadcrumb-item {
    font-size: 14px;
    white-space: nowrap; /* Prevent item wrapping */
    flex: 0 0 auto; /* Allow items to shrink if needed */
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    margin: 0 8px;
    color: #6c757d;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #007bff;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

@media (max-width: 576px) {
    .breadcrumb {
        flex-wrap: nowrap; /* Prevent wrapping on small screens */
        overflow-x: scroll; /* Allow horizontal scrolling */
    }
}
.plans .heading h2{
    text-align: center;
}
.plans .heading p{
    text-align: center;
}
.start_sell_img img{
    width: 100%;
}
.flawlessdesc li{
    font-size: 18px;
    font-weight: 700 !important;
    list-style-type: disc !important;
    margin-left: 0px;
    border: none !important;
    padding: 0 !important;
    line-height: 1.5;
    color: #000;
}
.plan_heading{
    text-align: center;
}
.plan_heading{
    text-align: center;
}
.plan_heading span{
    color: #0BCB1E;
}
.phonenumbersection{
    display: flex;
}
.want_totalk{
    font-size: 14px;
}
.phonenumbersection a{
    font-size: 26px;
    font-weight: 600;
    margin-left: 10px;
}
.custom-form-group {
    display: flex;
    align-items: center;
    width: 100%; /* Ensure the form group takes the full width */
    margin-bottom: 21px;
}

.custom-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%; /* Ensure the input container takes the full width */
}

.custom-input {
    width: 100% !important;
    padding-left: 40px !important;
    border: none !important;
    background-color: #f4f4f4 !important;
    height: 45px !important;
    box-sizing: border-box !important;
    border-radius: 10px !important;
    padding-top: 30px;
    padding-bottom: 30px;
}

.custom-icon {
    position: absolute;
    left: 10px; /* Adjust the position as needed */
    width: 20px; /* Adjust the icon size as needed */
    height: 20px; /* Adjust the icon size as needed */
    bottom: 18px;
}

.phoneplanherosection{
    transition: 1s;
    padding: 36px 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
    width: 524px;
    height: 355px;
    background-color: white;
    position: absolute;
    top: 100px;
}
.phoneplanherosection .your_areas{
    color: #0BCB1E;
}
.phoneplanherosection h1{
    font-weight: bold;
}
.herosectionpositionrelative{
    position: relative;
}
.col-xl-custom {
  flex: 0 0 20%;
  max-width: 20%;
}
.modelbutton{
    border-radius: 10px;
    border: 1px solid lightgray;
    box-shadow: -1px 0px 9px 0px #dcdcdc;
    padding: 10px 20px;
    margin-bottom: 10px; 
    margin-top: 10px; 
    background-color: #f2f2f2;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    background: #fff;
    color: #222;
    font-size: 14px;
    font-weight: 600;
    min-height: 40px;
}
.logo img {
    height: 90px;
    width: 99px;
}
.accessories-page{
    background-color: #F4F4F4;
}
.accessories-page .card_sell_section{
    background-color: white !important;
}
.tp-header-action-item i {
    font-size: 22px;
    color: #ffffff;
}

.carticon span {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #181818;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    top: -4px;
    right: -10px;
    color: #fff;
}

a.register_new:hover {
    color: #0078eb;
}

.contgitxc {
    text-align: center;
    width: 100%;
}

span.cont_yeq {
    font-weight: 600;
    font-size: 13px;
}

.contgit {
    padding: 0px 6px;
}
.links-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.forgot-password {
    /* Optional styles for the Forgot Password link */
}

.register-new {
    /* Optional styles for the Register Now link */
}

nav.tp-main-menu-content span {
    color: #99a6cb;
}

.tp-header-main-right {
    margin-right: 30px;
}

.logo {
    margin-left: 80px;
}

.topcontact h4 {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .5px;
    color: #ffffff !important;
}

.tp-header-action-item.topcontact i {
    font-size: 20px;
    color: #131626;
}

.tp-footer-bottom {
    background: #131626;
}

.tp-footer-logo img {
    height: auto;
}

.topcontact p {
    font-size: 11px;
    color: #ffffff !important;
}

@media(max-width:991px) {
    .logo {
        text-align: center;
    }
}


/* sell css start */

.card_sell_img img {
    width: 100%;
    height: 240px;
    transition: transform .2s;
    object-fit: contain;
}


/* .card_sell_img img:hover {
    transform: scale(1.2);
} */

.hoverbqw img:hover {
    transform: scale(1.05);
}

.card_sell_heading h4 {
    font-size: 15px;
    font-weight: 500;
    color: #131626;
}

.card_sell_section {
    transition: 1s;
    padding: 14px 14px 30px 14px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.card_sell_section:hover {
    box-shadow: 0px 2px 10px #ddd;
}

.tp_seel_heading {
    margin-bottom: 40px;
    margin-top: 20px;
}

.sell_devices a {
    font-size: 16px;
    text-decoration: underline;
    font-weight: bold;
}


/* sell css End */


/* Choose modal css start */

nav.breadcrumb_top .active {
    padding: 2px 10px;
    background: #707070;
    margin-left: 15px;
    color: #fff;
    border-radius: 4px;
    font-size: 12px;
}

nav.breadcrumb_top a {
    font-size: 14px;
}

.tp_seel_heading p {
    color: #707070;
    font-size: 16px;
}

.tp_seel_heading h4 {
    font-size: 16px;
}

.brdf {
    padding: 12px;
    border: 1px solid #000;
    text-align: left;
    margin-bottom: 16px;
    border-radius: 6px;
    transition: all 0.3s 0s ease-out;
}

.breadcrumb_top .breadcrumb {
    margin: 0;
}


/* nav.breadcrumb_top ol li a:hover {
    color: #707070 !important;
} */

.marfd {
    margin-right: 10px;
}


/* Choose modal css End */

.tabs_choose_cond ul li button {
    border: 1px solid #F4F4F4 !important;
    width: 200px;
    color: #000;
    background: #F4F4F4 !important;
    font-weight: 500;
}

.tabs_choose_cond ul li button.active {
    background: #1370F2 !important;
    color: #fff;
    border: 1px solid #1370F2 !important;
}

.tabs_choose_cond ul li button {
    padding: 12px;
    border-radius: 12px !important;
}

.tabs_choose_cond ul li button:hover {
    color: #000;
}

.brdf:hover {
    background: #000;
    color: #fff !important;
}

.brdf:hover p {
    color: #fff;
}

.brdf p {
    margin: 0px;
    color: #000;
    font-size: 14px;
    font-weight: normal;
}

.tabs_choose_cond ul li button:hover {
    border: 1px solid #F4F4F4 !important;
    width: 200px;
    color: #000;
    /* background: #F4F4F4 !important; */
    font-weight: 500;
}

.whtmd {
    margin-bottom: 14px !important;
    margin-top: 6px !important;
}


/* condition css */

.heading_flow h4 {
    font-size: 20px;
    font-weight: bold;
    color: #2A2D3D !important;
    margin-bottom: 12px;
}

.get_paid_btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading_flow p {
    color: #666A80;
    font-size: 14px;
    margin: 0px 0px 8px;
}

.back_button_yy a {
    padding: 10px 60px;
    border: 1px solid #0078eb;
    border-radius: 10px;
    color: #0078eb;
    font-weight: 600;
}

.back_button_yy {
    margin-right: 16px;
}

.email_input input {
    text-align: left;
    height: 38px;
    border: none;
    background: #fff;
    position: relative;
    padding-left: 40px;
}

.offer_tt_sec {
    background: #EFECEC;
    border-radius: 0px;
    padding: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-radius: 0px 0px 12px 0px;
}

.offer_tt_sec h4 {
    font-weight: bold;
    font-size: 16px;
    color: #383C4E;
}

.offer_tt_sec h3 {
    font-size: 20px;
    font-weight: 500;
}

.get_paid_btn button {
    background-color: #0078eb;
}

.mail_evrt i {
    color: #4E5266;
}

.wil_teatdf p {
    font-size: 13px;
    color: #222;
}

.get_paid_btn button {
    background-color: #0078eb;
    padding: 8px 20px;
    color: #fff;
    border-radius: 6px;
    border: 1px solid #0078eb;
    font-weight: 600;
    font-size: 13px;
}

.alm_irem {
    color: #1370F2;
}

.choos_content {
    padding: 0px;
}

.heading_flow i {
    color: #1370F2;
    margin-right: 8px;
}


/* get paid modal css */

.checkout_pop h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #000;
}

.checkout_pop span {
    font-weight: 600;
    font-size: 16px;
    color: #1370F2;
}


/* End get paid modal */

.ckeckout_crt_but a:hover {
    background-color: #1050a9;
    color: #fff;
}

.qty_rt .count {
    color: #000;
    margin-top: 0px;
    padding: 0px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding-left: 10px;
    border-radius: 8px;
    border: 1px solid #cecece;
    height: 38px;
}

.qty_rt .plus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    width: 40px;
    height: 30px;
    font-size: 24px;
    text-align: center;
    border-radius: 6px;
    background-clip: padding-box;
    position: relative;
    top: 0px;
    right: 35px;
    color: #1370F2;
    line-height: 31px;
}

.qty_rt .minus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: #b1b1b1;
    width: 40px;
    height: 30px;
    font-size: 30px;
    text-align: center;
    border-radius: 6px;
    background-clip: padding-box;
    position: relative;
    top: 0px;
    left: 33px;
}

.qty_num h3 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px
}

.minus:hover {
    background-color: #717fe0 !important;
}

.plus:hover {
    background-color: #717fe0 !important;
}

.ckeckout_crt_but a {
    width: 100%;
    background: #1370F2;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    line-height: 16px;
    border: 1px solid #1370F2;
}

.checkout_black {
    /* margin-right: 16px; */
    padding: 13px !important;
}

.checkout_gray {
    color: #1370F2 !important;
    background-color: #ffffff !important;
    border: 1px solid #1370F2;
    padding: 13px;
}

.checkout_gray span {
    font-size: 12px;
    font-weight: 400;
    color: #000;
}

.checkout_gray:hover {
    background: #edf6ff !important;
    color: #1050a9 !important;
    border: 1px solid #1370F2;
}

.brdopel {
    border: 1px solid #000;
    border-radius: 8px;
}

.grta:hover {
    background: #edf6ff !important;
    color: #222 !important;
}

.dd_black {
    width: 100%;
}

.dd_gray {
    margin-right: 16px;
    width: 100%;
    margin-bottom: 12px;
}


/* checkout css start */

.checkout_payment_sec .accordion-header button {
    background: inherit !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 700 !important;
    color: #131626 !important;
}

.heading_dec_fud {
    padding-left: 20px;
    padding-right: 20px;
}

.heading_pay {
    font-weight: 500 !important;
    color: #000 !important;
    font-size: 16px;
}

.paypal_and_bnk_sec {
    border: 1px solid #D4D7E6;
    margin-right: 14px;
    border-radius: 7px;
    padding: 10px 25px;
    margin-bottom: 18px;
    background: #fff;
}

.tabs_choose_cond .form-check {
    padding-left: 0px !important;
}

.paypal_and_bnk_sec img {
    width: 150px;
    height: 40px;
    object-fit: contain;
    cursor: pointer;
}

.bank_trn_heading {
    padding-top: 6px;
    vertical-align: bottom;
}

.bank_trn_heading i {
    font-size: 22px;
    margin-right: 8px;
    position: relative;
    top: 2px;
    color: #000;
}

.bank_trn_heading span {
    font-weight: bold;
    color: #131626;
}

.paypal_and_bnk_sec input {
    opacity: 0;
}

.hidexx {
    display: none;
}

#myDIV {
    width: 100%;
    padding: 50px 0;
    text-align: center;
    background-color: lightblue;
    margin-top: 20px;
}

.email_paypal .form-group {
    margin-top: 18px;
}

.email_paypal input {
    border: 1px solid #000;
    height: 35px;
    color: #000;
    border-radius: 8px;
    padding: 0px 13px 0px;
}

.email_paypal input::placeholder {
    color: #2b2b2b;
}

.paypal_text p {
    font-size: 12px;
    line-height: 20px;
}

.paypal_next a {
    width: 100%;
    background: #1370F2;
    color: #fff;
    padding: 12px 25px 12px 25px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #1370F2;
    border-radius: 8px;
}

.paypal_next a:hover {
    border: 1px solid #000;
    background: #000;
    color: #fff;
}

.paypal_next {
    float: right;
    margin-top: 6px;
}

.colspal {
    margin-bottom: 20px;
    border: 1px solid #D4D7E6 !important;
    border-radius: 8px;
    background: #F9F9F9;
}

.form-control:focus {
    box-shadow: none !important;
}

.checkout_contact .form-group {
    margin-bottom: 10px;
}

.checkout_contact input {
    border: 1px solid #D4D7E6;
}

.use_rt_textd label {
    color: #131626;
    font-weight: bold;
    font-size: 15px;
}

.use_rt_textd p {
    color: #666A80;
    font-size: 13px;
}

.checkout_contact input {
    position: relative;
    top: 0px;
}

.next_btn_yt {
    float: right;
}

.payment_sec_jwl {
    flex-wrap: wrap;
}

.next_btn_yt button {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 10px 30px 10px 30px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #000;
}

.next_btn_yt button:hover {
    background: #000;
    color: #fff;
}

button.btn:disabled {
    background: #c7c7c7;
}

.arab {
    font-size: 12px;
    line-height: 20px;
}

.chckot {
    margin-top: 0px !important;
}

.phone_dec_tt p {
    font-size: 13px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 8px;
    color: #222;
}

.item_chk_list img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.order_sec_sam h3 {
    font-size: 20px;
}

.phone_dec_tt {
    max-width: 180px;
    padding-left: 8px;
    padding-right: 10px;
}

.order_sumamary {
    padding: 20px 20px 18px 20px;
    border: 1px solid #D4D7E6;
    border-radius: 8px;
    background: #fff;
}

.order_sec_sam h3 {
    font-size: 14px;
    font-weight: bold;
    color: #2A2D3D;
}

.list_checkout_iteem {
    /* flex-wrap: wrap; */
    justify-content: space-between;
    margin-bottom: 20px;
}

.qty_rt {
    width: 90%;
    /* margin-left: -22px; */
}

.delete_tt_checkout {
    float: right;
}

.delete_tt_checkout {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    margin-top: 3px;
    cursor: pointer;
}

.lesp {
    width: 30px !important;
    height: 20px !important;
    font-size: 16px !important;
    top: 5px !important;
    left: 33px !important;
    line-height: 20px;
}

.resp {
    width: 30px !important;
    height: 20px !important;
    font-size: 16px !important;
    line-height: 20px;
    top: 5px !important;
}

.qty_rt .ctresp {
    height: 30px;
    font-size: 15px;
    font-weight: 500;
}

.add_anotgher_heading h5 {
    font-size: 14px;
    margin-bottom: 12px;
}

.add_anotgher_heading {
    text-align: center;
    padding-top: 12px;
    margin-bottom: 30px;
}

.delete_tt_checkout i {
    font-size: 14px;
    color: #666A80;
}

a.register_new {
    text-decoration: underline;
    padding-left: 4px;
}

.clickj_heading a {
    color: #0078eb;
}

.prot input {
    height: 45px !important;
}

.modal_new_ad input {
    padding: 0 10px !important;
    padding-left: 12px !important;
}

.fgt_srd input {
    height: 48px !important;
}

.fgt_srd .profile__input {
    margin-bottom: 16px !important;
}

.choose_model {
    background: #f9f9f9;
}

.brd_print_shl {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
    height: 300px;
}

.brd_print_shl {
    padding: 40px;
}

.add_plu_btn i {
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
}

.profile__address-item {
    border: 1px solid #ddd;
    margin-bottom: 0px;
    border-radius: 10px;
    padding: 22px;
}

.add_plu_btn {
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 36px;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 15px;
    color: #222;
    margin-top: 30px;
}

.order_total_srt {
    border-top: 1px solid #D4D7E6;
    margin-bottom: 7px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login_werper {
    padding-top: 60px;
    background-color: #fafafa;
}

.brd_heasd {
    text-align: right;
}

.brd_heasd span {
    font-size: 12px;
}

.brd_heasd h5 {
    font-size: 18px;
    margin: 0;
}

.price_sec h5 {
    font-size: 16px;
}

.dxmt {
    margin-left: -22px !important;
}


/* End checkout end */


/* .accordion-item:not(:first-of-type){border-top:0} */

.accordion-button.collapsed {
    /* background: rgb(0, 0, 0) */
}

.cardfg_acco .accordion-item {
    border: none !important;
}

.cardfg_acco button.accordion-button {
    background: #fff;
    border-bottom: 1px solid #ededed !important;
    border-radius: 0px !important;
    box-shadow: none !important;
    color: #2A2D3D;
    font-size: 16px;
    font-weight: 600;
}

.heading_syat h3 {
    color: #131626;
    font-size: 26px;
    font-weight: 700;
    margin-left: 6px;
}

.heading_date h3 {
    color: #131626;
    font-size: 26px;
    font-weight: 700;
    margin-left: 6px;
}

.cardfg_acco button.accordion-button:hover {
    background-color: #fbfbfb;
}

.caret_heading {
    padding-top: 10px;
    margin-bottom: 10px;
}

.freque_asked_section {
    background: #E8F3FF;
    padding: 60px;
}

.cardfg_open {
    margin: 8px;
    position: relative;
}

.dateh p {
    margin: 0px;
    font-size: 13px;
    color: #666A80;
}

.fgt_op img {
    width: 30px !important;
    height: 30px;
    flex-shrink: 0;
    margin-right: 10px;
}

.fgt_op span {
    font-style: italic;
    font-size: 12px;
}

.rthe h3 {
    font-size: 18px !important;
}

.rthe p {
    color: #818181 !important;
    font-size: 12px !important;
}

.caret_heading h3 {
    font-size: 20px;
    font-weight: 700;
    color: #131626;
}

.caret_heading p {
    color: #383C4E;
    font-size: 14px;
}

.artical_img img:hover {
    -webkit-transform: scale(1.3);
    transform: scale(1.02);
}

.activevv {
    color: #0078eb;
    /* font-weight: bold; */
}

.artical_img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.caret_heading span {
    color: #A8ACBF;
    font-size: 13px;
}

.cardfg_acco {
    /* cursor: pointer; */
    padding: 40px;
    background: #fff;
    margin: 5px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}


/*Start print-your-shipping */

.print_ship_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

.step_print_sec h5 {
    font-size: 16px;
    color: #079F16;
    font-weight: 500;
}

.step_print_sec h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 4px;
    padding-top: 4px;
}

.step_print_sec a {
    text-decoration: underline;
    font-size: 14px;
    color: #1370F2;
}

.print_shipping_label_tt img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.heading_of_print h2 {
    font-size: 26px;
}

.step_print_sec p {
    font-size: 15px;
    line-height: 22px;
    color: #666A80;
    padding-top: 2px;
}

.heading_of_print p {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    font-weight: 500;
}

.custom-control-input:checked {
    background-color: #0BCB1E;
    border: 1px solid #0BCB1E !important;
}

.use_rt_textd {
    padding-left: 14px;
}

.custom-control-input.form-check-input[type=checkbox] {
    width: 20px;
    height: 20px;
    box-shadow: none !important;
    border-radius: 50px;
}

.heading_of_print span {
    color: #666A80;
    font-size: 13px;
}

.rg_shipping_kmg img {
    width: 100%;
    height: 300px;
    object-fit: contain;
}

.button_print_shipping a {
    background: #1370F2;
    color: #fff;
    padding: 12px 16px 12px 16px;
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #1370F2;
}

.step_print_sec a:hover {
    color: #3c3c3c !important;
}

.button_print_shipping a:hover {
    border: 1px solid #1050a9;
    background-color: #1050a9;
    color: #fff;
}

.quick_headinf {
    color: #1370F2;
}


/* End print-your-shipping */


/* start How to Erase Your Device
 */

.list_og_phone_tt:hover {
    border: 2px solid #000;
    transition-duration: 0.3s;
}

.list_tg_scr img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

.list_og_phone_tt {
    border: 2px solid #9f9f9f;
    border-radius: 8px;
    transition: all 0.3s 0s ease-out;
    margin-right: 26px;
}

.phone_fg_heading h4 {
    font-size: 16px;
}

.cloud_account_section {
    padding-top: 28px;
}

.remkl_sec_heading h3 {
    font-size: 24px;
}

.onm_heading p {
    color: #000;
    font-size: 14px;
    line-height: 23px;
}

.onm_textt {
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    border-radius: 50%;
    text-align: center;
    padding-top: 6px;
    font-size: 20px;
    font-weight: bold;
    max-width: 40px;
    flex-basis: 100%;
    flex-shrink: 0;
    margin-top: 2px;
}

.ltgh_right {
    border-right: 1px solid #9f9f9f;
    margin-right: 5px;
}

.inst_video_sec video {
    border-radius: 10px;
    object-fit: cover;
}

.heading_vc_tt h3 {
    font-size: 24px;
}

.phone_bgh img {
    height: auto;
    width: 35px;
    object-fit: contain;
}

.mbleimg {
    color: #000;
    font-size: 15px;
}


/* .brdf.mbleimg span {
    font-size: 15px;
    color: #000;
    font-weight: 400;
} */

.phone_bgh {
    background: #fff;
    margin-right: 10px;
    padding: 0px 10px;
    border-radius: 5px;
    border: 1px solid #e7e7e7;
}


/*End How to Erase Your Device
 */

.btn_secdf {
    height: 38px;
}


/* sell csss */

.buy_attp:hover .hv_text {
    display: block;
}

.hv_text {
    display: none;
}

.buy_attp a {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 16px 16px 16px 16px;
    font-size: 16px;
    line-height: 16px;
    border: 2px solid #2567eb;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    background-image: linear-gradient(to bottom right, #036CFF, #0025DD);
}

.buy_attp a:hover {
    border: 2px solid #0025DD;
    background: #ffffff;
    color: #0025DD
}

.tech_comm_img img {
    width: 400px;
    height: auto;
    object-fit: contain;
}

.heading_of_bann {
    vertical-align: middle;
}

.heading_of_bann h5 {
    font-size: 34px;
    color: #fff;
    font-weight: 700;
}

.heading_of_bann p {
    color: #fff;
    font-size: 14px;
}

.heading_of_bann h3 {
    font-size: 36px;
}

.cvbqw {
    background: #F0EEF1;
}

.hand_nmas img {
    width: 400px;
    object-fit: cover;
}
.bnms {
    text-align: right;
    margin-right: 100px;
}
.psdf {
    padding-left: 0px;
}
.select_terd {
    font-size: 14px !important;
}
/* end sell css */
.buy_attp a:active {
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #000;
}

.modalrev {
    margin-top: 6px !important;
}
/* what moidel it is css */
.bromp:hover{
    border: 1px solid #000;
}
.rgt_side_section_dae {
    background: #f7f7f7;
    position: relative;
    z-index: -1;
    height: 100%;
    padding-top: 18px;

}
.bprdert {
    margin-bottom: 20px !important;
}
.bprdert{
    border-top: 1px solid #ddd;
}

.store_details {
    border:1px solid #D4D7E6;
    border-radius: 8px;
}

.top_pt {
    width: 25px;
    height: 25px;
    background: #1370F2 !important;
    border-radius: 50%;
    text-align: center;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.circle_wth {
    line-height: 29px;
}

.line_bordf {
    /* position: absolute;
    width: 21%;
    border: 1px solid #000;
    margin-left: 19px;
    margin-top: 9px; */
}

.heading_dives_sed h4 {
    font-size: 14px;
}

.read_btyn a {
    font-size: 12px;
    text-decoration: underline;
}

.heading_dives_sed {
    /* background: #fff; */
    border-radius: 8px;
    padding: 2px 14px;
}

.about_our_rep span {
    margin-left: 8px;
}

.list_model_divc p i {
    color: #000;
    margin-right: 8px;
}

.list_model_divc p {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
}

.list_model_divc {
    border-bottom: 1px solid #e9e9e9;
    padding-bottom: 14px;
    margin-bottom: 16px;
}
/* 
.brdactive {
    border-style: double;
} */

/* .circle_wth i {
    font-size: 10px;
    position: relative;
    bottom: 5px;
} */
.about_our_rep h4 {
    font-size: 15px;
    font-weight: bold;
    color: #131626;
}

.top_non {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    border: 1px solid #d9d9d9   ;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.heading_dives_sed span {
    font-size: 12px;
}

.device_details_sec {
    background: #F7F7F7;
    border-radius: 0px 0px 10px 10px;
}

.wrt_icnm {
    background: #efefef;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    text-align: center;
    color: #505050;
    line-height: 32px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

label.rfg input {
    position: absolute;
    opacity: 0;
}

.wrt_icnm span {
    font-size: 12px;
    position: relative;
}

label.rfg {
    width: 100%;
}

.modify_devm {
    background-color: #707070;
    padding: 3px 8px;
    border-radius: 4px;
    color: #fff;
    font-weight: 300;
    margin-left: 5px;
    font-size: 10px !important;
}

.about_our_rep {
    margin-left: 10px;
}

.about_our_rep p {
    font-size: 14px;
    font-weight: 500;
}

.line_bordf:after {
    border-top: 1px solid #d9d9d9;
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 98%;
    z-index: -1;
    margin: auto;
}

.line_bordf {
    position: relative;
    width: 100% !important;
}

.current {
    font-weight: bold !important;
}
.brdactive {
    background: #1370F2;
    color: #fff;
}
.circle_wth i {
    position: relative;
    top: 0px;
}
.frm_check {
    padding: 8px;
    border: 1px solid #D4D7E6;
    border-radius: 8px;
}

.frm_check p {
    font-size: 13px;
}

.text_check textarea {
    border:1px solid #D4D7E6;
    height: 100px;
}

.text_check span {
    text-align: right;
    float: right;
    font-size: 11px;
}

.nct_repair_btn a {
    background: #000;
    color: #fff;
    padding: 10px 26px 10px 26px;
    font-size: 14px;
    line-height: 16px;
    border: 1px solid #000;
    border-radius: 8px;
    text-align: center;
}

.nct_repair_outline a {
    padding: 10px 26px 10px 26px;
    font-size: 16px;
    line-height: 16px;
    border-radius: 8px;
    color: #000;
    text-align: center;
}


/* .nct_repair_outline .btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    color: #000 !important; 
    border: none !important;
    background: transparent !important;

} */

.scholl_frtg {
    display: flex;
    justify-content: space-around;
}

.nct_repair_btn {
    text-align: end;
}

.back_btn_repair i {
    font-size: 34px;
    color: #000;
}

.back_btn_repair span {
    position: relative;
    bottom: 8px;
    color: #000;
}

.nct_repair_btn a:hover {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.choice_store_map {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.pblm_device img {
    width: 30px;
    object-fit: contain;
}

.store_xad {
    float: right;
    padding-top: 28px;
}

.store_xad i {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.store_details h4 {
    font-size: 18px;
    margin-bottom: 5px !important;
}
.locaion_numh i {
    margin-right: 6px;
    color: #222;
    font-size: 12px;
}
.next_avb p {
    color: #1370F2;
    font-weight: bold;
}
.store_details p {
    font-size: 14px;
    margin-bottom: 4px;
}

.next_avb span {
    color: #666A80;
    font-weight: normal;
}

.map_thy iframe {
    border-radius: 8px;
}
/* Custom styles for numbered markers */




/* End what moidel it is css */


/* owl cal */

.xcvcou {
    padding-top: 15px !important;
}

.dateh_hjead h4 {
    font-size: 18px;
    margin-bottom: 0px;
}

.owl-carousel {
    padding: 6px 0;
}

button.owl-next span {
    font-size: 34px;
    /* color: #000; */
    position: relative;
    bottom: 2px;
}

button.owl-prev span {
    font-size: 34px;
    color: #484848;
    position: relative;
    bottom: 2px;
}

.choose_th_date {
    border: 1px solid #d7d7d7;
    border-radius: 8px;
    padding: 5px 5px 0px 5px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

s .dateh_hjead h4 {
    font-weight: bold;
    font-size: 16px;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    z-index: 1;
    width: 40px;
    height: 40px;
    background-color: #ccc;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
}

.header_under_box h3 {
    font-size: 15px;
    font-weight: 500;
    padding-top: 2px;
}

.header_under_box p {
    font-size: 12px;
}

.tdy_active {
    background: #1370F2;
    border-radius: 4px;
    padding:4px 30px;
    color: #fff;
    font-weight: 400;
    font-size: 11px;
}

.tomo_active {
    background: #e1e1e1;
    border-radius: 4px;
    padding:4px 30px;
    color: #141414;
    font-weight: 400;
    font-size: 11px;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.owl-carousel .owl-nav {
    margin: 0;
}

.schbox {
    cursor: pointer;
}

.owl-theme .owl-nav .disabled,
button.disabled {
    opacity: 0.6;
}

.cvcvvv input[type="radio"]:checked {
    background-color: #76cf9f !important;
}


/* end owl cal */


/* content info css */

.contact_info_sec input {
    border: 1px solid #000;
    margin-bottom: 14px;
}

.mjkas input {
    margin-bottom: 0px !important;
}

span.tght {
    font-size: 12px;
}

.fhjkk label {
    font-size: 14px;
    color: #000;
}

.fhjkk a {
    text-decoration: underline;
}


/* .slider_srd .carousel-item {
    height: 400px;
} */


/* .heading_of_bann {
    text-align: right;
} */

.homeslidertext {
    top: 36%;
}

.Brandnewimg1_ig {
    text-align: center;
    background: #C6F7CB;
    border-radius: 10px 10px 0px 0px;
}

.card_best_seller {
    position: relative;
    cursor: pointer;
    padding: 0px 0px 14px 0px;
/*    margin: 8px;*/
/*    height: 100%;*/
    border-radius: 18px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.card_best_list h4 {
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    margin-bottom: 1px;
    height: 60px;
    text-transform: capitalize;
}

.pricing_sec h4 {
    color: #666A80;
    font-weight: 600;
    font-size: 16px;
}

.pricing_sec h2 {
    font-size: 18px;
    color: #131626;
    font-weight: 700;
}

.rating_section {
    display: flex;
    padding-top: 4px;
    margin-bottom: 4px;
}

.card_best_list p {
    font-size: 12px;
    color: #666A80;
    margin: 0;
    line-height: 22px;
    font-weight: normal;
}

.best_sell_img img {
    height: auto;
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.best_sell_img {
    margin-bottom: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 8px;
    padding: 6px;
}

.rating_section ul li {
    display: inline-block;
}

.rating_section ul li i {
    font-size: 12px;
    color: #FB7C0A;
}

.rating_section span {
    color: #666A80;
    font-size: 12px;
    padding-left: 7px;
    margin-top: -4px;
}

.pricing_sec h3 {
    font-size: 15px;
    font-weight: 600;
    color: #141414;
    margin: 0px 0px 5px;
    /* width: 170px; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pricing_sec del {
    color: #B4B4B4;
}

.pricing_sec span {
    color: #8d8d8d;
    font-size: 10px;
    font-weight: 400;
}

.pricing_sec p {
    font-size: 10px;
    color: #141414;
}


/* .Brandnewimg1_ig img {
    width: 50px !important;
    height: 50px;
} */
.popularplans .owl-next.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.popularplans .owl-prev.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.popularplans .owl-prev.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.popularplans .owl-next.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.popularplans .owl-prev {
    left: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.popularplans .owl-next {
    right: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}




.bestsellers .owl-next.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.bestsellers .owl-prev.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.bestsellers .owl-prev.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.bestsellers .owl-next.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.bestsellers .owl-prev {
    left: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.bestsellers .owl-next {
    right: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.ouy_sed {
    flex-shrink: 0;
}

.ourreviiew .owl-next.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.ourreviiew .owl-prev.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.ourreviiew .owl-prev.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.ourreviiew .owl-next.disabled span {
    font-size: 34px;
    color: rgb(26, 26, 26) !important;
    position: relative;
    bottom: 2px;
}

.ourreviiew .owl-prev {
    left: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.ourreviiew .owl-next {
    right: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}


/* .ourreviiew .owl-prev {
    left: -40px !important;
    border: 2px solid #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
}

.ourreviiew .owl-next {
    right: -40px !important;
    border: 2px solid #000 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
} */

.sked_secf .nav {
    background: #efefef;
    padding: 10px;
    border-radius: 10px;
}

.ap_logo img {
    width: 30px !important;
}

span.prefg {
    text-decoration: underline;
}

.ap_logo span {
    font-size: 11px;
    color: #666a80;
    font-weight: normal;
    line-height: 16px;
}

.ap_logo p {
    font-size: 10px;
    color: #141414;
}

.aplimg {
    padding: 5px 0px;
}

.apl span {
    font-size: 8px;
}

.apl span {
    font-weight: normal;
    font-size: 12px;
    line-height: 18px;
    color: #666A80;
}

.ap_logo {
    /* display: flex;
    width: 100%; */
    line-height: 10px;
}

.rating_section ul {
    position: relative;
    bottom: 4px;
}


/* .sale_btn {
    background: #00B44A;
    width: 100px;
    border-radius: 20px 0px 0px 20px;
    padding: 5px 14px;
} */

.sale_btn span {
    font-size: 10px;
    color: #fff;
}

.sale_btn {
    line-height: 12px;
    background: #00B44A;
    width: 60px;
    border-radius: 10px 0px 0px 10px;
    padding: 5px 8px;
    position: absolute;
    right: 8px;
    bottom: 55px;
    text-align: center;
}

.sale_btn span {
    font-size: 9px;
    color: #fff;
    line-height: 5px;
    font-weight: 500;
}

.psdf_card {
    padding: 10px 14px 10px 14px;
    width: 100%;
}


/* .Brandnewimg1_ig img {
    width: 50px !important;
    height: auto;
    object-fit: cover;
} */

.Brandnewimg1_ig span {
    color: #056A0F;
    font-size: 12px;
    font-weight: 600;
}

.prevb .carousel-control-prev-icon {
    filter: none;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 40px !important;
    position: relative;
    right: 20px;
    bottom: 5px;
}

.heading_sp h3 {
    color: #131626;
    font-size: 28px;
    font-weight: 700;
}

.cart_heading h3 {
    margin: 0px;
    font-size: 15px;
    font-weight: 500;
    line-height: 32px;
}

.carty_d {
    border-bottom: 1px solid #ddd;
    padding: 6px 16px
}

.fg_heading h4 {
    font-size: 14px;
    color: #000;
    margin-bottom: 0px;
    text-wrap: balance;
}

.cagty {
    padding-top: 0px;
    margin-bottom: 0px;
    padding-bottom: 12px;
}

.fg_heading {
    margin-left: 10px;
    padding-top: 5px;
}

.fg_img {
    flex-shrink: 0;
}

.fg_img img {
    width: 50px;
    height: 50px;
}

.show_al_btn h3 {
    margin: 0px;
    line-height: 25px;
}

.show_al_btn h3 a {
    font-size: 14px;
    font-weight: normal;
    color: #0078eb;
}

.caedrf .dropdown-menu.show {
    padding: 0;
    width: 350px;
    margin-left: -200px;
    border: none;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.dropdown-toggle::after {
    display: none;
}

.nexvb .carousel-control-next-icon {
    filter: none;
    border: 2px solid #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    left: 20px;
    bottom: 5px;
}

.sef_text h4 {
    font-weight: 700;
    font-size: 17px;
    color: #383C4E;
}

.sef_text p {
    line-height: 22px;
    color: #383C4E;
    font-size: 14px;
    margin: 0;
}

.shp_full_sec {
    padding: 16px;
    /* border: 1px solid #036CFF; */
    border-radius: 8px;
}

.shopinternet_btn a {
    padding: 12px 40px;
    color: #fff;
    background: #1370F2;
    border-radius: 5px;
    border: none;
    font-weight: 500;
    font-size: 15px;
}

.shopinternet_btn a:hover {
    color: #fff;
    background-color: #1050a9;
}

.signup_btn a {
    font-size: 15px;
    padding: 12px 50px;
    color: #fff;
    border-radius: 5px;
    background-color: #1370F2;
    font-weight: 500;
}

.signup_btn a:hover {
    background-color: #1050a9;
    color: #fff;
    border-radius: 5px;
    /* border: 2px solid #1370F2; */
}

.Accessories_heaidng h3 {
    color: #079F16;
    font-size: 40px;
    font-weight: 800;
}

.Accessories_heaidng h5 {
    font-size: 28px;
    color: #383C4E;
    font-weight: 500;
}

.sell_btn_dev a:hover {
    background-color: #1050a9;
}

.sell_btn_dev a {
    font-size: 15px;
    background: #000;
    padding: 12px 50px;
    color: #fff;
    border-radius: 5px;
    background-color: #1370F2;
    font-weight: 500;
}

.pe_he p {
    color: #383C4E;
    line-height: 24px;
    font-weight: normal;
}

.pe_he h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2A2D3D;
}


/* .accessories_bg_sec:hover {
    transform: scale(1.1);
} */

.accessories_bg_sec {
    /* background-image: url(../../assets/img/as1.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 470px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    width: 106%;
    margin-left: -15px;
    /* transition: transform .5s; */
    /* margin-left: 60px;
    margin-right: 48px; */
}

.shop_kl a {
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 60px;
    margin-top: 10px;
    border: 1px solid #1370F2;
    color: #1370F2;
}

.write_review_btn a {
    background: #0033F4;
    color: #fff;
    font-size: 14px;
    padding: 6px 25px;
}

.write_review_btn a:hover {
    color: #ddd;
    background: #0033F4;
}

.shop_kl a:hover {
    background: #fff;
    color: #1370F2;
    border: 1px solid #1370F2;
}

.seart {
    color: #383C4E !important;
    font-size: 16px !important;
}

.let_sell_img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rtv_textc {
    text-align: left;
}

.rtv_textc h5 {
    font-size: 36px;
    font-weight: 700;
    color: #131626;
}

.rtv_textc p {
    font-size: 14px;
    color: #383C4E;
}

.banner_serd {
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
}

.fastinternet {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 420px;
    border-radius: 20px;
}

.ratiing_secf ul {
    list-style: none;
}

.ratiing_secf ul li {
    display: inline-block;
}

.ratiing_secf ul li i {
    color: #FBBC05;
}

.review_img img {
    width: 50px !important;
    height: 50px;
}

.review_heading_tht h4 {
    font-weight: 600;
    font-size: 16px;
    color: #141414;
    margin: 0px;
}

.review_img {
    margin-bottom: 14px;
    display: flex;
    justify-content: center;
}

.review_heading_tht ul {
    list-style: none;
}

.review_heading_tht ul li {
    display: inline-block;
    color: #FBBC05;
}

.review_heading_tht p {
    font-size: 14px;
    line-height: 24px;
    color: #3d3d40;
    text-align: left;
    margin-top: 10px;
    font-weight: 300;
}

.sdb_oper {
    background: #F9F9F9;
    padding: 60px;
    border-radius: 10px;
}

.review_heading_tht span {
    color: #000;
    font-size: 12px;
}

.read_more_btn a {
    color: #383C4E;
    font-weight: 600;
    font-size: 14px;
}

.read_more_btn a:hover {
    color: #1370F2;
}

.namh_ert {
    padding-left: 12px;
}

.ouy_sed img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.card_sys_review {
    cursor: pointer;
    padding: 20px;
    background: #fff;
    margin: 5px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.review_img_footer img {
    width: 30px !important;
    height: 30px;
    margin-left: auto;
    margin-right: auto;
}

.sked_secf .nav-link {
    color: #000;
    font-weight: 500;
}

.tp-footer-area {
    background-color: #131626;
    padding: 0px;
}

.tp-footer-social p {
    text-align: end;
    font-size: 12px;
    margin-bottom: 13px !important;
    color: #cbcbcb !important;
}

.tp-footer-social {
    text-align: right;
}

.sked_secf .nav-link.active {
    background: #fff !important;
    color: #000;
}

span.categ_heading {
    font-size: 12px;
}

.faq_list_tagh .accordion-button.collapsed {
    background-color: #fff;
}

.aasll {
    text-align: left;
}

.catr {
    display: flex;
    justify-content: space-between;
}

.faq_list_tagh .accordion-button:not(.collapsed)::after {
    display: none;
}

.faq_list_tagh .accordion-button::after {
    display: none;
}

.faq_list_tagh .accordion-item {
    border: none !important;
}

.faq_list_tagh .accordion-button {
    background: #fff !important;
    color: #000;
    font-weight: 500;
    box-shadow: none !important;
    border-bottom: 1px solid #a9a9a9;
}

.faq_list_tagh .accordion-button:focus {
    box-shadow: none !important;
}

.left_cam_img img {
    width: 100%;
    object-fit: cover;
    height: 320px;
}

.left_cam_img {
    width: 50%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
}

.caption_sect {
    position: absolute;
    margin-right: 40px;
}

.footer_banner_section {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.rgtha {
    justify-content: flex-start;
}

.caption_sect h3 {
    font-size: 28px;
    color: #000;
    line-height: 36px;
    padding-top: 18px;
}

.sdrdf {
    text-align: right;
}

.caption_sect h2 {
    font-size: 28px;
    color: #000;
}

.caption_sect h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
    background-size: 70%, 100% !important;
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 70%, 100% !important;
}

.tp-footer-widget-content h4 {
    font-size: 18px;
}

.tp-footer-widget-content p {
    font-size: 13px;
    margin-bottom: 2px;
    color: #D4D7E6;
}

ul.yth li {
    margin-bottom: 8px !important;
}

ul.yth span {
    margin-left: 8px;
}

.socaiL-headf {
    position: relative;
}

.socaiL-headf:after {
    border-top: 3px solid #1370F2;
    content: "";
    margin: 0 auto;
    position: absolute;
    top: 32px;
    bottom: 0;
    width: 30px;
    z-index: 9;
}

.sell_other_divice_btn a {
    background-color: #fff;
    color: #222;
    border-radius: 10px;
    border: 1px solid #000;
    padding: 8px 16px;
}

.sell_other_divice_btn a:hover {
    background-color: #000;
    color: #fff;
}

.choose_img img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.choose_img {
    margin-bottom: 10px;
}


/* dropdown css */

.setting-description {
    background-color: #1c2028;
    border-radius: 15px 15px 0px 0px;
    min-width: 231.5px;
    width: 100% !important;
    max-width: 483px;
}

.setting-description-text {
    padding-top: 18px !important;
    color: #81828b;
}


/* the code below is for the dropdown menu */
.chnage_btn_yyt a {
    font-weight: bold;
    color: #222;
    font-size: 13px;
    text-decoration: underline;
}
.wrapper-dropdown {
    position: relative;
    display: inline-block;
    padding: 10px 0px 10px 0px;
    border-radius: 10px;
    background: #ffffff;
    text-align: left;
    border: 1px solid #1370F2;
    color: #1c2028;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-bottom: 0px;
}

.scrollable-menu {
    height: auto;
    max-height: 200px;
    overflow-x: hidden;
}

.arrow {
    margin-left: 10px;
    margin-right: 10px;
    float: right;
    rotate: 180deg;
}

.selected-display {
    margin-left: 20px;
}

.wrapper-dropdown svg {
    transition: all 0.3s;
}

.wrapper-dropdown::before {
    position: absolute;
    top: 50%;
    right: 16px;
    margin-top: -2px;
    border-width: 6px 6px 0 6px;
    border-style: solid;
    border-color: #fff transparent;
}

.rotated {
    transform: rotate(-180deg);
}

.wrapper-dropdown .dropdown {
    transition: 0.3s;
    position: absolute;
    top: 120%;
    right: 0;
    left: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    z-index: 99;
    border-radius: 15px;
    box-shadow: inherit;
    background: inherit;
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
    visibility: hidden;
}

.wrapper-dropdown .dropdown li {
    padding: 0px 16px 5px;
    line-height: 45px;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f1;
}

.wrapper-dropdown .dropdown li:last-child {
    border-bottom: none;
}

.wrapper-dropdown .dropdown {
    padding: 0 !important;
}

.wrapper-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
}

.wthimg img {
    width: 28px;
    height: 28px;
    object-fit: cover;
    margin-right: 16px;
}

.minhig {
    height: 240px;
    overflow: auto;
}

span#destination img {
    width: 22px;
    height: 22px;
    margin-right: 10px;
}

.repair_secd {
    margin: 0px 18px;
}

.bromp {
    display: flex;
    /* justify-content: center; */
    min-height: 128px;
}

.imgh_brok {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.fril_input {
    position: absolute;
}
.imgh_brok p {
    line-height: 20px;
    font-size: 13px;
    padding-top: 6px;
    font-weight: normal;
    color: #2e2e2e;
}

.imgh_brok img {
    width: auto;
    height: auto;
    object-fit: cover;
}

.sopactive {
    font-weight: bold !important;
}

.opklqwer {
    cursor: pointer;
}

.zip_file_input input {
    border: 1px solid #222;
    border-radius: 10px;
    padding: 0px 36px;
}

.zip_file_input {
    margin-bottom: 16px;
}

.zip_file_input span {
    position: absolute;
    margin-left: 12px;
    margin-top: 12px;
}

.zip_file_input i {
    font-size: 20px;
    color: #222;
}

.item_section {
    /* display: inline-block; */
    min-width: 105px;
    margin-right: 10px;
}

.xcvcou {
    max-width: 100%;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    white-space: nowrap;
}

.radio-toolbar input[type="radio"] {
    display: none;
}

.pargt_text {
    padding-bottom: 10px;
}
.radio-toolbar {
    cursor: pointer;
}
.radio-toolbar label {
    background-color: #fff;
    padding: 8px 14px;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #666A80;
    border-radius: 6px;
    text-align: center;
}

.radio-toolbar input[type="radio"]:checked+label {
    border: 1px solid #666A80;
}

.radio-toolbar {
    margin-bottom: 12px;
}

.tp_seel_heading span {
    font-weight: normal;
}

.divice-t {
    border-radius: 10px 10px 10px 10px;
}

.btn_call_us {
    border: 1px solid #222;
    border-radius: 8px;
    padding: 16px 18px;
    margin-bottom: 10px;
}

.btn_call_us p {
    margin: 0;
    color: #000;
    line-height: 20px;
}

.btn_call_us i {
    font-size: 26px;
    color: #000;
}

.btn_call_us span {
    font-size: 18px;
    font-weight: bold;
    margin-left: 10px;
}

span.calkl {
    padding-left: 29px;
    font-weight: normal;
    font-size: 18px;
}

.phtg i {
    position: relative;
    top: 12px;
}

.phtg {
    padding: 5px 18px;
}

.about_list_fre {
    display: flex;
    margin-bottom: 14px;
}

.free_die_text h4 {
    font-weight: 500;
    font-size: 14px;
    color: #000;
    padding-bottom: 3px;
}


/* .free_die_im{
    flex-basis: 100px;
} */

.free_die_im {
    flex-shrink: 0 !important;
    flex-basis: 50px;
    background: #f1f1f1;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding-top: 13px;
    text-align: center;
}

.free_die_im i {
    font-size: 22px;
    color: #000;
}

.free_die_text h4 {
    font-size: 16px;
    color: #000;
    margin: 0;
}

.free_die_text {
    padding-left: 12px;
}

.free_die_text p {
    font-size: 15px;
    color: #000;
}

.userfg {
    flex-shrink: 0 !important;
    flex-basis: 24px;
}

nav.tp-main-menu-content ul li:hover::after {
    visibility: visible;
    opacity: 1;
    height: 30px;
}

nav.tp-main-menu-content ul li::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0px;
    background-color: #1370F2;
    border-radius: 5px;
    transition-duration: .4s;
}

.heading_sellers p {
    color: #383C4E;
    font-size: 15px;
}

.caret_heading h3 a:hover {
    color: #1370F2;
}

.rthe h3 a:hover {
    color: #1370F2;
}

.tp-footer-widget-content ul li a:hover {
    color: #1370F2;
}

.heading_sellers h3 {
    color: #131626;
    font-size: 28px;
    font-weight: 700;
}

.menugx a:hover {
    color: #003fd9;
}

nav.tp-main-menu-content ul li:hover:after {
    height: 3px;
}

.owl-item .active .nav-link {
    background-color: #000 !important;
}

.main-menu.menu-style-1>nav>ul>li>a:hover {
    color: #1370F2;
}

#content {
    background: #fff;
    position: absolute;
    top: 50%;
    margin-left: -120px;
    z-index: 1;
    border-radius: 8px;
    border: 1px solid #000;
    padding: 10px;
    padding-right: 0px;
}

.login_btn_jw a {
    padding: 10px 30px;
    background: #000;
    margin-right: 10px;
    border-radius: 10px;
    color: #fff;
}

.about_rep_section h3 {
    font-size: 18px;
    color: #000;
}

.tp_seel_heading h3 {
    font-size: 28px;
    color: #2A2D3D;
    font-weight: 700;
}

.view_all_btn a:hover {
    background-color: #1050a9;
}

.view_all_btn a {
    padding: 12px 40px;
    border-radius: 5px;
    color: #fff;
    background-color: #1370F2;
    font-size: 15px;
    font-weight: 500;
}

.ttb .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #fff;
    color: #0222C8;
    border-radius: 0px;
    border-bottom: 2px solid #0222C8;
}

.ttb .nav-pills .nav-link {
    color: #000000;
    font-size: 16px;
}

.menut li a {
    font-size: 14px !important;
    color: #282828 !important;
}

.menugx p {
    margin-bottom: 8px;
}

.rescv {
    width: 210px !important;
    right: 0;
}

.megamenu {
    background-color: white;
    position: absolute;
    width: 320px;
    padding: 20px 14px;
    border: 1px solid #f5f5f5;
    border-radius: 0px;
    display: none;
    right: 220px;
    border-radius: 10px;
}

.cvwer:hover .megamenu {
    display: block;
}

ul.ujas a {
    padding: 6px 20px;
    border-radius: 50px;
    border: 1px solid #036CFF;
}

.oper_user a {
    color: #000;
    font-size: 14px;
}

.oper_user {
    background: #fff;
}


/* 
.overlayt:after {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    content: '0';
    background-color: #00000063;
    position: absolute;
    z-index: 999999;
} */

.categoryblock:before {
    content: '\f03a';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    min-width: 20px;
    display: inline-block;
    text-align: center;
}

.categoryblock.active:before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    min-width: 20px;
    display: inline-block;
    text-align: center;
}

.oper_user {
    padding: 14px;
    border-radius: 10px;
}

.tp-category-menu nav ul {
    border-radius: 10px;
}

.menugx h6 {
    font-size: 14px;
    font-weight: 500;
}

.buy_sell_section {
    margin-top: 34px;
}

.tab-contentx {
    display: none;
}

.tab-contentx.active {
    display: block;
    background-color: #000;
}

.tabs-contentx div:not(:first-child) {
    display: none;
}

.tabs-navmenu .activex {
    background: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
}

.tabs-navmenu li {
    list-style: none;
}

.tabs-navmenu {
    background: #efefef;
    padding: 5px 12px;
    border-radius: 10px;
}

.tabs-navmenu li {
    text-align: center;
    padding: 10px;
}

.tabs-navmenu li a {
    /* background: #fff !important; */
    color: #000;
    font-size: 15px;
    font-weight: 500;
}

.headg {
    background: #fff !important;
    color: #000;
    font-weight: 500;
    box-shadow: none !important;
    border-bottom: 1px solid #a9a9a9;
    font-size: 18px;
    padding-bottom: 14px;
    padding-top: 20px;
}

.sccdf li {
    list-style: none;
}

.sccdf h3 {
    background: #fff !important;
    color: #000;
    font-weight: 500;
    box-shadow: none !important;
    border-bottom: 1px solid #a9a9a9;
    padding-bottom: 12px;
    font-size: 16px;
    padding-top: 14px;
    cursor: pointer;
}

.internet {
    width: 210px !important;
}

.header_top_bar {
    background-color: #011B40;
}

.header_top_bar ul li a {
    color: #9fa1ad;
    margin-right: 24px;
    font-size: 12px;
    font-weight: 500;
}

.header_top_bar ul {
    list-style: none;
}

.seft_img img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.card_best_list h4 a:hover {
    color: #0078eb;
}


/* buy css */

.headinghj h3 {
    color: #131626;
    font-weight: 700;
    font-size: 40px;
}

.headinghj p {
    color: #383C4E;
    font-weight: 500;
}

section.bgh_space {
    padding: 40px 8px;
    background: #131626;
    color: #fff;
}

.spect_heading h3 {
    font-size: 40px;
    margin: 0;
    text-align: center;
    text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #dbdbdb;
}

.spect_heading img {
    margin-left: 10px;
    margin-right: 10px;
}

section.prt_deal_section {
    padding-top: 64px;
    padding: 50px;
    position: relative;
    background-image: linear-gradient(#1370F2, #7CB1F7);
}

.pgonex_card:hover {
    display: block;
    transition: all .3s;
}

.pgonex_card:hover .phonex_img {
    width: 100% !important;
    text-align: center;
}

.pgonex_card:hover .phonex_header {
    width: 100% !important;
}

.end_aheading {
    font-size: 15px;
    color: #fff;
    margin-right: 0px;
}

.enhj {
    margin-right: 14px;
    padding-top: 10px;
}

.brgn {
    padding: 10px 23px;
    background: #FB7C0A;
    border-radius: 50px;
}

.deal_day_heading h3 {
    font-size: 30px;
    color: #fff;
}

.deal_day_heading {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.phonex_img {
    width: 50%;
    transition: all .5s;
}

.phonex_img img {
    width: auto;
    object-fit: contain;
    height: auto;
}

.phonex_header p {
    margin: 0px;
}

.add_cart_btn {
    display: none;
}

.pgonex_card:hover .add_cart_btn {
    display: block !important;
}

.add_cart_btn a {
    background-color: #0025DD;
    padding: 8px 50px;
    border-radius: 6px;
    color: #fff;
    position: relative;
    bottom: 10px;
}

.avb_headf {
    padding-top: 4px;
}

.progress.progress_oipkl {
    height: 8px;
}

.phonex_header h3 {
    font-size: 20px;
    color: #131626;
}

span.fiftg {
    color: #F84A4A;
    font-weight: bold;
    font-size: 14px;
    margin-left: 2px;
}

.phonex_header h4 a:hover {
    color: #0078eb;
}

.pgonex_card {
    background: #fff;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    flex-wrap: wrap;
    transition: transform .2s;
}

.phonex_header h4 {
    font-size: 18px;
    margin-bottom: 3px;
    color: #131626;
}

.phonex_header {
    width: 50%;
    transition: all .5s;
}

.bordefg_by {
    width: 600px;
    height: 1px;
    background: #fff;
    position: absolute;
    margin-top: 23px;
    left: 28%;
    /* right: 0; */
}

.nest_ip {
    flex-shrink: 0;
}

.wbf_jio h2 {
    font-size: 34px;
    font-weight: bold;
    color: #131626;
    margin-bottom: 16px;
}

.wbf_jio p {
    font-size: 15px;
    color: #383C4E;
}

.card_jio_wfb {
    margin-bottom: 12px;
}

.bghqwe {
    background: #F9F9F9;
}

.bgh_sett {
    background: #F9F9F9;
    padding: 30px;
    border-radius: 10px;
}

.wht_secty {
    background: #F4F4F4;
    border-radius: 10px;
    padding: 30px;
}

.brt_heading p {
    color: #383C4E;
    font-size: 15px;
    margin: 0px;
    font-weight: normal;
}

.what_sell_opkl h3 {
    margin-bottom: 48px;
    font-size: 26px;
    color: #131626;
}

.sdf_img {
    position: relative;
    right: 18px;
}

.nest_ip i {
    color: #079F16;
    margin-right: 10px;
    font-size: 24px;
}

.sdf_img img {
    width: 225px;
    height: 225px;
    object-fit: cover;
    transition: transform .2s;
}

.sdf_img img:hover {
    transform: scale(1.1);
}

.img_brk img:hover {
    transform: scale(1.1);
}

.img_brk img {
    width: 290px;
    object-fit: cover;
    transition: transform .2s;
    border-radius: 0px 10px 10px 10px;
}

.what_sell_opkl a:hover {
    background-color: #0c4aa3 !important;
}

.what_sell_opkl a {
    background: #448CF2;
    padding: 10px 35px;
    color: #fff;
    border-radius: 50px;
}

.wht_se_er {
    background: #F4F4F4;
    border-radius: 10px;
    padding: 0px;
    align-items: center;
}


/* product list css */

.want_sell_open {
    background-color: #91F1FA;
    padding: 16px;
}

.want_sell_open h5 {
    font-size: 14px;
    font-weight: 500;
    margin: 0px;
}

.want_sell_open a {
    font-size: 14px;
    font-weight: 600;
    color: #011B40;
    text-decoration: underline;
}

.left_bradcamp ul {
    list-style: none;
}

.left_bradcamp ul li a {
    color: #131626;
    font-size: 13px;
    font-weight: 500;
}

.left_bradcamp ul li a i {
    font-size: 10px;
}

.active_brad {
    color: #131626;
    font-size: 13px;
    font-weight: 600;
}

.active_brad i {
    font-size: 10px;
    color: #131626;
}

.brad_chip a {
    padding: 8px 14px;
    border: 1px solid #666A80;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 13px;
}

.category_s span {
    margin-right: 12px;
}

.activeb a {
    background: #1370F2;
    color: #fff;
    border: 1px solid #1370F2
}

.filter_vt {
    background-color: #1370F2;
    padding: 12px;
    border-radius: 8px 8px 0px 0px;
}

.filter_vt h4 {
    font-size: 18px;
    margin: 0px;
}

.chip_ok span {
    color: #919191;
}

.chip_ok:hover {
    background-color: #f1f4ff;
}

.price_sec {
    padding: 18px;
}

.dfgrtqe {
    padding: 5px !important;
}

.min_priv {
    position: relative;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin-right: 10px;
}

.min_priv {
    margin-right: 10px;
}

.doller_inm {
    position: absolute;
    margin-right: 8px;
    color: #838383;
    font-weight: 600;
}

.min_priv input {
    border-radius: 8px;
    padding: 0px 10px;
}

.min_priv input::placeholder {
    font-size: 12px;
}

.product_sec_t {
    background: #F9F9F9;
}

.price_sec h4 {
    font-size: 16px;
    color: #383C4E;
    margin-bottom: 18px;
}

.carrier_sec .form-check {
    margin-bottom: 5px;
    line-height: 24px;
}

.carrier_sec .form-check {}

.carrier_sec .accordion-button {
    color: #383C4E;
    font-weight: 600;
    background: #fff;
    border: none !important;
    font-size: 15px !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

.carrier_sec .accordion-body {
    padding: 10px 16px;
}

.carrier_sec .accordion-item {
    border: none !important;
}

.list_vg {
    padding: 4px 7px;
    border: 1px solid #1370F2;
    border-radius: 5px;
    color: #1370F2;
    cursor: pointer;
}

.view_cat {
    margin-right: 14px;
}

.view_cat span {
    margin-right: 14px;
}

.sort_bn span {
    margin-right: 0px;
    width: 130px;
}

.sort_bn select {
    font-size: 13px;
}

.list_vr {
    padding: 4px 7px;
    border: 1px solid #adadad;
    border-radius: 5px;
    color: #444444;
    cursor: pointer;
}

.list_vr.active {
    border-color: #0078eb;
    color: #0078eb;
}

.count_product_w {
    background: #EDEDED;
    padding: 5px 18px;
}

.count_product_w p {
    margin: 0px;
}

.count_product_w p {
    margin: 0px;
    font-weight: 500;
    color: #000;
    font-size: 14px;
}

.cardf_categ {
    border-radius: 6px;
    margin-top: 28px;
    padding: 16px;
    background-color: #fff;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.producty {
    margin: 0px !important;
    /* margin-bottom: 16px !important; */
}

.listbox .notifybtn {
    position: absolute;
    left: 45%;
}

.catego_list select {
    font-weight: 600;
    font-size: 13px;
    padding: 10px 14px;
}


/* list view css start*/

.list_best_seller {
    cursor: pointer;
    padding: 0px 0px 0px 0px;
    margin: 8px;
    border-radius: 18px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.pbborder {
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 13px !important;
}

.pricing_sec_list h4 {
    color: #666A80;
    font-weight: 600;
    font-size: 16px;
}

.pricing_sec_list h2 {
    font-size: 24px;
    color: #1370F2;
    font-weight: 700;
}

.pricing_sec_list h3 {
    font-size: 14px;
    color: #F84A4A;
    font-weight: normal;
}

.pricing_sec_list span {
    font-weight: 500;
    font-size: 12px;
    color: #666A80;
}

.psdf_card_list {
    padding: 18px 14px 10px 14px;
}

.ell_mg_list {
    margin-bottom: 0px;
    border-radius: 8px;
    padding: 6px;
}

.ell_mg_list img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

.gridview {
    display: flex;
    flex-wrap: wrap;
}

.productList {
    width: 33.33%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.gridview.listbox .productList {
    width: 100%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.listbox .best_sell_img {
    width: 100%;
}

.listbox .flx_op {
    display: flex;
    align-items: center;
}

.listbox .pricing_sec del {
    color: #F84A4A !important;
    font-size: 12px !important;
    font-weight: 500;
}

.listbox .pricing_sec h2 {
    color: #1370F2 !important;
    font-size: 22px !important;
}

.listbox .card_best_seller {
    padding: 0px 0px 0px !important;
}

.listbox .psdf_card {
    padding: 20px 14px 10px 0px !important;
}

.listbox .best_sell_img {
    margin-bottom: 0px !important;
}

.listbox .borderf {
    border-bottom: 1px solid #ededed;
    margin-bottom: 10px;
    padding-bottom: 16px;
}

.listbox .da {
/*    display: block !important;*/
    float: right;
    position: absolute;
    right: 5%;
    margin-top: 0px;
}
.listbox .add_btn_item{
    width: auto !important;
    font-size: 11px !important;
    margin-top: 51px !important;
}
.listbox .db {
    display: block !important;
    width: 16%;
    position: absolute;
    left: 50%;
}

.listbox .facv_sect {
    display: flex;
    justify-content: space-between;
}

.header_jkqw h4 {
    font-size: 16px;
    font-weight: 700;
    color: #101010;
    margin-bottom: 1px;
}

.header_jkqw h4 a:hover {
    color: #1370F2;
}

.aplimg img {
    width: 40px;
    height: auto;
    object-fit: contain;
}


/* radio button */

.brad_chip input[type="radio"] {
    opacity: 0.011;
    z-index: 100;
}

.brad_chip input[type="radio"]:checked+label {
    background: #0078eb;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #0078eb;
}


/* .brad_chip.btn:hover {
    background: #0078eb;
    border-radius: 4px;
    color: #fff;
    border: 1px solid #0078eb;
} */

.brad_chip label:hover {
    background: #ffffff;
    border-color: rgb(53, 101, 224);
    color: rgb(53, 101, 224);
}

.brad_chip label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 10px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(4, 4, 4);
    border: 1px solid rgb(224, 227, 238);
    border-radius: .4rem;
    cursor: pointer;
/*    position: relative;*/
    transition: .25s;
}

.button input[type="radio"] {
    z-index: 100;
}

.button input[type="radio"]:checked+label {
    background: #20b8be;
    border-radius: 4px;
}

.button label {
    cursor: pointer;
    z-index: 90;
    line-height: 1.8em;
}

.chip_ok {
    border: 1px solid #D4D7E6;
    margin-top: 16px;
    margin-right: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.chip_ok label {
    float: left;
    line-height: 2.8em;
    width: 8em;
    height: 2.8em;
    font-size: 12px;
}

.chip_ok label span {
    text-align: center;
    padding: 0px 0;
    display: block;
}

.dowenl_chip {
    margin-top: 10px;
}

.chip_ok label input {
    position: absolute;
    display: none;
    color: #fff !important;
}

.chip_ok label input+span {
    color: #999999;
    cursor: pointer;
}

.chip_ok input:checked+span {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.8);
}

.actionvx input:checked+span {
    background-color: #1370F2;
}


/* 
 */

.multiselect {
    width: 100%;
    position: relative;
}

.selectBox {
    position: relative;
}

.selectBox select {
    width: 100%;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
}

.multiselect span {
    margin-left: 10px;
}

.overSelect {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

#checkboxes {
    display: none;
    border: 1px #dadada solid;
    position: absolute;
    background: #fff;
    padding: 12px;
    width: 100%;
    z-index: 10000;
}

#checkboxes label {
    display: block;
}

#checkboxes1 {
    display: none;
    border: 1px #dadada solid;
    position: absolute;
    background: #fff;
    padding: 12px;
    width: 100%;
    z-index: 10000;
}

#checkboxes1 label {
    display: block;
}

#checkboxes2 {
    display: none;
    border: 1px #DADADA solid;
    position: absolute;
    background: #fff;
    padding: 12px;
    width: 100%;
    z-index: 10000;
}

#checkboxes2 label {
    display: block;
}

.productd {
    flex-wrap: wrap;
}

.catgq {
    flex-wrap: wrap;
}

section.pd_gth {
    padding: 16px;
}

span.phoneactive {
    background: #1370F2;
    padding: 6px 20px;
    border-radius: 6px;
    color: #fff;
    margin-left: 14px;
}


/* product details */

div#productDetailsNavContent {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.phone_rty {}

.price_headf {
    text-align: end;
}

.tp-product-details-reviews span {
    color: #666A80;
    font-size: 12px;
}

.detailyty {
    display: flex;
}

.mnjkwe {
    margin-left: 7px;
    margin-right: 7px;
}

.appl_heading span {
    font-weight: 500;
    font-size: 13px;
    line-height: 28px;
    color: #000000;
}

.add_cart_block a {
    color: #fff;
    border-radius: 5px;
    padding-bottom: .75rem;
    padding-top: .75rem;
    text-decoration-line: none;
    padding-left: 1rem;
    padding-right: 1rem;
    justify-content: center;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    background-color: black;
}

.add_cart_block {
    float: right;
    margin-top: 16px;
}

.prifc_secf {
    margin-top: 4px;
    border-bottom: 1px solid #ebebeb;
    padding-bottom: 20px;
}

.nest_hreading h3 {
    margin-top: 14px;
    display: block;
    width: 100%;
    padding: 0;
    font-size: 12px;
    font-weight: 500;
    color: rgb(4, 4, 4);
    margin-bottom: 15px;
}

.add_cart_block i {
    margin-left: 5px;
}

.best_btn_find .brad_chip label {
    width: 100%;
}

.best_btn_find .brad_chip input[type="radio"]:checked+label {
    background: #ffffff;
    border-color: rgb(53, 101, 224);
    color: rgb(53, 101, 224);
}

.best_btn_find .brad_chip label:hover {
    background: #ffffff;
    border-color: rgb(53, 101, 224);
    color: rgb(53, 101, 224);
}

.best_btn_find {
    margin-top: -39px;
    margin-right: 6px;
}

.add_cart_block a:hover {
    background-color: #323339;
}

.charge_ct {
    background-color: #ededed;
    border-radius: 50px;
    padding: 6px 20px;
    text-align: center;
}

.charge_ct p {
    color: #323232;
    margin: 0px;
    font-weight: 500;
    font-size: 12px;
}

.charge_ct i {
    font-size: 12px;
    color: #4c4c4c;
    margin-right: 4px;
}

.col_sedf select {
    font-size: 13px;
    font-weight: 500;
    color: #787878;
    border: 1px solid #838383;
}

/*.ddf_gt {
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
}*/

span.out_stk_text {
    font-size: 11px;
    color: #D90000;
    font-weight: 600;
}

.enil_op input {
    width: 100%;
    padding: 0 10px;
    height: 35px;
    border-radius: 10px;
}

.enil_op {
    flex-basis: 62%;
}

.notify_sbtn {
    margin-top: 3px;
}

.notify_sbtn a {
    padding: 8px 10px;
    background: #1370F2;
    color: #fff;
    border-radius: 10px;
    font-size: 11px;
}

.enil_op input::placeholder {
    font-size: 13px;
}

.frt_qw {
    box-shadow: none !important;
    border: 1px solid #D4D7E6;
}

.add_btn_item {
    width: 100%;
    background: #ffffff;
    border-radius: 5px;
    text-align: center;
    padding: 3px 10px;
    color: #1370F2;
    border: 1px solid #1370F2;
    margin-top: 4px;
    font-weight: 500;
    font-size: 13px;
}

.add_btn_item:hover {
    background-color: #1370F2;
    border: 1px solid #1370F2;
    color: #fff;
}

.ada_oprt {
    display: flex;
    justify-content: space-between;
}

.clv_bt {
    background: #fff;
    padding: 24px;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
}

.cl_card {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    flex-basis: 25%;
    justify-content: space-between;
}

.plus_ht {
    width: 35px;
    height: 35px;
    background: #F4F4F4;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-left: 5px;
    margin-right: 5px;
    flex-shrink: 0;
}

.rg_carty h3 {
    font-size: 14px;
    text-align: center;
    color: #383C4E;
}

.cart_btn_y {
    width: 100%;
    background: #1370F2;
    border-radius: 5px;
    text-align: center;
    padding: 3px 8px;
    color: #ffffff;
    border: 1px solid #1370F2;
    margin-top: 4px;
    font-weight: 500;
    font-size: 13px;
}

.rg_carty p {
    font-size: 10px;
    color: #666A80;
    text-align: center;
    line-height: 16px;
    margin-top: 12px;
}

.low_hgt p {
    color: #666A80;
    font-size: 12px;
    text-align: center;
}

.pret_tt {
    text-align: center;
}

.pret_tt a {
    text-decoration: underline;
    font-size: 13px;
}

.pret_oper {
    position: relative;
    right: 20px;
}

.customersreview h2 {
    font-size: 20px;
    color: #2A2D3D;
    font-weight: bold;
    margin-top: 12px;
}

.rating_prod h3 {
    font-weight: bold;
    font-size: 36px;
    margin-left: 10px;
    color: #131626;
}

.rating_prod sub {
    font-size: 12px;
    font-weight: 500;
}

.verf_oper p {
    color: #2A2D3D;
    font-size: 13px;
    font-weight: 500;
}

.verf_oper i {
    margin-right: 8px;
}

.filter_gg h4 {
    font-weight: bold;
    font-size: 16px;
    color: #2A2D3D;
    margin-bottom: 16px;
}

.rating_prod ul li i {
    font-size: 24px;
    color: #FB7C0A;
}

.rating_prod ul li {
    margin-right: 4px;
}

.rating_prod ul {
    display: flex;
    list-style: none;
}

.rating_prod {
    display: flex;
    align-items: center;
}

.lise_cadf {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.filter_gg {
    margin-top: 28px;
}

.tgtad {
    flex-shrink: 0;
    margin-right: 10px;
}

.pret_heading {
    margin-left: 10px;
}

.pref_gtgt {
    width: 100%;
}

.pref_gtgt .progress {
    height: 5px;
}

.tgtad i {
    color: #FB7C0A;
    font-size: 12px;
}

.tgtad span {
    margin-left: 5px;
    font-size: 14px;
    color: #000;
    font-weight: bold;
}

.pret_heading span {
    color: #666A80;
    font-size: 13px;
    font-weight: 600;
}

.pref_gtgt .progress-bar {
    background: #0BCB1E !important;
}

.tabs_cargt {
    padding: 35px;
    background: #F9F9F9;
    border-radius: 14px;
}

.tabs_cargt .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    background-color: #f9f9f9 !important;
    color: #1370F2;
    border-bottom: 1px solid #1370F2;
    border-radius: 0px;
    font-weight: 600;
    font-size: 16px;
}

.tabs_cargt .nav-link {
    color: #666A80;
    font-size: 16px;
    font-weight: 600;
}

.verf_oper {
    padding-top: 16px;
}

.gth_card {
    display: flex;
    justify-content: space-between;
}

.gth_card {
    display: flex;
    justify-content: space-between;
}

.pty_kar {
    display: flex;
}

.name_sdx {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #91F1FA;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin-right: 14px;
}

.name_sdx h4 {
    margin: 0px;
    font-size: 18px;
    font-weight: bold;
}

.jn_hedf h4 {
    font-size: 16px;
    margin: 0px;
    color: #131626;
    font-weight: bold;
}

.jn_hedf p {
    color: #383C4E;
    font-size: 13px;
    font-weight: 500;
}

.lort_text p {
    color: #383C4E;
}

.phonem_head {
    background: #EBEBEB;
    width: fit-content;
    padding: 4px 11px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.phonem_head h5 {
    margin: 0px;
    font-size: 14px;
    color: #383C4E;
}

.description_review {
    margin-bottom: 28px;
    padding: 24px;
    padding-top: 0px;
    border-bottom: 1px solid #ddd;
}

p.pret_y {
    margin: 0px;
    font-weight: 500;
    color: #383C4E;
}

.tech_kp {
    background: #EBEBEB;
    padding: 20;
}

.tech_kp {
    background: #EBEBEB;
    padding: 12px;
    text-align: center;
    margin-bottom: 34px;
}

.tech_kp p {
    margin: 0px;
    font-size: 15px;
    color: #131626;
    font-weight: 500;
}

.texhk_sectio {
/*    margin-top: 44px;*/
}

.phonet_vrer h2 {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.verf_tg h5 {
    color: #131626;
    font-weight: 600;
    font-size: 16px;
}

.mol_name p {
    margin: 0px;
    font-weight: 600;
    color: #000;
    font-size: 14px;
}

.verf_tg {
    margin-bottom: 14px;
    border-bottom: 1px solid #ddd;
}

.flv_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.name_j p {
    margin: 0px;
    font-weight: 500;
    color: #4e4e4e;
    font-size: 13px;
}

.phonet_vrer {
    margin-bottom: 30px;
}

.flv_flex {
    margin-bottom: 12px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 7px;
}

.cart_btn_y:hover {
    background: #1050a9;
}


/* sell page  */

.logo_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head_cart_st {
    border: 1px solid #ddd;
    border-radius: 50px;
    width: 90px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
}

.header-other {
       /* padding: 26px 22px 26px;
    position: fixed;
    top: 0;
    background: #F9F9F9;
    z-index: 999;
    width: 100%; */
    position: fixed;
    top: 0;
    background: #F9F9F9;
    z-index: 999;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.yt_btn a {
    border: 1px solid rgb(102, 106, 128);
    padding: 12px 100px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.yt_btn a:hover {
    border: 1px solid #1370F2;
    color: #1370F2;
}

.providergt_btn a:hover {
    border: 1px solid #1370F2;
    color: #1370F2;
}

.providergt_btn a {
    border: 1px solid rgb(102, 106, 128);
    padding: 12px 100px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}

.devic_btnh {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 26px;
}

.logo_othe {}

.logo_othe img {
    height: 45px;
}

.yt_btn {
    margin-right: 12px;
    margin-bottom: 40px;
    border: 1px solid rgb(102, 106, 128);
    padding: 12px 100px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
}

.providergt_btn {
    margin-right: 12px;
    margin-bottom: 32px;
    cursor: pointer;
}

.bannert_wer {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 470px;
    position: relative;
    display: flex;
    align-items: center;
/*    margin-top: 80px;*/
}

.headingh_banner_v {
    text-align: center;
}

.head_cart_st span {
    background: #EA1F1F;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-left: 12px;
    font-size: 12px;
    line-height: 24px;
}

.head_cart_st i {
    font-size: 20px;
    color: #222;
}

.headingh_banner_v h2 {
    color: rgb(255, 255, 255);
    font-weight: 700;
    font-size: 46px;
    margin-bottom: 40px;
}

.selling_btn a {
    padding: 12px 28px;
    background: #fff;
    border-radius: 6px;
    color: #1370F2;
    font-weight: 500;
    font-size: 14px;
}

.selling_btn a:hover {
    background-color: #63A6FE;
    color: #fff;
}

.selling_btn i {
    transform: rotate(-35deg);
    font-size: 15px;
    font-weight: bold;
    margin-left: 7px;
}

.clas_grab h3 {
    color: #2A2D3D;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.clas_grab {
    padding: 14px 40px;
    background: #fff;
    width: fit-content;
    border-radius: 20px 20px 0px 0px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.clas_grab span {
    color: #079F16;
}

.ca_arrow {
    position: absolute;
    left: -36px;
    bottom: 10px;
}

.ca_arrow i {
    font-size: 26px;
    color: #fff;
    transform: rotate(-46deg);
}

.ca_arrow_right {
    position: absolute;
    right: -36px;
    bottom: 10px;
}

.ca_arrow_right {
    font-size: 26px;
    color: #fff;
    transform: rotate(45deg);
}

.choo_img img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.choose_cardf_op {
    text-align: center;
}

.ch_hg h3 {
    color: #2A2D3D;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.choo_img {
    margin-bottom: 24px;
    margin-top: 12px;
}

.choose_cardf_op span {
    font-weight: 500;
    font-size: 15px;
}

.ch_hg p {
    color: #383C4E;
    font-size: 14px;
    font-weight: 500;
}

.brtxx {
    text-align: center;
    border-right: 1px solid #d4d4d4;
    padding-right: 20px;
}

.rt_sell {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 220px;
    position: relative;
}

.sell_opt {
    text-align: center;
    padding-top: 30px;
}

.sell_opt h5 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 24px;
}

.sel_devi {
    background: #4BF85D;
    width: fit-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding: 14px;
    border-radius: 10px;
}

.sel_devi h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    color: #034009;
}

.select_device_all {
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
    border-radius: 20px;
    padding: 30px;
    margin-top: -40px;
    position: relative;
/*    z-index: 99999;*/
    background: #fff;
}

.seel_dev_jhea h3 {
    font-size: 24px;
    color: #131626;
    font-weight: 700;
    margin: 0;
    padding-top: 0px;
    text-align: left;
}

.search_devec input {
    background: #F4F4F4;
    border-radius: 6px;
}

.hoverbqw img {
    height: auto;
    margin-bottom: 22px;
}

.view_cate_gt a {
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #1370F2;
    font-size: 12px;
    color: #1370F2;
    font-weight: 600;
}

.view_cate_gt i {
    transform: rotate(-35deg);
    font-weight: bold;
    font-size: 14px;
}

.view_cate_gt a:hover {
    background-color: #dceeff;
}

.seart_icon {
    position: absolute;
    right: 16px;
    top: 10px;
}

.search_devec {
    position: relative;
}

.selecty {
    box-shadow: none !important;
    border: 1px solid #ddd;
    padding: 30px;
}

.selecty:hover {
    border: 1px solid #1370F2;
}

.selecty:hover h4 {
    color: #1370F2;
}

.get_paid_btn button:hover {
    background-color: #1050a9;
    color: #fff !important;
}

.back_button_yy a:hover {
    background: #edf6ff;
}

.pricecolorx {
    color: #079F16 !important;
    font-size: 32px !important;
    margin-bottom: 24px;
}

.startsell_vg h3 {
    font-size: 26px;
    font-weight: 700;
    color: #383C4E;
}

.sell_device_jio {
    background: #F8F8F8;
    padding-bottom: 50px;
}

.start_yt {
    background: #F9F9F9;
}

.seef {
    box-shadow: none !important;
    border: 1px solid #ddd;
}

.seef:hover {
    border: 1px solid #1370F2;
}

.seef:hover h4 {
    color: #1370F2;
}

.start_sell_img img {
    width: 200px;
    height: 200px;
    transition: transform .2s;
    object-fit: contain;
}

.iphonetht {
    color: #079F16;
}

.changedivs {
    background: #fff;
    padding: 6px 20px;
    border-radius: 6px;
    color: #1370F2;
    margin-left: 20px;
    border: 1px solid #1370F2;
}

.changedivs:hover {
    background: #edf6ff;
}

.heading_flow {
    text-align: left;
    padding: 20px;
}

.tabs_choose_cond ul {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    border-radius: 0px;
    margin-bottom: 0px !important;
}

.tabs_choose_cond {
    border: 1px solid #ddd;
    border-radius: 12px;
    margin: 0px !important;
    padding: 0px !important;
}

.mail_evrt {
    position: absolute;
    z-index: 9;
    margin-top: 7px;
    margin-left: 13px;
}


/* new css */

#heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.form-card {
    text-align: left
}

#msform fieldset:not(:first-of-type) {
    display: none
}

#msform input,
#msform textarea {
    padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0
}

#msform .action-button {
    width: 100px;
    background: #673AB7;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #311B92
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

.card {
    z-index: 0;
    border: none;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #673AB7
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f13e"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: #673AB7
}

.progress {
    height: 20px
}

.progress-bar {
    background-color: #673AB7
}

.fit-image {
    width: 100%;
    object-fit: cover
}


/* Actual code example */

.form-field {
    display: block;
    margin-bottom: 16px;
}

.form-field__label {
    font-size: 0.75rem;
    transform: translateY(24px);
    /* Adjusted to match margin-top of the input */
    display: none;
    /* Updated to initially hide the label */
    font-weight: normal;
    left: 0;
    margin: 0;
    padding: 18px 12px 0;
    position: absolute;
    top: 0;
    opacity: 0;
    /* Start with opacity set to 0 for the fade-in effect */
    transition: all 0.4s ease-in-out;
    /* Smooth transition with ease-in-out timing */
    width: 100%;
}

.form-field__input:focus~.form-field__label,
.form-field__textarea:focus~.form-field__label,
.form-field__input:not(:placeholder-shown)~.form-field__label,
.form-field__textarea:not(:placeholder-shown)~.form-field__label {
    display: block;
    opacity: 1;
    color: #222;
    font-size: 0.75rem;
    transform: translateY(-20px);
}

.form-field__control {
    position: relative;
}

.checkouty_opet {
    padding: 18px;
}

.icon {
    position: absolute;
    top: 52%;
    left: 12px;
    transform: translateY(-50%);
    color: #999;
}
.icon i {
    font-size: 16px;
}
.form-field__control input {
    padding: 0 34px;
    margin-top: 0px;
    border: none !important;
    height: 52px;
}
.checkouty_opet .form-field {
    margin-bottom: 0px !important;
}

.form-field__control {
    border: 1px solid #E0E2E3;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.form-field__bar {
    border-bottom: 2px solid #1370F2;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transition: all 0.4s;
    width: 1%;
}

.form-field__input,
.form-field__textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #999;
    color: #333;
    display: block;
    font-size: 1.2rem;
    margin-top: 24px;
    outline: 0;
    padding: 0 12px 10px 12px;
    width: 100%;
}

.form-field__input:-ms-input-placeholder~.form-field__label,
.form-field__textarea:-ms-input-placeholder~.form-field__label {
    font-size: 1.2rem;
    transform: translateY(0);
}

.form-field__input:-moz-placeholder-shown~.form-field__label,
.form-field__textarea:-moz-placeholder-shown~.form-field__label {
    font-size: 1.2rem;
    transform: translateY(0);
}

.form-field__input:-ms-input-placeholder~.form-field__label,
.form-field__textarea:-ms-input-placeholder~.form-field__label {
    font-size: 1.2rem;
    transform: translateY(0);
}

.form-field__input:placeholder-shown~.form-field__label,
.form-field__textarea:placeholder-shown~.form-field__label {
    font-size: 1.2rem;
    transform: translateY(0);
}

.form-field__input:focus~.form-field__label,
.form-field__textarea:focus~.form-field__label {
    color: #222;
    font-size: 0.75rem;
    transform: translateY(-22px);
}

.form-field__input:focus~.icon i,
.form-field__textarea:focus~.icon i {
    color: #fff;
    font-size: 0.75rem;
    transform: translateY(-22px);
}

.form-field__input:focus~.form-field__bar,
.form-field__textarea:focus~.form-field__bar {
    border-bottom: 2px solid #fafafa;
    transform: scaleX(150);
}

.checkout_payment_sec .accordion-button:not(.collapsed)::after {
    display: none;
}

.checkout_payment_sec .accordion-button::after {
    display: none;
}

.prit_headinf h1 {
    font-size: 22px;
    margin-bottom: 14px;
}
.privacy-policy h2 {
    font-size: 16px;
    color: #313131;
    margin-top: 18px;
}
.centr_headin_kk {}
.centr_headin_kk h2 {
    text-align: center;
    color: #fff;
    font-size: 34px;
    line-height: 42px;
}
.centr_headin_kk span {
    color: #2E85FF;
}
.repairnow_btm {
    text-align: center;
}
.repairnow_btm a {
    background: #1370F2;
    padding: 14px 34px;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
}
.repairnow_btm {
    margin-top: 32px;
}
.repairnow_btm a:hover {
    background: #1050a9;
}

.tru_headinf h2 {
    font-size: 26px;
    color: #1370F2;
    font-weight: bold;
}

.lin_df {
    display: flex;
    align-items: center;
}

.img_shp {
    flex-shrink: 0;
}

.lin_df h3 {
    font-size: 18px;
    color: #131626;
    margin: 0;
    font-weight: bold;
}

.should_trust_section {
    padding: 50px;
    background: rgb(186, 216, 255);
    background: linear-gradient(60deg, rgba(186, 216, 255, 1) 5%, rgba(232, 243, 255, 1) 19%, rgba(232, 243, 255, 1) 87%, rgba(186, 216, 255, 1) 96%);
}

.gt_card_ofe {
    padding: 22px;
    background: #fff;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}

.tru_headinf p {
    color: #666A80;
    font-size: 14px;
}

.img_shp img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.lin_partaty p {
    font-size: 14px;
    color: #666A80;
    padding-left: 2, ;
}

.olman img {
    width: 180px !important;
    height: auto;
}

.olman {
    margin-bottom: 14px;
}

.tp_seel_const h3 {
    font-size: 26px;
    color: #2A2D3D;
    font-weight: 700;
}

.tp_seel_const p {
    color: #707070;
    font-size: 16px;
}

.tp_seel_const {
    padding-top: 6px;
    margin-bottom: 24px !important;
}

.payment_logo img {
    width: 100px;
    height: auto;
}

.withc_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 15px;
}

.payment_logo {
    border: 1px solid #D4D7E6;
    margin-right: 14px;
    border-radius: 7px;
    padding: 0px 25px;
    margin-bottom: 0px;
    background: #fff;
}

.Edit_icv_btn {
    margin-right: 20px;
}

.Edit_icv_btn a {
    font-size: 15px;
    padding: 6px 30px;
    color: #000;
    font-weight: bold;
}

.contact_ingh p {
    margin: 0px 0px 2px;
    color: #666A80;
    font-size: 14px;
}

.own_box i {
    color: #0BCB1E;
    font-size: 22px;
    position: relative;
    top: 2px;
    margin-right: 8px;
}

.own_box p {
    font-weight: bold;
    color: #222;
    font-size: 14px;
    margin: 0;
}

.own_box {
    border: 1px solid #ddd;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border-radius: 6px;
    width: 100%;
}
.back_btn_leftg a:hover{
background-color: #eaf3ff;
}
.back_btn_leftg a {
    border: 1px solid #1370F2;
    padding: 10px 60px;
    border-radius: 6px;
    color: #1370F2;
    font-weight: 600;
}
.back_btn_leftg {
    margin-bottom: 50px;
}
.ast_heding img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.dev_hef h3 {
    font-size: 18px;
    margin-bottom: 0px;
}

.dev_hef {
    padding-left: 12px;
}
.ast_heding {
    flex-shrink: 0;
}
.dev_hef h3 {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
    color: #131626;
}
.zzwe{
    border-bottom: 1px solid #ededed;
    padding-bottom: 10px;
    margin-bottom: 1px;
}
.heading_dives_sed h4 {
    font-size: 16px;
    margin-bottom: 14px;
}
.list_model_divc h4 {
    font-size: 15px;
    font-weight: bold;
    color: #131626;
}
.actiga{
    color: #1370F2;
}
.contiune_btny a {
    border: 1px solid #1370F2;
    padding: 10px 60px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    background: #1370F2;
}
.contiune_btny button {
    border: 1px solid #1370F2;
    padding: 10px 60px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    background: #1370F2;
}
.contiune_btny a:hover{
    background-color: #0e5aa7 !important; 
}
.btnqwe{
    display: flex !important;
    justify-content: space-between;
    padding-right: 36px;
    flex-wrap: wrap;
}
.wht_yyt{
    padding: 0;
    margin-bottom: 9px;
    font-size: 16px;
    color: #2A2D3D;
    font-weight: bold;
}
.frm_check.active {
    border: 1px solid #1370f2;
}
.ort_ghty{
    display: block;
    text-align: center;
    position: relative;
    font-size: 0.75rem;
}
.contiune_btny i {
    font-size: 12px !important;
    padding-left: 2px;
}
.back_btn_leftg i {
    font-size: 12px !important;
    padding-right: 2px;
}
.heading_of_print h2 {
    font-weight: bold;
    font-size: 30px;
    color: #2A2D3D;
}
.ort_ghty::before {
    position: absolute;
    content: "";
    left: 5px;
    top: 12px;
    width: 46%;
    height: 1px;
    background-color: #666A80;
}
.ort_ghty::after {
    position: absolute;
    content: "";
    right: 5px;
    top: 12px;
    width: 46%;
    height: 1px;
    background-color: #666A80;
}
.ort_ghty span {
    font-size: 15px;
    color: #a3a3a3;
}
.curren_hed {
    text-align: center;
}
.curren_hed a {
color: #222;
    font-size: 16px;
    display: block;
    border-radius: 50px;
    width: 100%;
    padding: 10px;
}
.curren_hed a:hover{
background-color: #e8f2ff;

}
.choice_stores_j a {
    font-size: 12px;
    text-decoration: underline;
    color: #464646;
    margin-left: 24px;
}
.choice_stores_j span {
    font-size: 12px;
    color: #363636;
    font-weight: normal;
    margin-left: 20px;
}

.choose_repair_option {
    margin-bottom: 22px;
}
.choice_stores_j h4 {
    font-size: 20px;
    margin-bottom: 2px;
    color: #222;
}

.curren_hed i {
    font-size: 16px;
    color: #626262;
    margin-right: 6px;
}


.choose_tr_he h2 {
    font-size: 26px;
    color: #2A2D3D;
    font-weight: 700;
}
.visit_store_btn {
    width: 100%; /* Make the button full-width */
    text-align: center; /* Center-align the button */
}

.visit_store_btn a {
    display: block;
    background-color: #1370F2;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.visit_store_btn a:hover {
    background-color: #0e5aa7; /* Change background color on hover */
}
.choose_tr_he {
    margin-bottom: 20px;
    margin-top: 12px;
}
.mail_store_btn a:hover{
    background-color: #f5f5f5; /* Change background color on hover */
}

.visit_store_btn i {
    margin-right: 6px;
}
.mail_store_btn i {
    margin-right: 6px;
}
.mail_store_btn a{
    display: block;
    background-color: #fff;
    color: #383C4E;
    padding: 10px;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #1370f2;
    font-weight: 600;
}
.mail_store_btn {
    width: 100%; /* Make the button full-width */
    text-align: center; /* Center-align the button */
}
.miles_hdf{
    float: right;
    color: #1370f2;
    font-size: 12px;
    font-weight: 500;
}
.activeshipinmgdetails{
    color: #1370F2;
}
.activeshipinmgdetails i{
    color: #1370F2 !important;
}
.choice_stores_j {
    margin-bottom: 22px;
}
.can_pik_addd a {
    font-weight: bold;
    color: #383C4E;
    text-decoration: underline;
}
.address_toogle_x {
    display: none; /* Hide initially */
  }

.address_toogle_x {
    padding-top: 20px;
}

.what_nct img{
    width: 400px;
    height: auto;
    text-align: center;
}
.wht_next_headinf {
    padding-top: 22px;
}
.what_nct{
    text-align: center;
}

.what_nct {
    text-align: center;
    padding-top: 30px;
    margin-bottom: 30px;
}

.wht_next_headinf h3 {
    font-size: 20px;
    margin-bottom: 2px;
    color: #222;
}
.choice_stores_j p {
    color: #666A80;
    font-size: 14px;
}
.logo_ot_inner img{
    height: auto;
    width: 200px;
}

/* Style for active radio button */
.header_under_box.active {
    background-color: #f0f0f0; /* Change to your desired active background color */
}

/* Style for inactive radio button */
.header_under_box {
    background-color: #ffffff; /* Default background color */
}

/* Additional CSS styles for radio buttons and labels */
.rfg input[type="radio"] {
    display: none; /* Hide default radio button */
}

.rfg label {
    cursor: pointer;
}

/* Add styles for selected radio button */
.rfg input[type="radio"]:checked + .choose_th_date {
    border: 1px solid #1370f2;
}
.rfg input[type="radio"]:checked + .choose_th_date .frp_oprt h3 {
font-weight: 600;
}
.frp_oprt {
    padding-top: 8px;
}
p.tht_part {
    font-size: 13px;
    color: #8B90A6;
    margin-bottom: 4px;
}
p.conty_test {
    color: #131626;
    font-weight: 500;
    font-size: 14px;
}

.conty_test a {
    font-weight: 600;
    text-decoration: underline;
}
span.namjk {
    font-size: 28px;
    color: #222;
}
.call_us_sec {
    display: flex;
    margin-bottom: 12px;
    justify-content: center;
}
.glg_op_jio {
    display: flex;
    padding: 3px 20px;
    border: 1px solid #1370F2;
    border-radius: 10px;
    margin-right: 20px;
    align-items: center;
}
span.iconj {
    flex-shrink: 0;
}
.call_usy p{
    margin: 0px;
    font-weight: bold;
    font-size: 18px;
    color: #1370F2;
}
.call_usy {
    line-height: 20px;
}
.call_usy span {
    color: #1370F2;
    font-size: 13px;
}
span.iconj i {
    font-size: 22px;
    margin-right: 14px;
    color: #1370F2;
}

.getlocationy {
    border: 1px solid #4E5266;
    color: #4E5266;
}
.getlocationy p{
color: #4E5266;
font-weight: 600;
}
.getlocationy i{
    color: #222 !important;
}
.what_heasding h3 {
    font-size: 20px;
}

.what_heasding {
    padding-top: 36px;
    margin-bottom: 42px;
}

.card_fr_dego {
    border: 1px solid #D4D7E6;
    border-radius: 12px;
    text-align: center;
    padding: 16px;
    background: #fff;
}
.ddf_headingh h3 {
    font-size: 16px;
    color: #262626;
    margin-bottom: 6px;
    font-weight: 600;
}

.df_diagnostic img {
    width: 68px;
    height: auto;
    margin-bottom: 14px;
    object-fit: contain;
}
.ddf_headingh p {
    color: #262626;
    font-size: 13px;
    font-weight: normal;
    line-height: 22px;
}

.whtydfggg{
    margin-bottom: 0px;
}
.we_tty{
    padding-bottom: 40px;
    text-align: center;
}
.casedimg img{
    width: 100% !important;
    height: 100% !important;
}
.casedimg {
    margin-bottom: 24px;
}
.asstnm_headi img {
    width: 20px;
    height: auto;
    object-fit: contain;
    margin-right: 12px;
    position: relative;
    bottom: 3px;
}

.asstnm_headi p {
    margin: 0;
    color: #383C4E;
    font-weight: 600;
}
.asstnm_headi p {
    margin: 0px;
    font-weight: bold;
    color: #222;
    font-size: 14px;
}
.installmentplans {
    padding: 18px;
    background: #fff;
    border-radius: 10px;
}
.installmentplans {
    margin-top: 16px;
}
.hopert{
    background-color: #fff !important;
}
.phone_plans_otp {
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 485px;
}
.contct_right_imgh img {
    width: 100%;
    object-fit: cover;
}
.contct_right_imgh img {
    width: 100%;
    object-fit: cover;
    position: relative;
    left: 116px;
}
.find_mobile_plan {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 440px;
}
.find_mobile_plan h3 {
    font-size: 32px;
    font-weight: 700;
    color: #131626;
    margin-bottom: 22px;
}
.find_mobile_plan span{
    color: #0BCB1E;
}
.find_mobile_planK a {
    color: #fff;
    padding: 10px 20px;
    background: #1370F2;
    border-radius: 10px;
    width: 100%;
    display: block;
    text-align: center;
    font-weight: 500;
}
.phone_call_nu p {
    margin: 0px;
}
.phone_call_nu a {
    font-size: 18px;
    font-weight: bold;
}
.phone_call_nu {
    padding-top: 22px;
}
.phone_call_nu p {
    margin: 0px;
    color: #4E5266;
    font-weight: normal;
    font-size: 13px;
}
.great_deals {
    background: #E8F3FF;
    padding: 46px;
}
.get_yu_dea h2 {
    font-size: 32px ;
    font-weight: 700;
    color: #131626;
}
.get_yu_dea span {
    color: #079F16;
}
.carf_sectiony {
    padding: 26px;
}
.popur_hty {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    transition-duration: .4s;
}
.find_mobile_planK a:hover {
    background: #1050a9;
}
.phonety_card {
    background: #C6F7CB;
    padding: 6px;
    text-align: center;
    border-radius: 20px 20px 0px 0px;
}
.phonety_card p {
    color: #056A0F;
    font-weight: 600;
    margin: 0px;
    font-size: 13px;
    text-transform: uppercase;
}
.mobile_sety {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mobile_ty span {
    color: #666A80;
    font-size: 13px;
}
.gogt_ty span {
    color: #1370F2;
    font-weight: 500;
    font-size: 14px;
}
.line_ty span {
    color: #1370F2;
    font-weight: 600;
    font-size: 14px;
}
.mobile_post_paid a {
    padding: 6px 16px;
    background: #FFEFD8;
    border-radius: 50px;
    display: block;
}
.mobile_post_paid a span {
    color: #FB7C0A;
    font-weight: 600;
    font-size: 13px;
}
.texttuy p {
    font-weight: 600;
    color: #1370F2;
    font-size: 16px;
    margin: 0;
}
.ultra_wired_heading {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    align-items: center;
}
.hot_porty h2 {
    font-size: 28px;
    font-weight: bold;
    color: #1370F2;
}
.hot_porty span {
    color: #131626;
    font-size: 18px;
    font-weight: 600;
}
.price_plansa h2 {
    color: #079F16;
    font-weight: bold;
    font-size: 40px;
}
.selert_btny{
    margin-top: 18px;
}
.selert_btny a {
    display: block;
    padding: 8px 20px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid #1370F2;
    text-align: center;
    color: #1370F2;
    font-weight: bold;
}
.multi_heasd ul {
    list-style: none;
}
.multi_heasd ul li {
    margin-bottom: 6px;
    color: #131626;
}
.multi_heasd ul li i {
    color: #1370F2;
    margin-right: 8px;
}
.price_plansa sub {
    font-weight: 500;
    font-size: 18px;
}

.selert_btny a:hover {
    background-color: #e8f2ff;
}
.phonedeuals .owl-next {
    right: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;

}

.phonedeuals button.owl-prev span {
    font-size: 34px;
    color: #ffffff;
    position: relative;
    bottom: 2px;
}

.phonedeuals .owl-prev {
    left: -20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #1370F2 !important;
    background-color: #1370F2 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #1370F2 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

.phonedeuals .owl-prev.disabled {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: #D4D7E6 !important;
    background-color: #D4D7E6 !important;
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 0px solid #D4D7E6 !important;
    color: #fff !important;
    width: 40px !important;
    height: 40px !important;
}

/* counter */
.v-counter {
    border-radius: 10px;
    max-width: 105px;
    overflow: auto;
    padding: 0px 2px;
    border: 1px solid #ffffff;
    margin: 2px;
}

.v-counter input[type=button]:hover {
    color: black;
    font-weight: bold;
    background-color: transparent;
}
.v-counter span {
    font-size: 13px;
    color: black;
}
.v-counter .minusBtn {
    display: inline-block;
    width: 20px;
    background-color: transparent;
    outline: none;
    border: none;
    text-align: center;
    cursor: pointer;
    padding: 0px;
    color: #656565;
    height: 33px;
    font-size: 18px;
    font-weight: bold;
}
.v-counter .count {
    display: inline-block;
    width: 20px;
    background-color: transparent;
    outline: none;
    border: none;
    text-align: center;
    cursor: pointer;
    padding: 0px;
    color: #656565;
    height: 33px;
    font-size: 16px;
    font-weight: 500;
}

.v-counter .minusBtn,
.v-counter .plusBtn {
    width: 25px !important;
    height: 25px !important;
    border: 1px solid #ccc !important;
    border-radius: 50px !important;
    line-height: 24px !important;
}

.v-counter .minusBtn:hover,
.v-counter .plusBtn:hover {
    background-color: #e0e0e0; /* Hover background color */
}

.popur_hty:hover {
    border: 1px solid #1370F2;
}

.post_paid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.brad_chip {
/*    margin-right: 12px;*/
}
.post_pdt label {
    border: 1px solid #F4F4F4;
    background: #F4F4F4;
    padding: 8px 24px;
    color: #A8ACBF;
    font-weight: 500;
    font-size: 14px;
    border-radius: 10px;
}
.provider_selecrt select {
    border: 1px solid #F4F4F4;
    background: #F4F4F4;
    padding:8px 22px;
    color: #A8ACBF;
    font-weight: 500;
    font-size: 14px;
    border-radius: 10px;
}
.provider_selecrt {
    margin-right: 12px;
}
.filter_btny a {
    display: block;
    padding: 8px 30px;
    background: #1370F2;
    color: #fff;
    font-size: 15px;
    border-radius: 10px;
}
.perty_swection {
    display: flex;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
}

.filter_btny {
    padding-top: 12px;
}
.selecty_uuy {
    margin-bottom: 30px;
    padding-top: 5px !important;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}


.toggle-container {
    display: flex;
    align-items: center;
}

.toggle-label {
    margin-right: 10px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 58px;
    height: 25px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.show_pricevb {
    padding-left: 34px;
    padding-top: 10px;
}
input:checked + .toggle-slider {
    background-color: #2196F3;
}

input:focus + .toggle-slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Rounded sliders */
.toggle-slider.round {
    border-radius: 34px;
}

.toggle-slider.round:before {
    border-radius: 50%;
}
.show_pricevb p {
    margin: 0px;
    font-weight: 500;
    color: #383C4E;
    line-height: 16px;
    margin-bottom: 6px;
    font-size: 12px;
}
.moving_selecty_uuy {
    background-position: center;
    background-size: cover;
    height: 90px;
    border-radius: 20px;
    margin-top: 14px;
    margin-bottom: 30px;
}

.movti_heading p {
    color: #000000;
    font-size: 13px;
    margin: 0px;
}
.movti_heading h5 {
    font-size: 14px;
    color: #222;
    margin-bottom: 3px;
}
.movti_heading {
    padding-top: 18px;
    margin-left: 86px;
}

input#flexSwitchCheckDefault {
    width: 55px !important;
    height: 22px;
}

.phone_plans_postpaid {
    margin-bottom: 20px;
    position: relative;
    padding: 0px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}
.fgh_oper {
    display: flex;
    align-items: center;
    padding: 20px;
    flex-wrap: wrap;
}
.ppt_phoner{
    background: #E8F3FF;
    padding: 4px 20px;
    border-radius: 50px;
    margin-right: 16px;
}
.ppt_phoner span{

}
.ppt_phoner span {
    color: #033C8C;
    font-weight: bold;
    font-size: 13px;

}
.ppt_phoner i {
    margin-right: 8px;
}
.ppt_xx {
    margin-left: 20px;
    margin-right: 20px;
}

.ppt_xx span {
    color: #1370F2;
    font-weight: bold;
    font-size: 13px;
}
.ppt_xfinty span{
    font-size: 14px;
    color: #666A80;
}

.para_plus_mu_heading {
    background: #C6F7CB;
    padding: 6px 10px;
    border-radius: 0px 15px 0px 15px;
    position: absolute;
    right: 0;
    top: 0;
    width: 130px;
    text-align: center;
}
.para_plus_mu_heading span{
    font-size: 14px;
    color: #079F16;
    font-weight: 600;
}
.fll_nd_section {
    padding: 0px 25px;
}
.monthly_pricefg {
    display: flex;
    justify-content: space-between;
}
.monthy_thts p {
    color: #666A80;
    font-size: 13px;
}
.price_gt h3 {
    color: #1370F2;
    font-weight: 800;
    font-size: 30px;
}
span.pricefg {
    background: #FFEFD8;
    padding: 4px 16px;
    border-radius: 8px;
    color: #FB7C0A;
    font-weight: bold;
    font-size: 12px;
    margin-left: 10px;
}
.totel_gbh h4 {
    color: #079F16;
    font-weight: 800;
    font-size: 30px;
}
.totel_gbh {
    padding-top: 14px;
}
.sdwerr {
    padding-left: 22px;
}
.callingh_sectgion h3 {
    font-weight: bold;
    color: #1370F2;
    font-size: 24px;
}
.select_btny a {
    background: #1370F2;
    color: #fff;
    display: block;
    text-align: center;
    padding: 8px 22px;
    border-radius: 8px;
    width: 84%;
}
.monthy_thts p {
    font-weight: bold;
    color: #666A80;
    font-size: 14px;
    margin-bottom: 3px;
}
.speedf_section span {
    font-weight: bold;
    color: #666A80;
    font-size: 14px;
    margin-bottom: 3px;
}
.totel_gbh p {
    font-weight: 500;
    color: #000000;
    font-size: 13px;
}
.price_gt p {
   font-weight: 500;
    color: #000000;
    font-size: 13px;
}
.callingh_sectgion i {
    color: #079F16;
    font-size: 24px;
}
.supprt_secty {
    padding-top: 20px;
    margin-bottom: 18px;
}
.supprt_secty p {
    margin: 0px;
    font-size: 13px;
    color: #444343;
    font-weight: 500;
}
.vb_special_promotion .accordion-item {
    border: none !important;
}
.vb_special_promotion .accordion-button.collapsed{
    background: #E8F3FF !important;
    padding: 10px;
    padding-left: 20px;
    border-radius: 0px;
    padding-right: 20px;
}
.vb_special_promotion .accordion-button{
    background: #E8F3FF !important;
    padding: 10px;
    padding-left: 20px;
    border-radius: 0px;
    padding-right: 20px;
}
.accordion-button:focus{
    z-index: 3;
    border-color:none !important;
    outline: 0;
    box-shadow:none !important;
}
span.spca_heaidng {
    font-weight: 600;
    color: #033C8C;
    margin-right: 12px;
}
p.spl_jjrt {
    color: rgb(3, 60, 140);
    font-size: 13px;
    margin: 0px;
    font-weight: 500;
}

span.planht_right {
    font-weight: bold;
    position: absolute;
    right: 62px;
    font-size: 13px;
}

.speed_bordert {
    border: 1px solid #ddd;
    padding: 6px;
    margin-bottom: 22px;
}
.speed_bordert {
    border: 1px solid #033C8C;
    padding: 6px 20px;
    border-radius: 6px;
    width: fit-content;
}
.speed_bordert p {
    margin: 0;
    color: #033C8C;
    font-weight: 500;
    font-size: 14px;
    padding-left: 12px;
}
.vb_special_promotion .accordion-body {
    background-color: #E8F3FF;
}
.heighty_heading h3 {
    font-weight: bold;
    font-size: 16px;
    color: #033C8C;
}
ul.listdownert li {
    color: #033C8C;
    padding-left: 0px;
}
ul.listdownert {
    padding-left: 20px;
}

.lort_textd p {
    color: #033C8C;
    font-size: 13px;
}

.accordion-button:not(.collapsed)::after {
    color: red !important; 
  }
  .best_plahnsjk{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 35px;
  }
  .inter_headingt {
    text-align: center;
    margin-bottom: 34px;
    padding-top: 12px;
}
.inter_headingt h3 {
    font-size: 26px;
    color: #000;
    font-weight: 600;
}
.best_plans_op_hea {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.best_plans_op_hea h3 {
    font-weight: bold;
    color: #000000;
    line-height: 40px;
    margin-bottom: 12px;
    font-size: 30px;

}
.best_plans_op_hea p {
    color: #383C4E;
    font-size: 14px;
    margin-bottom: 8px;
}
section.cheapest_secty {
    margin-bottom: 60px;
}
.fmail_sect {
    display: flex;
    justify-content: space-between;
}
.headingrt h2 {
    font-size: 26px;
    color: #000;
}
.secty_opet {
    padding-top: 32px;
    margin-bottom: 30px;
}

.best_topphpne{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 64px;
}
section.thbgr {
    background: #E8F3FF;
    padding: 50px 10px;
}
.why_should_heading h2 {
    text-align: center;
    font-size: 26px;
    color: #1370F2;
    font-weight: bold;
}
.why_should_heading {
    text-align: center;
}
.why_should_heading p {
    color: #666A80;
    font-size: 14px;
}
.card_post_paidf {
    margin-bottom: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgb(0 0 0 / 8%), 0 3px 4px rgb(0 0 0 / 6%);
}
.post_painb img {
    width: 45px;
}
.post_painb p {
    margin: 0;
    font-weight: bold;
    color: #000;
    font-size: 18px;
    margin-bottom: 6px;
}
.cardf_part ul {
    padding-left: 30px;
}
.cardf_part ul li {
    color: #484b5a;
    line-height: 30px;
    font-size: 15px;
}

section.best_providers {
    background: #E8F3FF;
    /* padding: 40px 20px; */
}
.srt_yt {
    text-align: center;
}
.srt_yt h3 {
    font-size: 28px;
    font-weight: bold;
    color: #222;
}
.srt_yt {
    margin-bottom: 36px;
}
.why_choose_us_bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.why_tt_open {
    text-align: center;
}
.why_tt_open span {
    color: #079F16;
    font-weight: bold;
    font-size: 15px;
}
.why_tt_open h3 {
    font-size: 28px;
    font-weight: bold;
    color: #131626;
    padding-top: 10px;
}
.why_tt_open p {
    color: #383C4E;
    font-size: 14px;
}
.research_process {
    width: 350px;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 10px;
    height: 320px;
    position: relative;
    box-shadow: 0 3px 4px rgb(0 0 0 / 8%), 0 3px 4px rgb(0 0 0 / 6%);
}
.typical_experience{
    width: 400px;
    padding: 20px;
    background: #EDEBEB;
    position: relative;
    z-index: 9;
    left: -10px;
    height: 410px;
    border-radius: 10px;
    box-shadow: 0 3px 4px rgb(0 0 0 / 8%), 0 3px 4px rgb(0 0 0 / 6%);
}

.jiowireless_experiencex{
    width: 550px;
    padding: 20px;
    background: #F9F9F9;
    border-radius: 10px;
    position: relative;
    z-index: 9;
    padding-right: 80px;
    height: 512px;
    left: -16px;
    box-shadow: 0 3px 4px rgb(0 0 0 / 8%), 0 3px 4px rgb(0 0 0 / 6%);
}
.search_pro_section img {
    margin-bottom: 16px;
}
.res_pro_section p {
    color: #131626;
    font-weight: 500;
    font-size: 15px;
    margin: 0px;
}
.search_pro_section p {
    margin: 0;
    font-size: 13px;
    color: #000;
}
.res_pro_section h4 {
    font-size: 15px;
}
.res_pro_section h4 {
    font-size: 15px;
    margin-bottom: 24px;
}

.search_pro_section {
    margin-bottom: 34px;
}

.flexc_card{
    display: flex;
    align-items: center;
}

.res_pro_section::after {
    content: '';
    position: absolute;
    background-color: #5C5C5C;
    width: 350%;
    height: 1px;
    left: 16px;
    z-index: 11;
}
.res_pro_section {
    margin-bottom: 50px;
}
.reacy_find h3 {
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 12px;
}
.search_plans_btn a {
    background: #1370F2;
    padding: 10px 24px;
    border-radius: 6px;
    color: #fff;
}
.jio_less_bg {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 770px;
    width: 100%;
    display: flex;
    align-items: center;
}
.jio_less_heading h2 {
    color: #079F16;
    font-weight: bold;
    margin-bottom: 12px;
    font-size: 54px;
}
.jio_less_heading h4 {
    color: #464449;
    font-size: 29px;
    margin-bottom: 40px;
}
.jio_less_heading h5 {
    color: #464449;
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 32px;
    font-weight: 600;
}
.partnew_img{
    justify-content: space-between;
    display: flex;
}
.part_logo img {
    height: 40px;
}
.res_pro_sectioccxn p{
    color: #131626;
    font-weight: 500;
    font-size: 15px;
    margin: 0px;
}
.res_pro_sectioccxn{
margin-bottom: 64px;
}
.search_pro_section h4 {
    font-size: 20px;
    color: #222;
}
.custom-toggle-content {
    display: none;
    padding: 10px;
    /* background-color: #f0f0f0;
    border: 1px solid #ccc; */
    margin-top: 10px;
  }
  .custom-toggle-button {
    cursor: pointer;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 30px;
  }
  .custom-toggle-button .fa-caret-down {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  .custom-toggle-button.active .fa-caret-down {
    transform: rotate(180deg);
  }
  .post_paid_sety h3 {
    color: #656565;
    font-size: 16px;
    margin: 0px;
}
.srd_srt i {
    color: #656565;
    font-size: 20px;
    position: relative;
    top: 3px;
}
.phoe_plansd .form-check {
    font-weight: 500;
    font-size: 14px;
    color: #222;
    margin-bottom: 14px;
}
.post_paid_sety {
    padding-top: 4px;
}
.modal-footerx{
    /* display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end; */
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)* .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.reset_sec_btn {
    float: right;
    margin-right: 12px;
    padding-top: 6px;
}
.saveret{
    padding: 10px 30px;
    font-size: 15px;
    margin-right: 12px;
}
.canmeet{
    background-color: #ABABAB;
    padding: 10px 30px;
    font-size: 15px;
    margin-right: 12px;
    border: 1px solid #ABABAB;
}
.reset_sec_btn a {
    text-decoration: underline;
    color: #000000 !important;
    font-size: 15px;
}
.cvbqwerty{
    padding: 45px;
}
.modal-footerx {
    padding: 22px 32px;
}
.model_htads {
    padding: 30px;
}
.model_htads h5 {
    font-size: 23px;
    font-weight: 500;
    color:#222;
}
.modal-footerner{
    background-color: #ddd !important;
    padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap)* .5);
    background-color: var(--bs-modal-footer-bg);
    border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
    border-bottom-right-radius: var(--bs-modal-inner-border-radius);
    border-bottom-left-radius: var(--bs-modal-inner-border-radius);
    text-align: center;
}
.stree_addre_tt input {
    border-radius: 10px;
    height: 70px;
    border: 1px solid #222;
}
.whyt_do_tert {
    padding-top: 23px;
    margin-bottom: 23px;
}
.need_helpt p {
    margin: 0 0px 8px;
    color: #000;
    font-size: 14px;
}
.model_htads .btn-close{
    font-size: 20px !important;
}
.contact_infxxo_sec{
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 485px; */
}
.contact_infxxo_sec {
    padding-top: 60px;
    padding-bottom: 60px;
}
.heading_cont h2 {
    font-size: 34px;
    font-weight: bold;
    color: #000;
}
.findxx_mobile_plan{
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    width: 540px;
}
.heading_cont p {
    font-size: 15px;
    color: #131626;
}
.donty_call_heradin h4 {
    color: #383C4E;
    font-size: 15px;
    font-weight: bold;
}
.donty_call_heradin h2 {
    color: #079F16;
    font-size: 30px;
    font-weight: bold;
}
.donty_call_heradin h1 {
    color: #383C4E;
    font-size: 21px;
    font-weight: bold;
}
.donty_call_heradin p {
    color: #4E5266;
    font-size: 14px;
    padding-top: 18px;
    margin-bottom: 0px;
}
.donty_call_heradin a {
    text-decoration: underline;
    font-weight: 500;
}
.contdf{
    padding-right: 0px !important;
}

.prtycx input{
    background: #F4F4F4;
}.heading_cont {
    padding-bottom: 12px;
}
.chat_btnhy a {
    display: block;
    border: 1px solid #1370F2;
    padding: 6px 24px;
    border-radius: 6px;
    color: #1370F2;
    font-weight: 600;
}
.Hang-tight_img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-bottom: 26px;
}
.Hang-tight_img {
    padding-top: 40px;
    margin-bottom: 35px;
}
.Hang-tight_img h2 {
    color: #1370F2;
    font-weight: bold;
    font-size: 32px;
    margin-bottom: 12px;
}
.Hang-tight_img h3 {
    color: #2A2D3D;
    font-size: 20px;
}
.call_opert h1 {
    font-size: 18px;
    margin-bottom: 2px;
    font-weight: bold;
    color: #079F16;
}
.Call_on {
    display: flex;
    justify-content: center;
    padding-top: 38px;
    align-items: center;
}
.cwe_opert p {
    color: #222;
    margin-bottom: 0px;
}

.call_opert {
    margin-right: 22px;
    border-radius: 10px;
    border: 1px solid #079F16;
    padding: 5px 12px 5px;
}
.call_opert p {
    font-size: 12px;
    margin-left: 26px;
    margin-bottom: 0px;
}
.find_phones_d img {
    width: 100%;
    position: relative;
    /* left: 9%; */
}
.curr_arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #1370F2;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1370F2;
}
.heading_curr_sec h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2A2D3D;
    margin-bottom: 6px;
}
.heading_curr_sec p {
    color: #2A2D3D;
    font-size: 20px;
}
.heading_curr_sec {
    padding-top: 16px;
}
.current_provider_sec {
    padding-top: 50px;
}
.findmobileplans {
    margin:0px 0px 0px 35px;
}
.heading_curr_sec p {
    color: #2A2D3D;
    font-size: 15px;
}
.find_phones_d {
    position: relative;
    bottom: 70px;
}
.Provider_was {
    padding: 10px 27px;
    background: #F4F4F4;
    border-radius: 50px;
    margin-bottom: 20px;
}
.Provider_was label {
    color: #000;
    font-weight: bold;
}
.Provider_was input {
    font-size: 20px;
}

.presect .totel_gbh h4 {
    font-size: 24px;
}
.intery .price_gt p {
    font-size: 12px;
}
.intery .totel_gbh p {
    font-size: 12px;
}

.intery .speedf_section span {
    font-size: 12px;
}
.intery .monthy_thts p {
    font-size: 12px;
}
.presect .speedf_section span {
    font-size: 12px;

}

.filtercvz .ppt_phoner{
    padding: 4px 12px;
}
.filtercvz .ppt_xx{
    margin-left: 15px;
    margin-right: 15px;
}

.filtercvz .ppt_xx span{
    font-size: 11px;
}
.filtercvz .ppt_xfinty span{
    font-size: 12px;

}
.filtercvz .monthy_thts p{
    font-size: 12px;
}
.filtercvz .sdwerr{
    padding-left: 14px;
}
.filter_sectiony {
    padding: 40px;
    background-color: #fff;
}
.srtsection{
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
    border: 1px solid #e7e7e7;
    border-radius: 5px;}
.phoneplans_tt h4 {
    font-size: 20px;
    color: #383C4E;
    font-weight: bold;
}
.srtsection .accordion-button {
    font-size: 16px;
}
.Provider_was .form-check-input {
    border-radius: 50px;
}
.filter_result_btn a {
    display: block;
    background: #1370F2;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}
.filter_result_btn {
    margin-top: 20px;
    margin-bottom: 20px;
}
.special_offer_heading h3 {
    font-size: 20px;
    color: #383C4E;
    margin-bottom: 20px;
    font-weight: bold;
}
.special_offer_heading {
    margin-top: 32px;
}
.speci_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone_left_hsd ul li {
    margin-right: 14px;
}
.phone_left_hsd ul {
    list-style: none;
}
.phone_left_hsd {
    padding-top: 21px;
    margin-left: 16px;
    margin-bottom: 26px;
}
.plansj_Kk ul li a {
    color: #666A80;
    font-weight: 600;
}
.chnage_ppt a {
    background: #f9f9f9;
    padding: 4px 16px;
    display: block;
    text-align: center;
    border: 1px solid #1370F2;
    border-radius: 6px;
    color: #1370F2;
}
.maikl_divt {
    padding-top: 28px;
    margin-bottom: 20px;
}
.tty_secty p {
    margin: 0px;
    padding-top: 6px;
    color: #666A80;
}
.xdtrp{
    width: auto;
}
.xdtrp {
    max-width: 100%;
    border: none !important;
    text-align: center;
}
.v-counter label {
    color: #1370F2;
    font-weight: 600;
    margin-right: 12px;
}
.show_price_heading .form-check-input{
float: right;
margin-right: 28px;
}
.show_price_heading .form-check-label{
    color: #383C4E;
    font-weight: 500;
}
.chnage_ppt a:hover {
    background-color: #e8f2ff;
}
.filter_result_btn a:hover {
    background: #1050a9;
}
.select_btny a:hover {
    background: #1050a9;
}
.internet_speed_test {
    background: #1A1C32;
    padding: 40px;
}
.heading_interner_srd{
    margin-bottom: 46px;
    text-align: center;
}
.heading_interner_srd h2{
color: #fff;
}
.heading_interner_srd p{
    color: #fff;
    }
.download_speed_sert {
    background: #23264a;
    padding: 32px;
    border-radius: 10px;
    margin-bottom: 12px;
}
.down_scad p {
    color: #95A6FF;
    font-size: 16px;
    margin: 0;
}
.down_scad i {
    font-size: 19px;
    margin-right: 7px;
}
.ms_heading {
    float: right;
    margin-top: -22px;
}
.ms_heading span {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}
.get_headingt h3 {
    font-size: 19px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 12px;
}
.play_s_img {
    margin-bottom: 8px;
}
.procider_user p {
    color: #95A6FF;
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 2px;
}

.procider_user {
    padding-left: 12px;
    margin-top: 20px;
}
p.suouh_pt {
    font-weight: normal !important;
    color: #fff;
}
.procider_user i {
    margin-right: 10px;
}

.speedbox {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 20px auto;
    border-radius: 50%;
    background: conic-gradient(
      #007bff 0%,
      #007bff 33%,
      #ffc107 33%,
      #ffc107 66%,
      #28a745 66%,
      #28a745 100%
    );
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .speedbox__inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .speedbox__score {
    font-size: 36px;
    font-weight: bold;
    color: #fff;
  }
  .speedbox__unit {
    font-size: 18px;
    color: #fff;
  }

  
/* checkbox css */
.form-check-input:checked {
    background-color: #0d6efd;
    border: 0;
  }
  
  .form-check-input:focus,
  .label::after,
  label.form-check-label:focus,
  .form-check-input::after,
  .form-check-input:not(:disabled):not(.disabled):active:focus {
    color: #0d6efd;
    outline: 0;
    border: 0;
    box-shadow: 0 0 0 0.1rem #0d6efd;
  }
  
  
  .store_details p {
    margin: 0px;
    font-size: 13px;
    line-height: 23px;
  }
  
  /* nav.tp-main-menu-content ul {
      display: flex;
      justify-content: space-between;
      width: 100%;
      align-items: center;
  } */
  .rtb {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
  
  .mobile_search input {
    padding-left: 10px;
    padding-right: 15px;
    width: 100%;
    height: 46px;
    background-color: #F3F8FF;
    color: var(--tp-common-black);
    border: 0;
    border-radius: 8px;
    border: 1px solid #001BAA;
  }
  
  .mobile_search {
    margin-top: 12px;
  }
  
  .oper_user_mobile ul {
    display: flex;
    list-style: none;
  }
  
  .oper_user_mobile {
    display: flex;
    background: #D2E5FF;
    padding: 14px;
    border-radius: 10px;
    overflow-y: hidden;
    overflow-x: scroll;
    /* height: 66px; */
  }
  
  .oper_user_mobile ul li {
    margin-right: 10px;
    padding: 4px 18px;
    border: 1px solid #036CFF;
    margin-bottom: 35px;
    line-height: 20px;
    border-radius: 50px;
    margin-bottom: 0px;
    color: #000;
    font-size: 14px;
    background: #fff;
    min-width: max-content;
  }
  
   .custom-table {
              width: 100%;
              border-collapse: collapse;
          }
          .custom-table thead {
              background-color: #f2f2f2;
          }
          .custom-table th, .custom-table td {
            border: none;
            text-align: center;
            padding: 16px;
            color: #fff;
            font-weight: 500;
          }
          .custom-table th {
              color: white;
          }
          /* .custom-table tr:nth-child(even) {
              background-color: #f9f9f9;
          } */
          .custom-table a {
              color: #1a73e8;
              text-decoration: none;
          }
          .custom-table a:hover {
              text-decoration: underline;
          }
          .provclass{
              background-color: #0D1E36;
          }
          .mothlyclass{
            background-color: #2B3749 !important;
          }
            .downloadclass{
            background-color: #3E577A;
          }
          
          td.xnamer {
            font-size: 23px;
            font-weight: 500;
        }
        
        .select_btny a:hover{
          text-decoration: none;
        }
        .amni_homein{
          background-position: center;
          background-repeat: no-repeat;
          background-size: cover;
          padding-bottom: 100px;
          padding-top: 40px;
        }
        .edit_srty p {
          font-size: 16px;
          color: #0a4bc7;
          font-weight: 500;
      }
      .edit_srty a{
        text-decoration: none;
      }
      section.home_inter_ty {
        padding-top: 70px;
        margin-bottom: 70px;
    }
    .our_techg_section{
      font-weight: bold;
      color: #079F16;
    }
    .cardf_internet_technolo {
      box-shadow: 0 3px 6px rgb(0 0 0 / 8%), 0 3px 6px rgb(0 0 0 / 8%);
      padding: 30px;
      border-radius: 10px;
      margin-bottom: 28px;
      transition: all 1s;
  }
  .sjun {
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .hm_heaindf h3 {
    color: #383C4E;
    font-size: 24px;
    font-weight: bold;
  }
  .pro_srf p {
    margin: 0;
    color: #448CF2;
    font-weight: bold;
    font-size: 14px;
  }
  span.bgh_sedty {
    width: 20px;
    height: 20px;
    background: #E0FFE3;
    padding: 8px;
    border-radius: 50%;
  }
  .bgh_sedty {
    width: 30px;
    height: 30px;
    background: #E0FFE3;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #079F16;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .ss_icon_hd {
    display: flex;
    justify-content: space-between;
  }
  
  .bgh_sedtyred{
    width: 30px;
    height: 30px;
    background: #FFE4E4;
    border-radius: 50%;
    text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    color: #9E0303;
    flex-shrink: 0;
    margin-right: 12px;
  }
  .dsl_sectgionyt {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: center;
  }
  .wbf_jio {
    margin-bottom: 58px;
  }
  .internet_providers_section {
    background: #E8F3FF;
    padding: 58px;
  }
  .icon_nvmp img {
    width: 70px;
    height: 70px;
    text-align: center;
    object-fit: cover;
  }
  .icon_nv_heading h2 {
    color: #033C8C;
    font-size: 18px;
  }
  .icon_nvmp {
    margin-bottom: 20px;
  }
  .fl_cgh {
    padding: 20px 40px;
    background: #fff;
    width: 230px;
    border-radius: 16px;
    margin-bottom: 20px;
  }
  .fastest_speeds {
    padding: 50px;
    margin-top: 70px;
    background: #e8f3ff;
  }
  .inter_card_icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  .best_inter_card {
    text-align: center;
    margin-bottom: 20px;
  }
  .inter_card_icon {
    margin-bottom: 20px;
  }
  .test_heding h3 {
    color: #033C8C;
    font-size: 20px;
  }
  .best_inter_card {
    padding: 28px;
    background: #fff;
    border-radius: 20px;
  }
  .test_heding a {
    color: #1370F2;
    font-weight: 500;
    font-size: 15px;
  }
  .test_heding i {
    position: relative;
    top: 1px;
    left: 10px;
  }
  .cardf_internet_technolo:hover {
    background: #F2FAFF;
    box-shadow: none !important;
  }
  .shopping_heading_text {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 60px;
}
.shopping_heading_text h3 {
    color: #131626;
    font-size: 38px;
    font-weight: bold;
}
.tp-cart-list table {
    border: 1px solid #ddd;
    border-radius: 0px;
}
.jon_section {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 12px;

}   
.jn_user i {
    font-size: 18px;
    color: #565656;
}
.jn_heading p {
    margin: 0;
    font-size: 14px;
    color: #222;
}
.jn_heading {
    padding-left: 14px;
}
.customer_info h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
    margin-top: 14px;
}
.status_section span {
    font-size: 15px;
    margin-right: 22px;
    color: #222;
    font-weight: bold;
    margin-top: 15px;
}
.check_secty{
margin-top: 30px;
margin-bottom: 20px;
}
.flc_timeselect {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
  }
  .time_selectr {
    margin-right: 12px;
}
.contiune_btny button{
    border: 1px solid #1370F2;
    padding: 8px 60px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 600;
    background: #1370F2;
}


.pass_word_fg {
    position: absolute;
    right: 15px;
    z-index: 1;
    top: 15px;
    cursor: pointer;
}

/* as */
.added-msg{
    background: #1370F2;
    padding: 10px 22px;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
}
.fg_price p {
    margin: 0;
}
.tp-cart-list .table> :not(caption)>*>* {
    padding: 20px 30px 20px 10px !important;
}
.tp-cart-list tr td .tp-cart-action-btn {
    width: 50px;
    height: 50px;
    background: #ffe1e1;
    padding: 10px 12px;
    border-radius: 50%;
}
td.tp-cart-action i {
    color: #c70101;
}
.empty_btny a {
    padding: 0px 20px;
    font-size: 13px;
    border-radius: 50px !important;
}
.empty_btny {
    margin-bottom: 18px;
    float: right;
}

.greybox {
    margin-bottom: 40px;
    border: 1px solid #ddd;
    padding: 20px;
    position: relative;
    border-radius: 5px;
}
.greybox h2 {
    font-size: 18px;
    margin-bottom: 14px;
}
.couponcodeBox button {
    position: absolute;
    height: 43px;
    right: 21px;
    background: #232222;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 10px;
    border-radius: 0;
    min-width: 100px;
    top: 56px;
}

p.as_tht {
    font-weight: bold;
    color: #28a745 !important;
    margin: 0;
    padding-top: 5px;
    padding-left: 2px;
}
/* new */
.tp-order-details-icon svg {
    width: 60px;
    height: 60px;
}
section.tp-order-area {
    margin-bottom: 40px;
    margin-top: 40px;
    padding: 40px;
}
.tp-order-details {
    margin-bottom: 60px;
    margin-top: 60px;
}
.back_to_home_button a {
    display: block;
    background: #1370f2;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: 16px;
}
.back_to_home a{
    display: block;
    background: #ffffff;
    padding: 10px;
    border-radius: 50px;
    text-align: center;
    width: 170px;
    margin-left: auto;
    margin-right: auto;
    color: #1370f2;
    font-size: 16px;
}
span#coupoError {
    color: #eb0000;
}
#coupoSuccess{
    color: #00B44A;
}

/* blog start */

.blog_start {
    margin-bottom: 68px;
}
.how_sty h2 {
    font-size: 28px;
    font-weight: bold;
}
.rrending-_yt h2 {
    font-size: 20px;
    font-weight: bold;
}
.caerdt_category_section h3 {
    color: #1370F2;
    font-size: 18px;
}
.rrending-_yt {
    margin-bottom: 28px;
}
.caerdt_category_section p {
    color: #131626;
    font-weight: bold;
    font-size: 16px;
}
.caerdt_category_section {
    margin-bottom: 20px;
}
.articalxx_img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.provider_selecrtx select {
    border: 1px solid #afafaf;
    background: #fff;
    padding: 8px 22px;
    color: #A8ACBF;
    font-weight: 500;
    font-size: 14px;
    border-radius: 10px;
    width: 100%;
}
.provider_selecrtx {
    margin-right: 12px;
}
.input_from_section {
    margin-bottom: 16px;
}
.selecty_blog{
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 6%), 0 2px 10px rgb(0 0 0 / 0%);
}
.input_from_section input {
    border-radius: 10px;
}
.srfty{
    margin: 0px !important;
}
.srfty {
    margin: 0px !important;
    margin-bottom: 40px !important;
}
.tp-postbox-details-thumb img {
    width: 100%;
}
.tp-postbox-details-comment-thumb img{
    object-fit: cover;
}

.tp-postbox-details-title {
    font-size: 38px !important;
}
.tp-postbox-details-heading {
    font-size: 22px !important;
}
.video_list-section {
    background: #f5f5f5;
    padding-top: 70px;
}
.video_spd {
    background: #f7f7f7;
    padding: 60px;
    margin-bottom: 70px;
    border-radius: 20px;
    position: relative;
}
.video_img video{
    border-radius: 10px;
    object-fit: cover;
    position: relative;
    z-index: 9;
}
.tur_heading h2 {
    font-size: 32px;
    color: #131626;
}
.pdf_sectionm {
    height: 388px;
    width: 300px;
    background: #448CF2;
    position: absolute;
    right: 0;
    border-radius: 0px 20px 20px 0px;
    top: 0;
}
.video_play_img img {
    width: 60px;
    height: 60px;
    text-align: center;
   
}
.video_play_img {
    position: absolute;
    z-index: 9;
    text-align: center;
    left: 0;
    top: 25%;
    right: 0;
}

.top-navbar {
    width: 100%;
    background-color: #011B40;
    color: white;
    padding: 10px 0;
    top: 0;
    left: 0;
    z-index: 1000;
}

.scrolling-text-container {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}

.scrolling-text {
    display: inline-block;
    animation: scroll-left 20s linear infinite;
}

.scrolling-text:hover {
    animation-play-state: paused;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.scrolling-link {
    display: inline-block;
    padding-right: 50px; /* Adjust spacing between links as needed */
    color: white; /* Link color */
    text-decoration: none; /* Remove underline */
}

.scrolling-link:hover {
    text-decoration: none; /* Underline on hover */
}