
/*...New Design Starts From Here...*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bri-nile-background: #1a3a54;
    --bri-nile-front: #1a3a54;
    --bri-orange-background: #f37067;
    --bri-orange-front: #f37067;
    --bri-pink-background: #facacb;
    --bri-pink-front: #facacb;
    --bri-blue-background: #8ad4df;
    --bri-blue-front: #8ad4df;
    --bri-gray-background: #bcbcbc;
    --bri-gray-front: #bcbcbc;
    --bri-gray-background-2: #f1f1f1;
    --bri-gray-front-2: #f1f1f1;
    --main-back-color: #e8e8e8;
    --bri-fa-color: #014c5f;
    --bri-se-color: #187388;
    --bri-th-color: #229399;
    --bri-fo-color: #1880a2;
    --white-color: rgba(255, 255, 255, 0.8);
    --gray-color: #898989;
    --black-color: rgb(0, 0, 0);
    --theme-white: #ccd3d9;
    --theme-color: #1a3954;
    --theme-orange: #fb7067;
    --white: #fff;
    --brilliant: #1a3954;
    --red: #fb7066;
    --blue: #87d7e2;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-style: normal;
    height: auto;
    width: 100%;
    margin: 0 auto;
    border-radius: 2px;
}
/*ol, ul{
    padding-left: 0px !important;
}*/
.login-content {
    padding: 1rem 1rem;
    background: #f1f1f1;
    border-radius: 10px;
    height: auto;
    border: 1px solid #bcbcbc;
    width: 600px;
    height: auto;
    box-shadow: #bcbcbc 1px 1px 10px 1px;
}
.content-title-login {
    font-size: 20px;
    text-align: center;
    color: #f37067;
    font-weight: 500;
    /* text-decoration: underline; */
    background-color: white;
    border: 1px solid #bcbcbc;
    border-radius: 5px;
    padding: 8px 0px;
}
.login-body {
    background-color: white;
    padding: 20px;
    border: 1px solid #bcbcbc;
    border-radius: 5px;
}
.login-btn {
    background-color: #f37067;
    color: white;
    font-weight: 600;
    border: 1px solid #f37067;
    border-radius: 5px;
    cursor: pointer;
    padding: 7px;
    font-size: 15px;
    width: 100%;
}
.login-info {
    font-size: 16px;
    font-weight: 500;
    color: #1a3a54;
    display: block;
}

.main-layout {
    display: flex;
    justify-content: space-around;
}

/*...SideBar Starts From Here...*/

.sidebar {
    height: 100vh;
    width: 15%;
    left: 0;
    background-color: var(--bri-nile-background);
    padding-top: 20px;
    overflow-y: auto;
}

.header-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

/* .logo {
    display: inline-block;
    background-repeat: no-repeat;
} */

.logo img {
    height: 105px;
}

.sidebar-menu {
    list-style-type: none;
    margin-top: 3rem;
}

.sidbar-link {
    color: #1a3a54;
    text-decoration: none;
    padding: 5px 10px;
}

.sidebar-menu li a {
    color: #bcbcbc;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

    .sidebar-menu li a img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .sidebar-menu li a i {
        margin-right: 10px;
    }

.submenu-items {
    display: none;
    position: absolute;
    background-color: #444;
    z-index: 1;
}

    .submenu-items li {
        display: block;
    }

        .submenu-items li a {
            color: #fff;
            padding: 10px 15px;
            text-decoration: none;
        }

/* Show submenu on hover */
.submenu:hover .submenu-items {
    display: block;
}

/*...SideBar Ends Here...*/


.content {
    width: 85%;
    height: 100vh;
    border-left: 15px solid #bcbcbc;
}



/*...Header Design Starts From Here...*/

.header {
    background-color: var(--bri-gray-background);
    color: #fff;
    padding: 30px 30px 30px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.resHeader{
    display: none;
}
.dashboard-title {
    font-size: 20px;
    color: #1a3a54;
}

    .dashboard-title a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #1a3a54;
        font-weight: 700;
    }

        .dashboard-title a:hover {
            color: #1a3a54;
            text-decoration: none;
        }

.dashboard-icon img {
    height: 30px;
    margin-right: 5px;
}

.header-menu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-right: 3rem;
}

ul {
    margin: 0px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
 
    nav ul li {
        display: inline-block;
    }

        nav ul li a:hover {
            color: #f37067;
            text-decoration: none;
        }

.menu li {
    list-style-type: none;
}

    .menu li img {
        height: 30px;
    }
    .menu li .fa{
        font-size: 30px !important;
    }

.menu .sidbar-link {
    color: #1a3a54;
    font-size: 16px;
    font-weight: 400;
}

    .menu .sidbar-link:hover {
        color: #1a3a54;
        text-decoration: none;
    }

.float-right {
    margin-left: auto;
}

.arrow-hidden {
    display: none;
}

.submenu {
    display: none;
    list-style-type: none;
    padding-left: 50px;
}

    .submenu li {
        /* display: block; */
        /* margin-bottom: 5px; */
    }

        .submenu li a {
            padding: 0px;
            text-decoration: none;
            font-size: 15px;
            padding: 3px;
        }

    /* Show submenu on hover */
    .submenu:hover .submenu {
        display: block;
    }

.show {
    display: block !important;
    /* Or any other styling to make the element visible */
}

/* Dropdown styling */
.dropdown-menu {
    display: none;
    position: absolute;
    /* background-color: var(--bri-blue-background); */
    /* z-index: 1; */
    box-shadow: inset;
    /*padding: 0px;*/
}

.header-balance-menu {
    padding: 0px;
    border: none;
    background: #fff;
    z-index: 99999;
    width: 180px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.dropdown-menu li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* display: block; */
    padding: 0.2rem 0.4rem;
    color: red  ;
}

    .dropdown-menu li:hover {
        background-color: #bcbcbc;
    }

    .dropdown-menu li span {
        color: var(--bri-nile-background);
        /* padding: 10px 15px; */
        text-decoration: none;
        margin-right: 7px;
        /* background-color: var(--bri-gray-background); */
    }

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


/*...Header Design Ends Here...*/


/*...Help Section Design Starts From Here...*/
#help-sidebar {
    position: fixed;
    right: -250px; /* Initially hidden */
    width: 250px;
    height: 100%;
    background-color: var(--bri-gray-background-2);
    transition: right 0.3s ease-in-out; /* Transition effect */
    position: fixed;
    top: 200px;
    right: -300px;
    width: 300px;
    height: 60%;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 2rem 1rem;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    border-top-right-radius: none;
}

#help-toggleButton {
    position: fixed;
    top: 150px;
    right: -1px;
    z-index: 9999;
    padding: 4px 15px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    border: none;
    background-color: var(--bri-nile-background);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

#help-sidebar nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
}


    #help-sidebar nav ul ul {
        display: flex;
        flex-direction: column;
    }

    #help-sidebar nav ul .mainItem {
        padding: 5px;
        border-bottom: 1px solid #bcbcbc;
        display: ruby-text;
    }

        #help-sidebar nav ul .mainItem:hover {
            background-color: #ddd;
        }
        #help-sidebar nav .subItem{
            color: #f37067;
        }

        #help-sidebar nav ul ul {
            display: none;
        }

    #help-sidebar nav ul a {
        color: #1a3a54;
        font-size: 18px;
        text-decoration: none;
    }

.collapsible {
    background-color: #f1f1f1;
    color: var(--bri-nile-front);
    cursor: pointer;
    padding: 6px 1rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    position: relative;
    border-bottom: 2px solid var(--bri-gray-background);
    font-weight: 500;
}

.main-content {
    /* width: 85%; */
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 3rem 5rem 0rem 5rem;
    padding: 25px;
    height: 75%;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    display: block;
    overflow-y: scroll;
    /* margin-top: 3rem;
      margin-left: 2rem; */
}

.main-content-body {
    margin: 0px auto;
    /* background-color: var(--bri-gray-background-2); */
    /* margin: 3rem 3rem 0rem 3rem; */
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 5px; */
    background-color: #fcfcfc;
    border: 2px solid white;
    padding: 15px;
    height: 75%;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    overflow-y: scroll;
}


.intercloud-logo {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .intercloud-logo img {
        height: 200px;
    }

.title > h3 {
    text-align: center;
    font-weight: 400;
    color: #1a3a54;
}

.user {
    font-weight: 600;
}

.user-name {
    color: #1a3a54;
    font-size: 18px;
    font-weight: 500;
    padding: 5px;
}

.learnMore {
    display: flex;
    align-items: center;
    justify-content: center;
}

.learnMore-btn {
    background-color: #f37067 !important;
    background: 100%;
    width: 60%;
    text-align: center;
    height: 30px;
    color: #f1f1f1;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
}

    .learnMore-btn:hover {
        color: #1a3a54;
        border: 1px solid #1a3a54;
        cursor: pointer;
    }

    .learnMore-btn:focus {
        outline: none;
    }

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

    .banner img {
        height: 175px;
        /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    }

.icons {
    width: 25px;
    height: 25px;
    margin: 0px 0px;
    cursor: pointer;
}

.setting {
    margin-top: 60px;
}

/* Body with NavBar Ends Here */




/* img{
    height: 225px;
    width: 225px;
} */

/* Account Statement Start From Here */
.row {
    align-items: center;
    justify-content: center;
}

.table {
    margin-bottom: none;
    /* padding: 20px; */
    font-family: emoji;
}
table th {
    text-align: center;
    /*cursor: pointer;*/
}

table td {
    text-align: center;
    /*cursor: pointer;*/
}

    /* .table-m{
    display: block;
    overflow-y: scroll;
    height: 75%;
} */
    /* .table-money{
    display: block;
    overflow-y: scroll;
    height: 75%;
} */

    .table td,
    .table th {
        border-top: none !important;
        border-bottom: 1px solid #bcbcbc;
    }

    .table td {
        /* border-bottom: 1px solid #bcbcbc;
    border-top: no !important; */
    }

    .table thead th {
        border-bottom: 2px solid #bcbcbc !important;
    }



.search {
    /* padding: 30px; */
    /* margin: 0px 30px; */
    margin-bottom: 30px;
    /* margin-top: 20px; */
    padding: 0px 50px;
}

.lable {
    font-size: 14px;
    /* text-align: right; */
    color: #f37067;
    margin-top: 8px;
    margin-bottom: none !important;
    /* border-left: 1px solid #1a3a54; */
}

    .lable h2 {
        font-size: 15px;
        /* text-align: right; */
        text-align: center;
    }

#scontentname.form-control {
    height: 30px;
    /* width: 250px; */
    /* padding-left: 0px; */
}
/*.form-control:disabled*/.sms-form > .form-control[readonly]{
    height: 110px;
    background-color: white;
}
textarea.form-control[readonly] {
    height: 110px;
    background-color: white;
}
.form-control[readonly] {
    background-color: white;
}
.form-control:disabled {
    background-color: white;
}
input[type=date] {
    font-size: 14px;
    /* color: #f37067; */
}
.form-control:focus{
    box-shadow: inset 0 0 3px 2px #dedede;
}
input[type="date"]::-webkit-calender-picker-indicator {
    opacity: 0%;
}

.date-input {
    padding-left: 0px;
    padding-right: 0px;
}

.button-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.button {
    display: flex;
    justify-content: center;
}

/* .apply-btn {
    background-color: #f37067 !important;
    background: 100%;
    width: 100%;
    text-align: center;
    color: #f1f1f1;
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
} */

/* Account Statement Ends From Here */

/* Invoice List Start From Here */
.file-pdf {
    height: 25px;
}

/* SMS Packages */
.main {
    height: 82vh;
    background: var(--main-back-color);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 2rem;
    overflow: auto;
}
.content-buy {
    /*padding: 2rem 4rem;*/
    background: var(--white-color);
    border-radius: 5px;
    height: auto;
    width: 430px;
}
.content-title {
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--theme-color);
    font-size: 25px;
    margin-bottom: 2rem;
}
label {
    display: inline-block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--gray-color);
    font-size: 14px;
}
.tabs.cam-pay-active a {
    background-color: #87d7e2;
    color: #1a3954;
    font-size: 14px;
    border: 1px solid;
    box-shadow: none;
}
.sms-package {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.sms-pkg, .ms-sms-pkg, .tr-sms-pkg {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ccc;
    font-weight: 500;
    /*border: 1px solid #d1d1d1;*/
    border-radius: 50%;
    margin: 15px 10px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
}
.active {
    /*background-color: #006f94;*/
    background-color: #87D7E2;
    color: #fff;
    font-size: 15px;
    border: 2px solid white;
}

    .bDeactive {
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
        background-color: ghostwhite;
        color: #cecece;
        /* border-style: solid; */
        border-radius: unset;
        margin: 2px;
        /*color: #1A3954;*/
    }
.sms-pkg:hover {
    border: 2px solid white;
    background-color: #f1f1f1;
    color: white;
}
.ms-sms-pkg:hover {
    border: 2px solid white;
    background-color: #f1f1f1;
    color: white;
}
.tr-sms-pkg:hover {
    border: 2px solid white;
    background-color: #f1f1f1;
    color: white;
}
.rs-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    text-transform: capitalize;
    border: 1px solid #797979;
    font-size: 14px;
    color: var(--white-color);
    background-color: var(--theme-orange);
    /* border-radius: 7px; */
    padding: 5px 2rem;
    /* margin: 2rem auto; */
    /*max-width: 150px;*/
    text-align: center;
    transition: color 0.3s ease-in-out;
    cursor: pointer;
    margin-bottom: 2rem;
    /*margin-top: 1rem;*/
}
/* Make Payment Starts From Here */
.form-check-input {
    height: 20px;
    width: 20px;
    margin-top: 0px !important;
}

.payment-container {
    display: flex;
}

.container-fluid {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

.main-content-payment {
    width: 80%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 3rem 3rem 0rem 1rem;
    padding: 20px;
    height: 400px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    display: block;
    overflow-y: scroll;
    /* margin-top: 3rem;
    margin-left: 2rem; */
}

.side-content {
    width: 20%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 3rem 1rem 0rem 0rem;
    padding: 15px;
    height: auto;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}

.Title {
    text-align: center;
    font-size: 16px;
    font-family: emoji;
    font-weight: 500;
    color: #1a3a54;
}

.Title-2 {
    text-align: center;
    font-size: 18px;
    font-family: emoji;
    font-weight: 700;
    color: #1a3a54;
}

.button {
    background-color: #f37067 !important;
    background: 100%;
    width: 100%;
    text-align: center;
    /* height: 30px; */
    padding: 3px;
    color: #f1f1f1;
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
}

    /* .button:focus{
    background-color: #1a3a54 !important;
} */
    .button:focus {
        outline: 0 !important;
    }

    .button:hover {
        border: 1px solid #1a3a54;
        opacity: 90%;
        color: #1a3a54;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

.footer {
    width: 60%;
    margin: 0px auto;
    margin-top: 25px;
    padding: 20px;
    /* height: auto;
    overflow: hidden;
    text-align: right; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method {
    height: 60px;
}

/* Payment History */

.underline {
    border: 1px solid #f37067;
    margin-bottom: 20px;
}


/* Contact Us Start From Here */
.contact_Details {
    padding: 20px 50px;
    color: #1a3a54;
    font-weight: 500;
}

.upload-number {
    text-align: center;
    border: 3px dashed var(--bri-gray-background);
    padding: 1rem 0rem;
    width: 500px;
    background-color: #fff;
}

/* .upload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
} */

#Upload-Number {
    display: none;
}

.attach-file {
    border: 1px dashed #1a3a54;
    border-radius: 3px;
    display: inline-block;
    padding: 1px 10px;
    background: #fff;
}

    .attach-file label {
        color: #1a3a54;
        font-weight: 500;
        border: none;
    }

.choose-a-file {
    border-bottom: 1px solid;
    color: #f37067;
    font-weight: 100;
    margin-bottom: 0px;
    cursor: pointer;
}

/* Setting Start From Here */

.setting-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a3a54;
    margin-bottom: 20px;
    text-align: center;
}

.setting-value {
    margin: 0px 10px;
    font-size: 15px;
    color: #1a3a54;
    font-weight: 500;
    margin-top: 2px;
}

.password {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #1a3a54;
}

#setting_form.form-control {
    height: 35px;
}

.setting-btn {
    background-color: #1a3a54 !important;
    background: 100%;
    width: 100%;
    text-align: center;
    padding: 5px;
    color: #f1f1f1;
    border: none;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 3px;
    margin-top: 30px;
}

    .setting-btn:focus {
        outline: 0 !important;
    }

    .setting-btn:hover {
        border: 1px solid #f37067;
        /* opacity: 95%; */
        color: #f37067;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

.pass-title {
    width: 100px;
    display: block;
    height: 35px;
}

/* ::-webkit-input-placeholder {
    text-align: center;
  } */

.save-btn {
    background-color: #f37067 !important;
    background: 100%;
    text-align: center;
    padding: 3px 15px;
    color: #f1f1f1;
    border: none;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin-left: 10px;
    cursor: pointer;
}

    .save-btn:focus {
        outline: 0 !important;
    }

    .save-btn:hover {
        border: 1px solid #1a3a54;
        opacity: 90%;
        color: #1a3a54;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }

/* Payment Method Starts From Here */

.main-content-paymentMethod {
    width: 100%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 3rem 3rem 0rem 3rem;
    padding: 50px;
    height: 450px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}

.payment-title {
    font-size: 22px;
    color: #1a3a54;
    font-weight: 700;
    display: flex;
    justify-content: center;
}

.payment-amount {
    font-size: 16px;
    color: #1a3a54;
    font-weight: 700;
}

.amount {
    font-size: 16px;
    color: #1a3a54;
    font-weight: 600;
    font-family: emoji;
}

.payment-btn {
    border: none;
}

    .payment-btn:hover {
        cursor: pointer;
    }

    .payment-btn:focus {
        outline: none;
    }

.payment-method {
    display: flex;
    justify-content: center;
    /* margin-top: 30px; */
}

    .payment-method img {
        height: 80px;
        width: 100%;
    }




.hide {
    display: none;
}

.show {
    display: block;
}

.edit-btn {
    border: none;
    outline: none;
}

    .edit-btn:focus {
        outline: none;
    }

input#textInput1,
#textInput2,
#textInput3 {
    border-radius: 0px;
    border: none;
    background-color: #f1f1f1;
    border-bottom: 1px solid #1a3a54;
    width: 150px;
}

input#textInput:focus {
    outline: none;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    color: rgba(0, 0, 0, 0);
    opacity: 1;
    background-image: url("../calendar.svg");
    background-repeat: no-repeat;
    background-position: 100% center;
    background-size: 15px;
    cursor: pointer;
}

/*...Home page's design starts from here...*/
.mainContent-home {
    margin: 7% auto;
}

/* .banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
} */
/* .banner img {
    height: 225px;
} */
.steps {
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.step {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    align-items: center;
    width: auto;
}

.step-img {
    height: 100%;
    width: 100%;
}

.step img.step-icon {
    height: 25px;
    width: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*...New Content Page's starts from here...*/

.mainContent-newContent {
    width: 80%;
    margin: 4rem auto;
    background-color: var(--bri-gray-background-2);
    /*margin: 55px;*/
    padding: 3% 5%;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #bcbcbc;
}
.mainContent-prepaidPayment {
    width: 70%;
    background-color: var(--bri-gray-background-2);
    margin: 55px auto;
    /*padding: 3% 5%;*/
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #bcbcbc;
}

.generate-btn {
    background-color: #f37067;
    color: white;
    font-weight: 600;
    border: 1px solid #f37067;
    cursor: pointer;
    padding: 7px;
    font-size: 15px;
    width: 100%;
}

    .generate-btn:hover {
        opacity: 90%;
        color: #1a3a54;
        box-shadow: 1px 1px 5px grey;
        border: 1px solid #1a3a54;
    }

.validation-btn {
    background-color: #f37067;
    color: white;
    font-weight: 600;
    border: 1px solid #f37067;
    cursor: pointer;
    padding: 7px;
    font-size: 13px;
    width: 100%;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
}

    .validation-btn:hover {
        /* opacity: 90%; */
        color: #1a3a54;
        box-shadow: 1px 1px 5px grey;
        border: 1px solid #1a3a54;
    }

.heading {
    color: #1a3a54;
    font-weight: 700;
}

/* .input-field::placeholder {
    color: #64c0bf;
} */
p {
    color: #f37067;
}

.link {
    font-size: 14px;
    font-weight: 600;
}

.list {
    color: #1a3a54;
}

.text-1 {
    color: #1a3a54;
}

.text-2 {
    color: #f37067;
}

.fa-copy {
    size: 15px;
}

select.form-select {
    background-image: url(./arrow-select.svg);
    background-repeat: no-repeat;
    background-position: right -0.1em top 50%, 0 0;
    background-size: 2.65em auto, 100%;
}

.select-container {
    display: flex;
    justify-content: center;
    position: relative;
    /* height: 50px; */
}

.icon-container2 {
    position: absolute;
    width: 200px;
    height: 100%;
    right: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../assets_landing/images/NewDesign/copy-clipe-board.svg');
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.copyLink {
    color: #f1f1f1;
}

/*...Previous Content Page's Starts From Here...*/
.mainContent-PreviousContent {
    width: 70%;
    margin: 55px auto;
    background-color: var(--bri-gray-background-2);
    /*margin: 55px;*/
    /*padding: 2% 1%;*/
    height: auto;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.title-main {
    /* border: 1px solid #bcbcbc; */
    padding: 10px;
    background-color: #F37067;
    color: #1a3a54;
    font-size: 22px;
    text-align: center;
    font-weight: 600;
    margin-top: 25px;
    box-shadow: inset 0 0 5px 0px #1a3a54;
}
.approvedBtn {
    width: 110px;
    padding: 5px;
    background-color: #1a3a54;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    color: var(--bri-gray-background-2);
    font-weight: 500;
    font-size: 16px;
}

    .approvedBtn:hover {
        border: 1px solid #f37067;
        color: #f37067;
        cursor: pointer;
    }

.rejectedBtn {
    width: 110px;
    padding: 5px;
    background-color: #f37067;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    color: var(--bri-gray-background-2);
    font-weight: 500;
    font-size: 16px;
}

    .rejectedBtn:hover {
        border: 1px solid #1a3a54;
        color: #1a3a54;
        cursor: pointer;
    }

.deleteBtn2 {
    border: none;
    border: 1px solid #f37067;
    border-radius: 3px;
    background-color: #f37067;
    height: 100%;
    width: 100%;
}

    .deleteBtn2:hover {
        cursor: pointer;
        border: 1px solid #f37067;
        background-color: #dedede;
    }
    .deleteBtn2 img{
        height: 30px;
        width: 40px;
    }
    /*...Non Masking page's design starts from here...*/
    .mainContent-nonMasking {
        width: 70%;
        margin: 55px auto;
        background-color: var(--bri-gray-background-2);
        padding: 3% 5%;
        height: auto;
        border: 1px solid #bcbcbc;
        border-radius: 10px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }



/* ... page's design starts from here... */
.mainContent-Masking {
    width: 76%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 55px;
    padding: 3% 5%;
    height: auto;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ...Target page's design starts from here... */
/* .container{
    max-width: 900px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 50px;
    max-height: auto;
} */
/* .dropDown-btn{
    background-color: #1a3a54;
    color: white;
    font-weight: 400;
    border: #1a3a54;
    cursor: pointer;
    padding: 2px;
    font-size: 22px;
    margin-top: 9px;
    margin-right: 5px;
    color: #f37067;
} */
/* .dropDown-btn:hover{
    color: white;
    opacity: 90%;
    box-shadow: 1px 1px 5px grey;
    border: 1px solid white;
} */
.mainContent-target {
    width: 75%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 55PX;
    padding: 3% 5%;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border: 1px solid #bcbcbc;
}

.send-btn {
    background-color: #f37067;
    /* background: 100%;  */
    width: 100%;
    color: white;
    font-weight: 600;
    border: 1px solid white;
    border-radius: 5px;
    cursor: pointer;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
}

    .send-btn:hover {
        opacity: 90%;
        color: #1a3a54;
        box-shadow: 1px 1px 5px grey;
        border: 1px solid #1a3a54;
    }

.heading {
    color: #1a3a54;
    font-weight: 700;
}

.heading-a {
    color: #1a3a54;
    font-weight: 700;
    font-size: 13px;
}

p {
    color: #f37067;
    font-size: 15px;
}

.select-container {
    display: flex;
    justify-content: center;
    position: relative;
     height: 37px; 
}

.icon-container {
    position: absolute;
    width: 42px;
    height: 100%;
    background-color: #1a3a54;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url(./calendar.svg); */
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.calender {
    background: url('../assets_landing/images/NewDesign/calendar.svg');
    height: 100%;
    width: 35px;
}

.select-box {
    border: none;
    appearance: none;
    /*padding: 0 30px 0 15px;*/
    font-size: 15px;
    color: grey;
    border: 1px solid #ced4da;
}

select.form-select {
    background: url('../assets_landing/images/NewDesign/arrow-select.svg');
    background-repeat: no-repeat;
    background-position: right -0.1em top 50%, 0 0;
    background-size: 42px auto, 100%;
    background-color: white;
}

input.form-select {
    background-image: url(./arrow-select.svg);
    background-repeat: no-repeat;
    background-position: right -0.1em top 50%, 0 0;
    background-size: 2.65em auto, 100%;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

/* Buy Page's Starts From Here */
.mainContent-Buy {
    width: 80%;
}

.main-content-buy {
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 55px 1rem 0rem 55px;
    padding: 2rem 2rem;
    height: auto;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
    border: 1px solid #bcbcbc;
}
.buy-pay ul{
    padding-left: 0px !important;
}
.sms-pkg-slogan-title {
    margin-bottom: 0rem;
    font-weight: bold;
    color: #f37067;
}

.sms-pkg-slogan {
    font-weight: 500;
    color: #1a3a54;
}

.buy-pay {
    background-color: var(--bri-gray-background-2);
    padding: 3rem 1rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 55px;
    /*margin-right: 1rem;*/
    height: 520px;
    border: 1px solid #bcbcbc;
}

    .buy-pay h4 {
        font-weight: bold;
        font-size: 18px;
        margin-top: 0.7rem;
        color: #1a3a54;
    }

    .buy-pay h5 {
        color: #f37067;
    }

    .buy-pay ul {
        margin: 0px;
    }

        .buy-pay ul li {
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid var(--bri-gray-background);
            margin-bottom: 1rem;
            font-weight: bold;
        }

    .buy-pay input.btn {
        width: 132px;
        display: block;
        text-align: center;
        margin: 20px auto;
        background-color: #f37067;
        color: white;
        font-weight: 600;
    }

.buy dl {
    list-style: none;
    margin-bottom: 20px;
}

.buy hr {
    border-bottom: 2px solid var(--bri-gray-background);
    margin: 0px;
    margin-top: 5px;
}

.buy dl li .circle-buy {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: self-end;
    justify-content: center;
    text-align: center;
    color: var(--bri-gray-front);
    font-weight: bold;
    box-shadow: #32325d40 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    cursor: pointer;
}

    .buy dl li .circle-buy.active {
        background: var(--bri-orange-background);
        color: var(--bri-gray-background-2);
    }

/* The container */
.input-container {
    position: relative;
    height: 55px;
    width: 55px;
    margin: 0.5rem;
    display: block;
    /* padding-left: 35px; */
    margin-bottom: 12px;
    cursor: pointer;
    /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-wrap: wrap; */
}

    /* Hide the browser's default radio button */
    .input-container input {
        position: absolute;
        height: 100%;
        width: 100%;
        margin: 0;
        cursor: pointer;
        z-index: 2;
        opacity: 0;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    /*left: 35;*/
    height: 55px;
    width: 55px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 2px solid #ffffff;
    border-radius: 50%;
    transition: all 30ms ease;
    color: #ccc;
    font-weight: bold;
    font-size: 15px;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
}

/* On mouse-over, add a grey background color */
.input-container:hover input ~ .checkmark {
    background-color: #dfdbdb;
    color: white;
}

/* When the radio button is checked, add a orange background */
.input-container input:checked ~ .checkmark {
    background-color: #f37067;
    border-color: #f37067;
    color: white;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.input-container input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
/* .container .checkmark:after {
          top: 9px;
          left: 9px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background: white;
      } */
.radio-circle-group1 {
    width: 30%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    /* justify-content: center; */
    /* height: 50px; */
    width: 180px;
}

.radio-circle-group2 {
    width: 70%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.non-masking-btn {
    position: relative;
    height: 15px;
    width: 15px;
    margin: 0.5rem;
    display: block;
    padding-left: 0px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-wrap: wrap;
    float: left;
}

.masking-btn {
    position: relative;
    height: 15px;
    width: 15px;
    margin: 0.5rem;
    display: block;
    padding-left: 0px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-wrap: wrap;
}

.target-btn {
    position: relative;
    height: 15px;
    width: 15px;
    margin: 0.5rem;
    display: block;
    padding-left: 0px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-wrap: wrap;
    float: left;
}

.non-masking-btn input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.masking-btn input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.target-btn input {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
    z-index: 2;
    opacity: 0;
}

.non-masking-inside {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid gray;
    border-radius: 50%;
    transition: all 30ms ease;
    color: #ccc;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
}

.masking-inside {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid gray;
    border-radius: 50%;
    transition: all 30ms ease;
    color: #ccc;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
}

.target-inside {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    font-size: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    border: 1px solid gray;
    border-radius: 50%;
    transition: all 30ms ease;
    color: #ccc;
    background-color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 8px;
}

.non-masking-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a3a54;
}

.masking-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a3a54;
}

.target-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 3px;
    color: #1a3a54;
}

/*.non-masking-btn:hover input ~ .non-masking-inside {
    background-color: #dfdbdb;
}

.masking-btn:hover input ~ .masking-inside {
    background-color: #dfdbdb;
}

.target-btn:hover input ~ .target-inside {
    background-color: #dfdbdb;
}
*/
.non-masking-btn input:checked ~ .non-masking-inside {
    background-color: #f37067;
    border: solid 0.5px gray;
}

.masking-btn input:checked ~ .masking-inside {
    background-color: #f37067;
    border: solid 0.5px gray;
}

.target-btn input:checked ~ .target-inside {
    background-color: #f37067;
    border: solid 0.5px gray;
}

.validity-text {
    color: #1a3a54;
    font-size: 15px;
}

.days-text {
    color: #f37067;
    font-size: 16px;
    font-weight: 600;
}

.some-text {
    color: #1a3a54;
    font-size: 15px;
}

.percentage {
    color: #f37067;
    font-size: 16px;
    font-weight: 600;
}

/*...Upload Number Page's Design Starts From Here...*/
.mainContent-uploadNumbers {
    width: 75%;
    margin: 0px auto;
    background-color: var(--bri-gray-background-2);
    margin: 55px;
    padding: 3rem 3rem;
    height: auto;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    overflow: hidden;
}

.upload-number {
    text-align: center;
    border: 3px dashed #bcbcbc;
    padding: 1rem 0rem;
    width: 500px;
    background-color: #fff;
    margin-bottom: 2rem;
}

    .upload-number h1 {
        color: #bcbcbc;
    }

.choose-a-file {
    border-bottom: 2px solid #f37067;
    color: #f37067;
    font-weight: 500;
    height: 24px;
}

.upload-number span {
    color: #bcbcbc;
    font-weight: 500;
}

.form-control {
    border: 1px solid #bcbcbc !important;
    color: gray;
}

.upload-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.UploadBtn {
    width: 150px;
    padding: 7px;
    background-color: #f37067;
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    color: var(--bri-gray-background-2);
    font-weight: 500;
    font-size: 18px;
}

    .UploadBtn:hover {
        border: 1px solid #1a3a54;
        color: #1a3a54;
        cursor: pointer;
    }

/*...Contact List Page's Design Starts From Here...*/
.mainContent-ContactList {
    width: 70%;
    /*margin: 0px auto;*/
    background-color: var(--bri-gray-background-2);
    margin: 55px auto;
    /*padding: 2% 1%;*/
    height: auto;
    border: 1px solid #bcbcbc;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact-list {
    height: 100%;
}

    .contact-list th {
        color: #1a3a54;
        font-size: 16px;
        font-weight: 700;
        border-bottom: 2px solid #bcbcbc;
        text-align: center;
        padding: 20px;
    }

    .contact-list tr td {
        color: gray;
        text-align: center;
        font-weight: 400;
        font-size: 16px;
        padding: 20px;
    }

.editBtn {
    border: none;
    color: #1a3a54;
    font-weight: 900;
    background-color: transparent;
}

.deleteBtn {
    border: none;
    color: #f37067;
    font-weight: 900;
    background-color: transparent;
}

/*...New Request Page's Starts From Here...*/
.mainContent-NewRequest {
    width: 70%;
    /*margin: 0px auto;*/
    background-color: var(--bri-gray-background-2);
    margin: 4% auto;
    padding: 4% 5%;
    height: auto;
    border: 1px solid #bcbcbc; 
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.attach-files {
    border: 1px dashed #1a3a54;
    border-radius: 3px;
    display: inline-block;
    padding: 5px 15px;
    background: #fff;
}

    .attach-files label {
        color: #1a3a54 !important;
        font-weight: 500;
        border: none;
    }

.icons {
    width: 25px;
    height: 25px;
    margin: 0px 0px;
    cursor: pointer;
}

#Upload-Number {
    display: none;
}

.choose-a-file {
    border-bottom: none;
    margin-bottom: 0px;
    cursor: pointer;
}
.download-link{
    color: red;
}
.notStartStatus {
    width: 110px;
    padding: 5px;
    background-color: #f37067;
    border: 1px solid #f1f1f1;
    /*border-radius: 5px;*/
    color: white;
    font-weight: 500;
    font-size: 16px;
}
.inPogressStatus {
    width: 110px;
    padding: 5px;
    background-color: #87d7e2;
    border: 1px solid #f1f1f1;
    /*border-radius: 5px;*/
    color: white;
    font-weight: 500;
    font-size: 16px;
}
.completeStatus {
    width: 110px;
    padding: 5px;
    background-color: #1a3a54;
    border: 1px solid #f1f1f1;
    /*border-radius: 5px;*/
    color: white;
    font-weight: 500;
    font-size: 16px;
}
.table-wrapper {
    overflow-y: auto;
    /*overflow-x: scroll;*/
    height: fit-content;
    height: 400px;
    margin-top: 10px;
    margin-bottom: 10px;
    /*margin: 15px;*/
    border: 2px solid #bcbcbc;
}
@media screen and (max-width: 1650px) {
    .sidebar {
        padding-top: 0px;
        width: 17%;
    }

    .logo img {
        height: 85px;
    }

    .sidebar-menu {
        margin-top: 20px;
    }

        .sidebar-menu li a {
            margin-bottom: 0px;
            font-size: 14px;
            padding: 10px;
        }

            .sidebar-menu li a img {
                width: 25px;
                height: 25px;
            }


    .header {
        padding: 25px 25px 25px 0px;
    }

    .dashboard-icon img {
        height: 25px;
    }

    .dashboard-title {
        font-size: 17px;
    }

    .user-name {
        font-size: 16px;
    }

    .menu li img {
        height: 25px;
    }

    .header-menu {
        margin-right: 1rem;
    }

    #help-toggleButton {
        top: 115px;
        font-size: 18px;
        padding: 2px 10px;
    }

    #help-sidebar {
        top: 170px;
        width: 215px;
        padding: 20px 10px;
    }

        #help-sidebar nav ul a {
            font-size: 16px;
        }
    .content{
        border-left: 10px solid #bcbcbc;
    }
    .title-main{
        font-size: 17px;
        padding: 8px;
    }
        table th{
            font-size: 14px !important;
        }
    table td {
        font-size: 13px !important;
    }
        /*...Home Page...*/
        .step-img {
            height: 90%;
            width: 90%;
        }
    .step img.step-icon{
        height: 20px;
        width: 20px;
    }
    .bulkTransfer{
        padding: 0.5rem 1rem 1.5rem !important;
    }
    textarea.form-control[readonly]{
        height: 90px;
    }
    .memberName{
        font-size: 15px !important;
        margin-top: 15px !important;
    }
    .table-wrapper{
        height: 300px !important;
    }
    /*...New Content...*/
    .mainContent-newContent {
        width: 75%;
        margin: 2rem auto;
        padding: 1% 4%;
    }
    .mainContent-prepaidPayment {
        width: 70%;
        margin: 40px auto;
        /*padding: 4%;*/
    }
    label{
        font-size: 13px;
    }
    .form-control{
        font-size: 13px;
    }
    .mt-3{
        margin-top: 0.5rem !important;
    }
        .mt-2{
            margin-top: 0.3rem !important;
        }
        .copyLink {
            font-size: 14px;
        }
    .generate-btn{
        font-size: 14px;
        padding: 6px;
    }
    .validation-btn{
        font-size: 12px;
    }
    form p{
        font-size: 13px !important;
        margin-bottom: 0px !important;
    }
    h6{
        font-size: 14px !important ; 
    }
    .select-container {
        height: 34px;
    }
    .icon-container2 {
        width: 180px;
    }
    /*...Previous Content...*/
    .mainContent-PreviousContent {
        width: 75%;
        margin: 45px auto;
    }
    .contact-list th{
        padding: 10px;
        font-size: 15px;
    }

/*Non-Masking SMS*/
    .mainContent-nonMasking {
        width: 75%;
        margin: 45px auto;
        padding: 2% 4%;
    }
    select.form-select {
        background-size: 40px auto, 100%;
    }
    .icon-container{
        width: 40px;
    }
    .calender {
        height: 32px;
        width: 32px;
    }
/*...Masking SMS...*/
    .mainContent-Masking{
        width: 75%;
        margin: 45px;
    }

/*...Target SMS...*/
    .mainContent-target{
        margin: 45px;
    }

/*...Buy SMS...*/
    .mainContent-Buy{
        width: 90%;
    }
    .main-content-buy {
        margin: 45px 0rem 0rem 45px;
        padding: 2rem 1rem;
    }
    .sms-pkg-slogan-title{
        font-size: 20px;
    }
    .sms-pkg-slogan{
        font-size: 16px;
    }
    .sms-pkg, .ms-sms-pkg, .tr-sms-pkg{
        width: 60px;
        height: 60px;
        margin: 15px 10px;
    }
    .buy-pay{
        margin-right: 0px;
        margin-top: 45px;
        height: 470px;
    }
/*...Upload Number...*/
    .mainContent-uploadNumbers{
        margin: 45px;
        padding: 2rem
    }
    .UploadBtn{
        width: 120px;
        padding: 5px;
        font-size: 15px;
    }
    .rs-btn {
        margin-bottom: 0px;
    }
    .upload-number h1{
        font-size: 23px !important;
    }
    .upload-number img{
        height: 70px;
        width: 70px;
    }
    .mainContent-ContactList {
        margin: 45px auto;
    }
    .contact-list tr td{
        font-size: 15px;
        padding: 15px;
    }
}



/*...Custom Modal PopUp...*/

.custom-model-main {
    text-align: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; 
    /* z-index: 1050; */
    -webkit-overflow-scrolling: touch;
    outline: 0;
    opacity: 0;
    -webkit-transition: opacity 0.15s linear, z-index 0.15s;
    -o-transition: opacity 0.15s linear, z-index 0.15s;
    transition: opacity 0.15s linear, z-index 0.15s;
    z-index: -1;
    overflow-x: hidden;
    overflow-y: auto;
}
.model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}
.otp-submit{
    border: 1px solid white;
    color: white;
}
.custom-model-inner {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    -o-transition: -o-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    -o-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    display: inline-block;
    vertical-align: middle;
    margin: 15% auto;
    width: 550px;
}
.close-btn {
    position: absolute;
    right: -10px;
    top: -35px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: gray;
}

.custom-model-wrap {
    display: block;
    width: 100%;
    position: relative;
    background-color: #1a3954;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
    background-clip: padding-box;
    outline: 0;
    text-align: left;
    /* padding: 20px; */
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    /* background-image: url(./asset/image/map_esim.png); */
    background-repeat: no-repeat;
    z-index: 99;
    background-size: 100% 100%;
}
#opt {
    width: 220px !important;
}
#otpSubmit {
    background-color: white;
    font-size: 16px !important;
}


/*...Combo Modal PopUp...*/
.combo-model-open {
    z-index: 99999;
    opacity: 1;
    overflow: hidden;
}
    .combo-model-open .custom-model-inner {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
        position: relative;
        z-index: 999;
    }

    .combo-model-main {
        text-align: center;
        overflow: hidden;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        /* z-index: 1050; */
        -webkit-overflow-scrolling: touch;
        outline: 0;
        opacity: 0;
        -webkit-transition: opacity 0.15s linear, z-index 0.15s;
        -o-transition: opacity 0.15s linear, z-index 0.15s;
        transition: opacity 0.15s linear, z-index 0.15s;
        z-index: -1;
        overflow-x: hidden;
        overflow-y: auto;
    }
.combo-close-btn {
    position: absolute;
    right: -13px;
    top: -32px;
    cursor: pointer;
    z-index: 99;
    font-size: 30px;
    color: gray;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .35em solid;
    border-right: .35em solid transparent;
    border-bottom: 0;
    border-left: .35em solid transparent;
    top: 2px;
    position: relative;
}

@media screen and (max-width: 750px) {
/*......Header Design......*/
    .navBar {
        padding: 10px 20px 10px 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
        box-shadow: inset 0 0 5px 1px #009cdc;
    }
    .resHeader {
        display: block;
    }
    .abc {
        background-color: #1a3a54;
    }
    .novoCom-img img {
        height: 50px;
        width: 100%;
    }
    .navBar ul {
        position : absolute;
        top: 50px;
        left: 0;
        right: 0;
        flex-direction: column;
        text-align: center;
        gap: 0;
        overflow: hidden;
    }
    .navBar ul {
        /*display: flex;*/
        gap: 0px;
        align-items: normal;
        background: linear-gradient(to top, rgba(0, 14, 28, 0.9) 20%, rgba(2, 62, 115, 0.9) 100%) !important;
        z-index: 999;
    }
        .navBar ul li {
            list-style-type: none;
        }
    .show {
        display: contents !important;
    }
    #menuList {
        transition: all 0.8s;
        border-bottom: 1px solid #009cdc;
    }
    .sidebar-menu li a{
        padding-left: 15px;
    }
    .fa {
        color: #009cdc !important;
        font-size: 18px !important;
    }
    /*......Header Design Ends......*/
    .sidebar {
        display: none;
    }
    .content{
        width: 100%;
        border: none;
        height: auto;
    }
    .header{
        display: none;
    }
    .mainContent-newContent{
        padding: 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    .icon-container2 {
        width: 140px;
        display: flex;
        justify-content: end;
        border-radius: 0px;
    }
    .copyLink{
        margin-right: 10px;
    }
    .generate-btn {
        width: 100%;
        font-size: 12px;
        border-radius: 0px;
        border: 1px solid #1a3a54;
        box-shadow: inset 0 0 2px 0px #1a3a54;
        color: #1a3a54;
        font-weight: 700;
    }
    label{
        font-size: 12px;
    }
    .form-control{
        font-size: 12px;
        border-radius: 0px;
    }
    select.form-select {
        background-size: 35px auto, 100%;
    }
    .select-container {
        height: 30px;
    }
    .validation-btn {
        width: 100%;
        font-size: 11px;
        border-radius: 0px;
        border: 1px solid #1a3a54;
        box-shadow: inset 0 0 2px 0px #1a3a54;
        color: #1a3a54;
        font-weight: 700;
        padding: 5px;
    }
    form p{
        font-size: 12px !important;
    }
    h6{
        font-size: 13px !important;
    }
    .mainContent-PreviousContent {
        /*padding: 3% 5%;*/
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 1px #bcbcbc;
    }
    .title-main {
        font-size: 14px;
        padding: 5px;
        margin-top: 15px;
    }
    .bulkTransfer{
        padding: 0.5rem !important;
    }
    .table-wrapper{
        margin: 5px 0px !important;
    }
    table th, table td{
        padding: 5px !important;
        font-size: 12px !important;
    }
    .tooltip-new .tooltiptext-new {
        width: 200px !important;
        left: 35% !important;
        box-shadow: 0 0 5px 0px;
    }
    .banner img{
        height: 100px;
    }
    .deleteBtn2 img {
        height: 23px;
        width: 35px;
    }
    .learnMore-btn {
        border: 1px solid #1a3a54;
        font-size: 12px;
        color: #1a3a54;
        height: 28px;
        width: 75%;
        border-radius: 1px;
        box-shadow: inset 0 0 3px 0px #1a3a54;
        margin-top: 10px;
    }
    .mainContent-home{
        margin: 5% auto;
    }
    .mainContent-nonMasking {
        padding: 3% 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    .heading-a{
        font-size: 12px;
    }
    .icon-container {
        width: 35px;
    }
    .calender{
        height: 28px;
        width: 28px;
    }
    .send-btn {
        width: 100%;
        font-size: 12px;
        border-radius: 0px;
        border: 1px solid #1a3a54;
        box-shadow: inset 0 0 2px 0px #1a3a54;
        color: #1a3a54;
        font-weight: 700;
        margin-top: 5px !important;
        padding: 4px;
    }
    .mainContent-Masking {
        padding: 4% 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    textarea.form-control[readonly]{
        height: 75px;
    }
    .login-content{
        margin: 5%;
    }
    .mtLogIn{
        margin-top: 0.5rem !important;
    }
    .login-content {
        border-radius: 5px;
        border: 1px solid #009cdc;
        box-shadow: inset #dedede 0px 0px 3px 1px;
    }
    .content-title-login {
        border: 1px solid #009cdc;
        box-shadow: inset #009cdc 0px 0px 3px 0px;
        border-radius: 2px;
        padding: 4px;
        font-size: 15px;
        color: #009cdc;
        margin-bottom: 10px !important;
    }
    .login-body {
        border: 1px solid #009cdc;
        box-shadow: inset #009cdc 0px 0px 3px 0px;
        border-radius: 3px;
        padding: 15px;
    }
    .login-info {
        font-size: 14px;
    }
    .login-btn {
        width: 100%;
        font-size: 12px;
        border-radius: 0px;
        border: 1px solid #009cdc;
        background-color: #1a3a54;
        box-shadow: inset 0 0 3px 1px #dedede;
        color: #009cdc;
        font-weight: 700;
        margin-top: 5px !important;
        padding: 4px;
        margin-bottom: 0.5rem!important;
    }
    .form-control{
        height: 30px;
    }
    .forgetPass{
        font-size: 13px !important;
    }
    .noAccount{
        font-size: 12px !important;
    }
        .noAccount a {
            font-size: 13px !important;
        }
    .termsConditions {
        font-size: 13px !important;
    }
    .custom-model-inner{
        width: 300px;
        margin: 180px auto;
    }
    .custom-model-inner p{
        font-size: 14px;
    }
    .otp-submit{
        font-size: 12px;
    }
    .model-open{
        /*display: flex;
        justify-content: center;
        align-items: center;*/
    }
    .close-btn {
        font-size: 25px;
        right: -7px;
        top: -28px;
    }
    .mainContent-target {
        padding: 3% 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    .mainContent-uploadNumbers {
        padding: 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    .mainContent-ContactList {
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 1px #bcbcbc;
    }
    .mainContent-NewRequest {
        padding: 5%;
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
    .send-btn{
        width: 100% !important;
    }
    .completeStatus{
        font-size: 11px;
        padding: 2px 5px;
    }
    .table-wrapper{
        height: 225px !important;
    }
    textarea.form-control {
        min-height: 75px;
    }
    .mainContent-Buy{
        margin: 5%;
    }
    .main-content-buy{
        margin: 1rem auto;
    }
    .main-content-buy {
        padding: 1rem;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 1px #bcbcbc;
    }
    .sms-pkg-slogan-title{
        font-size: 15px;
    }
    .sms-pkg-slogan{
        font-size: 13px;
    }
    .non-masking-title, .target-title, .masking-title {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .radio-circle-group1 {
        justify-content: center;
        height: 30px;
    }
    .sms-pkg, .ms-sms-pkg, .tr-sms-pkg {
        width: 36px;
        height: 36px;
        margin: 5px 5px;
        font-size: 10px;
        box-shadow: inset 0 0 5px 2px #dedede;
    }
        .sms-pkg:hover {
            border: 1px solid white;
        }
    .validity-text {
        font-size: 13px;
    }
    .days-text {
        font-size: 14px;
    }
    .some-text{
        font-size: 11px !important;
    }
    .percentage{
        font-size: 13px;
    }
    .buy-pay {
        margin-top: 15px;
        padding: 1.2rem 1rem;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 1px #bcbcbc;
        height: auto;
    }
        .buy-pay h5{
            font-size: 15px;
        }
        .buy-pay h4{
            font-size: 13px;
        }
        .buy-pay ul{
            margin-top: 20px !important;
        }
        .buy-pay p {
            font-size: 13px;
            margin-bottom: 4px !important;
        }
        .buy-pay input.btn{
            font-size: 13px;
            padding: 2px;
            width: 70px;
            border-radius: 0px;
            border: 1px solid #1a3a54;
            color: #1a3a54;
            margin: 10px auto;
        }
    .active{
        border: none; 
        background-color: #009cdc;
    }
    .non-masking-inside, .masking-inside, .target-inside {
        height: 100% !important;
        width: 100%;
    }
    .non-masking-btn, .masking-btn, .target-btn {
        height: 13px !important;
        width: 13px;
    }
    .tr-sms-pkg:hover {
        border: 1px solid white;
    }
    .upload-number {
        width: 100%;
        padding: 0.5rem 0rem;
        margin-bottom: 0.5rem;
    }
        .upload-number img{
            height: 40px !important;
            width: 40px !important;
        }
        .upload-number h1 {
            font-size: 13px !important;
            margin-bottom: 0px;
        }
        .upload-number span{
            font-size: 13px;
        }
        #fileupload{
            font-size: 12px;
        }
    .choose-a-file{
        height: 0px;
    }
    .form-group label{
        font-size: 13px !important;
    }
    .UploadBtn{
        font-size: 13px;
        width: 100px;
        border-radius: 0px;
        border: 1px solid #1a3a54;
        color: #1a3a54;
        padding: 3px;
    }
    .addBtn, .backBtn, .deleteBtn {
        font-size: 12px !important;
        padding: 4px 15px !important;
    }
    .memberName{
        font-size: 12px !important;
    }
    .mainContent-prepaidPayment {
        /*padding: 5%;*/
        margin: 5%;
        width: 90%;
        border-radius: 5px;
        box-shadow: inset 0 0 5px 2px #bcbcbc;
    }
}