/* yellow : #f1c935 
dark blue: #132a38
lightblue: #3089cd */

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}


body {
    background-image: url(../images/Background.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.34);
    z-index: -1;
}







.YellowBtn {
    margin-top: 5px;
    margin-right: 2px;
    background: #f1c935;
    color: #132a38;
    border: none;
    border-radius: 25px;
    width: 130px;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.3s ease;
}

.blueBtn {
    margin-top: 5px;
    margin-right: 2px;
    background: #132a38;
    color: #f1c935;
    border: none;
    border-radius: 25px;
    width: 130px;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.3s ease;
}

.YellowBtn:hover {
    background: #132a38;
    color: #f1c935;
}

.blueBtn:hover {
    background: #f1c935;
    color: #132a38;
}


.container {
    padding-left: 15px;
    padding-right: 15px;
    width: 70%;
    margin: auto;
}

/* NavBar */

nav {
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 60px;
    margin-bottom: 40px;
    background: linear-gradient(rgba(23, 27, 52, 0.6), transparent);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
}








.CartIcon {
    color: #132a38;
    font-size: 40px;
    margin-left: 5px
}





nav h2 {
    font-size: 40px;
    cursor: pointer;
    font-weight: 500px;
    color: #f1c935;
}

nav ul {
    list-style-type: none;
}

nav ul li {

    display: inline-block;
    margin: 0 15px;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 500;

}

nav ul li a {
    color: #f1c935;
    text-decoration: none;
    font-weight: 700;
}

nav ul li a::after {
    content: "";
    display: block;
    /* car de base les pseudos-éléments sont de type inline*/
    width: 0px;
    height: 2px;
    margin: 0 auto 0 auto;
    border-radius: 2px;
    background: #132a38;
    transition: width 0.2s ease-out;
}

nav ul li a:hover::after {
    width: 80%;
}

nav ul li a:hover {
    color: #132a38;
}


nav .connection {

    /* position: relative;
    top: -2px; */
    background: #f1c935;
    color: #132a38;
    border: none;
    border-radius: 25px;
    width: 130px;
    height: 40px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.5s ease, color 0.3s ease;
}


.connection:hover {
    background-color: #f1c935;
}

#LoginBtn {
    background: #f1c935;
    color: #132a38;
}

#LoginBtn:hover {
    background: #132a38;
    color: #f1c935;
}

#RegisterBtn {
    background: #132a38;
    color: #f1c935;
}



#RegisterBtn:hover {
    background: #f1c935;
    color: #132a38;
}

#LoginBtn,
#RegisterBtn {
    margin: 0;
    /* Remove any default margin */
}

.button-group {
    display: flex;
    gap: 3px;
    /* Ensures exactly 3px spacing between the buttons */
}


nav .connection {
    /* Existing styles here */
    margin: 0;
    /* Remove any default margin */
}

#LoginBtn {
    margin-right: 3px;
    /* Add 3px space between buttons */
}

#RegisterBtn {
    margin-left: 0;
    /* Ensure no extra space on the left */
}

/* Hamburger anim */

nav .hamburger-menu {

    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    width: 64px;
    height: 42px;
    cursor: pointer;

}

nav .hamburger-menu .slice {

    position: absolute;

    width: 100%;
    height: 4px;

    background: #132a38;
    border-radius: 4px;


    transition: all 0.5s ease-in-out;

}

nav .hamburger-menu .slice:nth-child(1) {

    top: 0px;

}

nav .hamburger-menu .slice:nth-child(2) {

    top: 18px;

}

nav .hamburger-menu .slice:nth-child(3) {

    top: 36px;

}

nav .hamburger-menu.active .slice:nth-child(1) {
    top: 18px;
    transform: rotate(135deg);

}

nav .hamburger-menu.active .slice:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);

}

nav .hamburger-menu.active .slice:nth-child(3) {
    top: 18px;
    transform: rotate(-135deg);

}






#logoutBtn {
    background-color: #f1c935;
    /* Yellow background */
    color: #132a38;
    /* Dark blue text */
    border: none;
    width: 130px;
    height: 40px;
    font-weight: 500;
    border-radius: 25px;
    /* Rounded corners */
    cursor: pointer;
    text-align: center;
    transition: background-color 0.5s ease, color 0.3s ease;
    font-size: 16px;
    /* Adjust font size */
    display: inline-block;
    /* Ensures proper alignment */
}




#logoutBtn:hover {
    background: #132a38;
    /* Semi-transparent dark blue background */
    color: #f1c935;
    /* White text color */
}


#navbar.scrolled {
    background-color: #132a38;
    /* Navbar background when scrolled */
    padding-bottom: 10px;
}

#navbar.scrolled h2,
#navbar.scrolled .navbar ul li a,
#navbar.scrolled .navbar ul li a::after {
    color: #f1c935;
    /* Text color when scrolled */
}

#navbar.scrolled .button-group .connection,
#navbar.scrolled .button-group .blueBtn,
#navbar.scrolled .button-group #logoutBtn {
    background-color: #f1c935;
    /* Button background when scrolled */
    color: #132a38;
    /* Button text color when scrolled */
}

#navbar.scrolled .navbar ul li a::after {
    background-color: #f1c935;
}




/* Register form */
.main-div {
    width: 750px;
    background-color: rgba(255, 255, 255, 0.341);
    border: 2px solid rgba(41, 4, 115, 0.2);
    box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    color: #132a38;
    padding: 40px 35px 90px;
    margin: auto;
    margin-top: 100px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 30px;

}


/* h1 */
.main-div h1 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 20px;
    color: #132a38;
}


/* the div of all fileds inside form */
.main-div .input-box {
    display: flex; /* display flex --> make half content be side the other half */
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Fields div */
.input-box .input-field {
    position: relative;
    width: 48%;
    height: 50px;
    margin: 13px 0;
    margin-bottom: 20px;
}

.input-box .input-field.AddressField {
    position: relative;
    width: 33%;
    height: 50px;
    margin: 13px 0;
    margin-bottom: 20px;
}

/* Increased margin-bottom when an error is present */
.input-field.has-error {
    margin-bottom: 60px;
}





/* Fields */
.input-box .input-field input {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid rgba(41, 4, 115, 0.2);
    outline: none;
    font-size: 16px;
    color: #132a38;
    border-radius: 6px;
    padding: 15px 15px 15px 45px;
    

}

.input-box .input-field input::placeholder {
    color: #132a38;
}


.input-box .input-field span{
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

.input-box .input-field .formicon{
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}
.input-box .input-field select {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    width: 25%;
    padding: 0;
    background-color: transparent;
    border: 2px solid rgba(41, 4, 115, 0.117);
    text-align: left;
    font-size: 12px;
}



/* Placeholder for the input with name="phone" */
.input-box .input-field input[name="phone"]::placeholder {
   

}


.input-box .input-field input[name="phone"] {

}

/* Placeholder for the input with class="RegisterNumber" */
.input-box .input-field input.RegisterNumber::placeholder {

}

.input-box .input-field input.RegisterNumber {

}


.input-field i.UserEye-icon{
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    text-align: right;
    height: 0;
    padding-bottom: 5px;
    vertical-align: middle;
    align-items: center;
    margin-top: 0;
    color: #4f5b69;
}

.input-field i.LoginEye-icon{
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    text-align: right;
    height: 0;
    padding-bottom: 5px;
    vertical-align: middle;
    align-items: center;
    margin-top: 0;
    color: #4f5b69;

}








.main-div label {
    display: inline-block;
    font-size: 14.5px;
    margin: 10px 0 13px;
    color: #f1c935;
}

.main-div label input {
    accent-color: #f1c935;
    margin-right: 5px;
}

.terms-container {
    margin-top: 3px;
    margin-left: 0;
}

/* Reset default <ul> styles */
.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    display: flex;
    align-items: center;
    gap: 5px;
}

.terms-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.terms-list label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    cursor: pointer;
    vertical-align: top;
}

.Terms-checkbox {
    border: 2px solid #f1c935;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    border: none;
    margin-right: 5px;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.Terms-checkbox:checked {
    background-color: #f1c935;
    border-color: #132a38;
}

.Terms-checkbox:checked+label {
    color: #f1c935;
}

.Terms-checkbox:hover {
    border-color: #f1c935;
}

.terms-list li label a{
    text-decoration: underline;
    color: #132a38;
}

.Termscontainer{
    width: 70%;
    margin: auto;
}

.Termscontainer p{
    width: 90%;
    margin: auto;
}


/* button */
.main-div .btn {
    width: 100%;
    height: 45px;
    background: #132a38;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(41, 4, 115, 0.2);
    cursor: pointer;
    font-size: 16px;
    color: #f1c935;
    font-weight: 700;
    margin-top: 25px;
    transition: background-color 0.5s ease, color 0.3s ease;
}

.save-changes-btn .btn {
    width: 100%;
    height: 45px;
    background: #132a38;
    border: none;
    outline: none;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(41, 4, 115, 0.2);
    cursor: pointer;
    font-size: 16px;
    color: #f1c935;
    font-weight: 700;
    margin-top: 30px;
    transition: background-color 0.5s ease, color 0.3s ease;
}

.save-changes-btn .btn:hover {
    background-color: #f1c935;
    color: #132a38;
}

.main-div .btn:hover {
    background-color: #f1c935;
    color: #132a38;
}


.gender-row {
    display: inline-flex;
    /* Use inline-flex to fit the content width */
    align-items: center;
    gap: 10px;
    /* Space between "Gender:" and checkboxes */
    height: 50px;
    margin-top: 12px;
    background: transparent;
    border: 2px solid rgba(41, 4, 115, 0.2);
    outline: none;
    font-size: 16px;
    color: #132a38;
    border-radius: 6px;
    padding: 0 15px;
    box-sizing: border-box;
    width: auto;
    /* Allow automatic width */
}

.gender-checkbox {
    display: flex;
    gap: 20px;
    /* Space between Male and Female checkboxes */
}


.gender-label {
    font-size: 16px;
    color: #132a38;
    font-weight: 500;
    width: auto;
}


.gender-checkbox label {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #132a38;
}

.gender-checkbox input[type="radio"] {
    background-color: transparent;
    border: 2px solid #132a38;
    border-radius: 3px;
    /* Optional: Makes slightly rounded corners */
    cursor: pointer;
    display: inline-block;
    background-color: transparent;

}

.gender-checkbox input[type="radio"]:checked {
    background-color: #f1c935;
    border-color: #132a38;
}

.gender-checkbox input[type="radio"]:hover {
    border-color: #f1c935;

}

::file-selector-button {
    border: none;
    background-color: transparent;
}

/* Style for form buttons */
.btn-custom {
    background: #f1c935;
    /* Yellow background */
    color: #132a38;
    /* Dark blue text */
    border: none;
    width: 100%;
    /* Takes full width of the column */
    height: 50px;
    /* Adjust height */
    font-weight: 500;
    border-radius: 25px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.5s ease, color 0.3s ease;
    font-size: 16px;
}

.btn-custom:hover {
    background: #132a38;
    /* Dark blue background on hover */
    color: #f1c935;
    /* Yellow text on hover */
}

.row {
    margin-top: 20px;
    /* Optional spacing between buttons */
}




/* Profile Settings */

.Settings-div {
    background-color: rgba(255, 255, 255, 0.341);
    border: 2px solid rgba(41, 4, 115, 0.2);
    box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    color: #132a38;
    padding: 40px 35px 90px;
    width: 720px;
    /* Default max-width for larger screens */
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    /* Ensure padding is included in the width */
}

.user {
    background-color: rgb(255, 255, 255, 0.1);
    border: 2px solid rgba(41, 4, 115, 0.2);
    box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    color: #132a38;
    padding-top: 40px;
    justify-content: center;
    justify-items: center;
    text-align: center;
    align-items: center;
    width: 720px;

}




.user-list li {
    list-style-type: none;
}

.user-list li a {
    text-decoration: none;
    color: #132a38;
    margin-top: 15px;
    line-height: 100px;
    font-size: 20px;
}

.user-list li:hover {
    color: #f1c935;
}

#SettingsBtn {
    color: #f1c935;
    background-color: #132a38;

}

.button-group {
    display: flex;
    margin-right: 5px;
    /* Ensures a 3px margin between buttons */
    align-items: center;
    /* Vertically aligns buttons */
}

#SettingsBtn,
#logoutBtn {
    margin: 0;
    /* Remove any default margins */
}


#SettingsBtn:hover {
    color: #132a38;
    background-color: #f1c935;

}




/*side bar */
.nav-side-menu {

    font-family: verdana;
    font-size: 12px;
    font-weight: 200;
    background-color: #132a38;
    position: fixed;
    top: 0px;
    height: 100vh;
    color: #f1c935;
    left: 0;
    width: 0;
    z-index: 1;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    margin-top: 0px;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
    z-index: 10000;
}

.nav-side-menu .toggle-btn {
    display: none;
}

.nav-side-menu ul,
.nav-side-menu li {
    list-style: none;
    margin: 0px;
    line-height: 35px;
    cursor: pointer;
    line-height: 60px;
    font-size: 15px;
    color: #f1c935;
    padding: 5px;
    text-decoration: none;
    font-size: 15px;
    display: block;
    transition: 0.3s;
}

.nav-side-menu .closebtn {
    text-decoration: none;
    color: #f1c935;
    font-weight: 400;
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    cursor: pointer;
}

.openbtn {
    font-size: 20px;
    cursor: pointer;
    background-color: #132a38;
    color: #f1c935;
    padding: 8px 15px;
    border-radius: 10px;
    left: 0;
    margin-left: 20px;
    margin-top: 0;
    position: fixed;
    /* Fixes button in place */
    top: 10px;
    /* Positions it at the top */
    z-index: 1000;
    /* Ensures it stays above other elements */
    margin-bottom: 10px;
}


.openbtn:hover {
    background-color: #163447;
}



.nav-side-menu ul .active,
.nav-side-menu li .active {
    border-left: 3px solid #f1c935;
    background-color: #4f5b69;
}



.nav-side-menu li {
    padding-left: 0px;
    border-left: 3px solid #132a38;
    border-bottom: 1px solid #132a38;
    color: #f1c935;
}

.nav-side-menu li a {
    text-decoration: none;
    color: #f1c935;
}

.nav-side-menu li a span {
    padding-left: 10px;
    width: 20px;
    padding-right: 20px;
    margin-right: 10px;
    color: #f1c935;
}

.nav-side-menu li:hover {
    border-left: 3px solid #f1c935;
    background-color: #4f5b69;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}



@media (max-width: 767px) {

    .nav-side-menu {
        position: relative;
        width: 100%;
        height: 0;
        /* Start collapsed */
        overflow: hidden;
        transition: height 0.5s ease-in-out;
    }

    .nav-side-menu.active {
        height: 250px;
        /* Adjust as needed */
        overflow: visible;
    }



    .nav-side-menu .toggle-btn {
        display: block;
        cursor: pointer;
        position: absolute;
        right: 10px;
        top: 10px;
        z-index: 10 !important;
        padding: 3px;
        background-color: #f1c935;
        color: #000;
        width: 40px;
        text-align: center;
    }

    .openbtn {
        display: none;
    }
}



/* When active, the menu should expand downwards */
.nav-side-menu.active {
    height: 250px;
    /* Adjust as needed */
}


@media (min-width: 767px) {
    .nav-side-menu .menu-list .menu-content {
        display: block;

    }
}














/* Admin Dash Board */
.TableContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

table {
    width: 1200px;
    border-collapse: collapse;
    overflow: hidden;
    border: 2px solid rgba(41, 4, 115, 0.2);
    border-radius: 15px;
    background-color: rgb(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
}

th,
td {
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.2);
    color: #132a38;
}

th {
    text-align: left;
}

thead th {
    background-color: #132a38;
    color: #f1c935;
}

tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

tbody td {
    position: relative;
    border: 1px solid #132a38;
}



.input {
    display: flex;
    align-items: center;
    margin-left: auto;
}







.col-1 {
    width: 20px;
}

.col-2 {
    width: 15px;
}

.col>button,
.number {

    border-radius: 0;
    background-color: transparent;
    border: none;
    font-size: 25px;
    text-align: center;
}


@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,700);

.snip1418 {
    position: relative;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    max-height: 510px;
    min-height: 490px;
    width: 100%;
    background: #132a38;
    text-align: left;
    color: #f1c935;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    font-size: 16px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-perspective: 20em;
    perspective: 20em;
}

.snip1418 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.snip1418 img {
    max-width: 100%;
    vertical-align: top;
    position: relative;
}

.snip1418 .add-to-cart {
    position: absolute;
    top: 0;
    right: 0;
    padding-right: 10px;
    color: #f1c935;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9em;
    opacity: 0;
    background-color: #132a38;
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
}

.snip1418 .add-to-cart .addSpan {
    display: inline-block;
    margin-right: 10px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    background-color: #132a38;
    color: #f1c935;
    font-size: 1.4em;
}

.snip1418 figcaption {
    padding: 20px;
}

.snip1418 h3,
.snip1418 p {
    margin: 0;
}

.snip1418 h3 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.snip1418 p {
    font-size: 0.9em;
    letter-spacing: 1px;
    font-weight: 400;
}

.snip1418 .price {
    font-weight: 500;
    font-size: 1.5em;
    line-height: 48px;
    letter-spacing: 1px;
}

.snip1418 .price s {
    margin-right: 5px;
    opacity: 0.5;
    font-size: 0.9em;
}

.snip1418 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.snip1418:hover .add-to-cart,
.snip1418.hover .add-to-cart {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.snip1418:hover .add-to-cart .addSpan,
.snip1418.hover .add-to-cart .addSpan {
    background-color: #132a38;
}



/* CheckOut */
.Checkout-div {

    background-color: rgb(255, 255, 255, 0.1);
    border: 2px solid rgba(41, 4, 115, 0.2);
    box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    border-radius: 15px;
    color: #132a38;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 60%;
    /* Reduce width (adjust as needed) */
    max-width: 800px;
    /* Set a limit for max width */
    height: auto;
    /* Allow height to adjust dynamically */
    margin-bottom: 10px;
    margin-top: 100px;
    padding: 3% 3%;
    /* Reduce padding */

}




.CheckOutContainer {
    width: 100%;
    padding: 5% 5%;
}

.CheckOutContainer form h1 {
    align-self: center;
    margin-top: 15px;

}

.CheckOutContainer form {


    input {
        width: 100%;
        background: transparent;
        border: 3px solid rgba(41, 4, 115, 0.2);
        outline: none;
        font-size: 16px;
        color: #132a38;
        border-radius: 6px;
        padding: 12px 10px 10px 30px;
        margin-bottom: 10px;
    }

    label {
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 2px;
        color: #132a38;
    }

    .CheckOutContainer form h1 {
        font-size: 24px;
        line-height: 10px;
        color: #132a38;
        letter-spacing: 1px;
        margin-top: 10px;
        margin-bottom: 5px;
    }

    .CheckOutContainer form h1:nth-of-type(2) {
        margin-top: 10px;
        color: #f1c935;
    }
}

.name {
    justify-content: space-between;
    display: flex;
    width: 100%;

    div {
        width: 45%;
    }
}

.address-info {
    display: flex;
    justify-content: space-between;

    div {
        width: 30%;
    }
}

.cc-info {
    display: flex;
    justify-content: space-between;

    div {
        width: 45%;
    }
}



hr {
    color: #132a38;
    margin-bottom: 1.2rem;
}


/* Right Side of container */

.right-side {
    background-color: transparent;
    padding: 1.8rem 3.2rem;
}

.receipt {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    gap: 1rem;
    border-bottom: solid 1px;
    margin-bottom: 1rem;
}

.receipt-heading {
    font-size: 1.6rem;
    text-align: center;
    font-weight: 500;
}

.BillTable {
    border-collapse: separate;
    background-color: transparent;
    border: none;
    border-spacing: 0 1.5rem;
    color: #132a38;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    width: 100%;
    overflow-x: hidden;
}



.BillTable tr,
.BillTable td {
    background-color: transparent;
    border: none;
}

.BillTable tr:hover,
.BillTable td:hover {
    background-color: transparent;
}

.total td {
    font-size: 1.4rem;
    font-weight: 700;
    border: none;
}

.price {
    border: none;
    background-color: transparent;
}

.ErrorMessage {
    color: red;
    font-size: 12px;
    margin-top: 3px;
    margin-bottom: 100px !important;
    height: auto;
    /* Increase minimum height */
    display: block;
    font-weight: 500;
    text-align: left;
}






/* reporting style */

.chartContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

.chart {
    padding: 2rem;
    border: 2px solid #132a38;
    background-color: #132a38;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}


/* Style the select dropdown */
select {
    height: 50px;
    outline: none;
    border: 3px solid rgba(41, 4, 115, 0.2);
}

/* Style on hover and focus */
select:hover,
select:focus {
    color: #132a38;
    background-color: #132a38;
}

/* Style the dropdown options */
select option {
    font-size: 16px;
    padding: 10px;
    background-color: #132a38;
    color: #f1c935;
}

/* Style the selected option */
select option:checked {
    background-color: #132a38;
    /* Blue background */
    color: #f1c935
}

select option:hover {
    background-color: #132a38;
    /* Blue background */
    color: #f1c935;
}







.checkout-container {
    /* background-color: red; */
    max-width: 120rem;
    height: 50rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    /* margin-bottom: 10rem; */
}

em {
    font-style: normal;
    font-weight: 700;
}






.text-box {
    background: rgba(95, 121, 134, 0.8);
    width: 100%;
    padding: 1rem 2rem;
    position: absolute;
    bottom: 0;
}



/* Right Side of container */

.right-side {
    background-color: transparent;
    padding: 1.8rem 3.2rem;
}

.receipt {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-bottom: solid 1px;
    margin-bottom: 1rem;
}

.receipt-heading {
    font-size: 1.6rem;
    text-align: left;
}

.table {
    border-collapse: separate;
    border-spacing: 0 1.5rem;
    color: #132a38;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    width: 100%;
    background: transparent;
}

.total td {
    font-size: 1.4rem;
    font-weight: 700;
    background: transparent;
    border: none;
}

.price {
    text-align: end;
    background: transparent;
    border: none;
}

.title {
    text-align: start;
}

table tr .title,
table tr .price {
    background: transparent;
    border: none;
    font-weight: 500;
}

table tr .title:hover,
table tr .price:hover {
    background-color: transparent;
    border: none;
}

/* Payment Section */

.payment-heading {
    font-size: 30px;
    margin: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    text-align: center;
}

.form-box {
    display: grid;
    grid-template-rows: 1fr;
    gap: 1.5rem;
    background: transparent;
    border: none;
}

.card-logo {
    font-size: 2rem;
}

.expires,
.form-box label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1c935;
    margin-right: 5px;
    display: block;
}
.cvvLabel{
    font-size: 1.2rem;
    font-weight: 700;
    color: #f1c935;
    margin-right: 5px;
    display: block;
}

.form-box input {
    width: 100%;
    background: transparent;
    border: 2px solid #f1c935;
    outline: none;
    font-size: 16px;
    color: #f1c935;
    border-radius: 6px;
    padding: 15px 15px 15px 10px;
}


.form-box input::placeholder {
    color: #7a899a;
    font-size: 15px;
}

.form-box #cvv {
    margin-left: 2px;
}



.footer-text {
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
}

.form-box *:focus {
    outline: none;
    border-radius: 8px;
}

.checkoutBtn{
    background-color: #f1c935;
    color: #132a38;
    transition: all 0.3s ease;
    padding: 5px;
    width: 100%;
    border-radius: 15px;
    font-weight: 600;
}

.checkoutBtn:hover{
    background-color: #132a38;
    color: #f1c935;
    border: 1px solid #f1c935;
}


.paymentheader{
    margin-bottom: 10px;
}



/* Home page */

.home-div {
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    margin-top: 280px;
}

.HomeP {
    color: #f1c935;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 2px 2px #0000009f;
}

.HomeP span {
    font-size: 40px;
    text-shadow: 2px 2px #7a899a;
    color: #132a38;
}

/* About us */
.AboutUs-container {
    width: 100vw;
    background-color: #132a38;
}

.AboutUs-div {
    background-color: #132a38;
    color: #f1c935;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
    width: 100%;
    /* Full width */
    padding: 15px;
    min-height: 360px;
    padding-top: 30px;
}


.AboutUs-div p {
    color: #f1c935;
    font-size: 25px;
    font-weight: 400;
    text-shadow: 2px 2px #0000009f;
    padding: 25px 100px;
}



/* Contact us */
/* Contact us */
#ContactUs {
    background-color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    color: #132a38;
    /* Replaced #f1c935 with #132a38 */
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
    width: 100%;
    /* Full width */
    padding: 15px 0;
    /* Remove horizontal padding */
    min-height: 360px;
    padding-top: 30px;
    margin: 0;
    /* Ensure no margin */
}

#ContactUs h1 {
    font-family: 'Poppins', sans-serif, 'arial';
    font-weight: 600;
    font-size: 72px;
    text-align: center;
    margin-bottom: 20px;
    /* Add spacing below the heading */
}

#ContactUs p {
    color: #132a38;
    /* Replaced #f1c935 with #132a38 */
    font-size: 25px;
    font-weight: 400;

    padding: 25px 100px;
}

/* Inputs */
.styled-input {
    position: relative;
    margin: 10px auto;
    border-radius: 20px;
    width: 100%;
    display: flex;
}



.styled-input.wide {
    width: 100%;
    /* Full width */
}

.styled-input input::placeholder {
    color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    transition: all 0.25s ease;
    pointer-events: none;
}

.styled-input textarea::placeholder {
    color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    padding: 1.3rem 30px 1rem 30px;
    position: absolute;
    top: 10px;
    left: 0;
    transition: all 0.25s ease;
    pointer-events: none;
}

#ContactUs input,
#ContactUs textarea {
    padding: 30px;
    border: 0;
    width: 100%;
    font-size: 1rem;
    background-color: #132a38;
    /* Replaced #f1c935 with #132a38 */
    color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    border-radius: 4px;
}

#ContactUs input:focus,
#ContactUs textarea:focus {
    outline: 0;
}

#ContactUs textarea {
    width: 100%;
    min-height: 15em;
}

.input-container {
    width: 100%;
    max-width: 100%;
    margin: 20px auto 25px auto;
}




.styled-input input[name="phone"] {
    width: 85%;
    padding: 10px 10px 10px; /* Consolidated padding with 200px on left */
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    position: relative;
}

.styled-input input[name="phone"]::placeholder{

}

.CountryCode-ContactUs { 
    color: #f1c935;
    position: absolute;
    left: 0;
    width: 20%; /* Adjusted width to match your padding */
    height: 100%;
    border-right: 1px solid #f1c935;
    border-radius: 0 4px 4px 0;
    background-color: #132a38;
    padding: 0 10px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.CountryCode-ContactUs:hover {
    color: #f1c935;
}



/* Focus styles */
.styled-input input[name="phone"]:focus,
.CountryCode-ContactUs:focus {
    color: #f1c935;
    border-right: 1px solid #f1c935;
}

.submit-btn {
    padding: 7px 35px;
    border-radius: 25px;
    display: inline-block;
    background-color: #132a38;
    /* Replaced #f1c935 with #132a38 */
    color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 300ms ease;
    margin-top: 20px;
    /* Add spacing above the button */
}

.submit-btn:hover {
    background-color: #f1c935;
    /* Replaced #132a38 with #f1c935 */
    color: #132a38;
    /* Replaced #f1c935 with #132a38 */
}



/* Our Services */
.card-custom {
    background-color: #132a38;
    /* Semi-transparent white background */
    border: none;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

#OurServices h1 {
    font-family: 'Poppins', sans-serif, 'arial';
    font-weight: 700;
    font-size: 75px;
    text-align: center;
    margin-bottom: 20px;
    /* Add spacing below the heading */
    color: #f1c935;
}

#OurServices p {
    color: #f1c935;
}


#OurServices h4 {
    color: #f1c935;
    margin-top: 20px;
}

.card-custom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-custom h2 {
    color: #f1c935;
    /* Golden yellow for headings */
    margin-bottom: 20px;
}

.card-custom ul {
    list-style-type: none;
    /* Remove default bullet points */
    padding-left: 0;
    color: #f1c935;
}

.card-custom ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle separator */
    color: #f1c935;
}

.card-custom ul li:last-child {
    border-bottom: none;
    /* Remove border for last item */
}

.card-custom .btn-custom {
    background-color: #f1c935;
    /* Golden yellow button */
    color: #132a38;
    /* Dark blue text */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
}

.card-custom .btn-custom:hover {
    background-color: #e0b82d;
    /* Slightly darker yellow on hover */
}


.tonne-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between icon and text */
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
    color: #f1c935;
    border-radius: 5px;
    margin-bottom: 10px;
    /* Space between items */
}

.tonne-item img {
    color: #f1c935;
}


.card-custom h2 {
    text-align: center;
}

.card-custom p {
    text-align: left;
}


.robot {
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.captcha-div {
    width: 100%;
    background-color: #f1c935;
    display: flex;
    justify-content: center;
    align-items: center;
}

.captcha-container {
    display: flex;
    background-color: #F9F9F9;
    border: 1px solid #D3D3D3;
    border-radius: 3px;
    width: 300px;
    align-items: center;
    text-align: center;
    padding: 10px 0px 10px 0px;
    margin-bottom: 15px;
}

.captcha-checkbox {
    appearance: none;
    width: 26px;
    height: 26px;
    border: 2px solid #C1C1C1;
    margin: 0px 14px 0px 14px;
}

.captcha-checkbox:checked::before {
    content: url(https://img.icons8.com/?size=20&id=27&format=png&color=1e5180);
    display: block;
    line-height: 20px;
    padding: 0.05rem 0.6rem 0rem 0.05em;
}

.captcha-logo {
    display: block;
    margin-left: 65%;
}

.logo-text {
    text-align: right;
    font-size: 9px;
    font-family: 'Roboto', sans-serif;
}

.logo-text-tos {
    display: block;
    text-align: right;
    font-size: 9px;
    font-family: 'Roboto', sans-serif;
    margin-left: 80px;
}

.Captchacontainer {
    margin-right: 10px;
    text-align: center;
}




.captcha-container{
width: 80%;
background-color: #f1c935;
border: none;
}

.captcha-img {

    width: 40%;
}
.captcha-container img{
    width: 100%;
    padding-right: 10px;
}



.captcha-container input{
    width: 30%;
    background-color: #f1c935;
    color: #132a38;
    border-radius: 25px;
}


.captcha-container input::placeholder{
    color: #f1c935;
}



/* privacy Policy  */
.Termscontainer .main-div{
    text-align:left ;
    margin-top: 150px;
    margin-bottom: 80px;
}

.Termscontainer .main-div h2{
    font-size: 24px;
}

.Termscontainer .main-div h3{
    font-size: 20px;
}



/* payments */
.Payment-results ul li span{
text-align: end;
}







.tooltip-box {
    display: none;
    position: absolute;
    top: 45px;
    left: 0;
    width: 250px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    font-size: 14px;
    z-index: 10;
  }
  
  .tooltip-box ul {
    padding-left: 20px;
    margin: 10px 0 0 0;
  }
  
  .tooltip-box li {
    margin-bottom: 5px;
    color: #888;
  }
  
  .tooltip-box .valid {
    color: green;
  }
  
  .tooltip-box .invalid {
    color: #888;
  }



  .custom-dropdown {
            position: relative;
            width: 100%;
        }
    
        .custom-dropdown input {
            width: 100%;
            padding: 8px;
            box-sizing: border-box;
        }
    
        .custom-dropdown .options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            max-height: 200px;
            overflow-y: auto;
            background-color: #132a38;
            color: #f1c935;
            z-index: 1000;
            display: none;
        }
    
        .custom-dropdown .option {
            padding: 8px;
            cursor: pointer;
        }
    
        .custom-dropdown .option:hover {
            background-color: #f1c935;
            color: #132a38;
        }
  

/* large screen */


@media screen and (max-width: 1200px) {
    .user {
        display: none;
    }

    .TableContainer {
        padding: 0 10px;
        overflow-x: auto;

    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }



    tbody tr {
        margin-bottom: 15px;
        width: 100%;

    }

    tbody td {
        padding: 5px 70px;
        justify-content: space-between;
        align-items: center;
    }

    th,
    td {
        width: 100%;
        text-align: left;
    }

    .home-div {
        margin-top: 200px;
    }

}

/* medium screen */

@media screen and (max-width: 992px) {

    /* Navigation */
    body{
        margin: 0;
    }
    nav {
        height: 75px;
        justify-content: center;
        background-color: #132a38;
    }

    nav ul li {
        display: flex;
        margin: 15px 0;
        text-align: center;
        justify-content: center;
    }

    nav ul li a {
        color: #f1c935;
        font-weight: 600;
        font-size: 22px;
        display: block;

    }

    nav h2 {
        text-align: center;
        margin-top: 10px;
        color: #f1c935;
    }

    nav .navbar,
    nav #ProfileSettingsBtn,
    nav #RegisterBtn,
    nav #LoginBtn,
    nav #logoutBtn {
        /* Added .nav-button for Logout button */
        position: relative;
        top: 75px;
        display: none;
    }

    /* Hamburger Menu */
    nav .hamburger-menu {
        display: block;
        width: 30px;
        height: 20px;
        color: #f1c935;
        margin-top: 10px;
    }

    #logoutBtn,
    #SettingsBtn,
    #RegisterBtn,
    #LoginBtn {
        display: none;
    }


    /* When hamburger menu is active */
    nav.active {
        padding-bottom: 100px;
        height: 98vh;
    }

    nav.active ul li a:hover {
        color: #fff;
    }

    nav.active .navbar,
    nav.active #ProfileSettingsBtn,
    nav.active #RegisterBtn,
    nav.active #LoginBtn,
    nav.active #logoutBtn {
        /* Added .nav-button for Logout button */
        top: 75px;
        display: block;
        text-align: center;
        /* Align Logout button to center */
        margin-top: 15px;
        /* Add spacing for better layout */
    }

    nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-top: 20px;
        width: 100%;
        min-height: 70vh;
    }

    /* Center title */
    nav.active h2 {
        position: relative;
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }

    /* Center menu items */
    nav.active ul {
        list-style: none;
        padding: 0;
        width: 100%;
        text-align: center;
    }

    nav.active ul li {
        display: block;
        width: 100%;
        text-align: center;
    }

    nav.active ul li a {
        display: block;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        padding: 10px 0;
    }

    /* Center buttons */
    nav.active #ProfileSettingsBtn,
    nav.active #logoutBtn,
    nav.active #RegisterBtn,
    nav.active #LoginBtn,
    nav.active #SettingsBtn {
        background-color: #f1c935;
        color: #132a38;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.5s ease, color 0.3s ease;
        display: block;
        margin: 15px 25px;
        text-decoration: none;
        width: 100%;
        text-align: center;
        padding: 10px;
    }

    nav.active .nav-button button:hover {
        background-color: #132a38;
        color: #f1c935;
    }

    nav.active .cart-counter {
        display: none;
    }

    .TableContainer {

        padding: 0 10px;
    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    th,
    td {
        padding: 10px;
    }


    tbody tr {
        margin-bottom: 15px;
    }

    tbody td {

        justify-content: space-between;
        align-items: center;
        padding: 10px 50px;
    }


    .cart-counter {
        display: none;
    }

    .snip1418 {
        display: block;
        margin: auto;
        width: 100%;
        margin-top: 35px;
    }

    #OurServices h1 {
        font-size: 60px;
    }

    .ContactUs .styled-input {
        margin-right: 30px;
        margin-left: 30px;
    }

    .home-div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .HomeP {
        min-height: 70vh;
        margin-top: 0;
        padding-top: 0;
        font-size: 32px;
    }

    .card-custom{
        width: 100%;
        margin: 15px 0px;
    }


}

/* small screen */
@media (max-width: 768px) {
    .TableContainer {
        width: 100%;
        padding: 0 10px;
    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    th,
    td {
        padding: 10px;

    }


    tbody tr {
        margin-bottom: 15px;
    }

    tbody td {

        justify-content: space-between;
        align-items: center;
        padding: 10px 5px;
    }

    .snip1418 {
        display: block;
        margin: auto;
        width: 100%;
        margin-top: 25px;
    }

    .wrapper {
        width: 100%;
    }

    .container {
        width: 80%;

    }

    .btns {
        align-items: center;

        button {
            width: 50%;
        }
    }

    form h1 {
        text-align: center;
    }

    .name,
    .address-info,
    .cc-info {
        flex-direction: column;
        width: 100%;
        justify-content: space-between;

        div {
            align-items: center;
            flex-direction: column;
            width: 100%;
            display: flex;
        }
    }

    .street,
    .cc-num {
        text-align: center;
    }

    input {
        margin: 5px 0;
        min-height: 30px;
    }

    .main-div {
        width: 90%;
        padding: 20px;
        margin: auto;
        margin-top: 50px;
        justify-content: center;
        align-items: center;
    }

    .Settings-div {
        width: 100%;
        padding: 20px;
        margin: auto;
        justify-content: center;
        align-items: center;
    }

    .Terms-checkbox input[type="checkbox"] {
        display: flex;
    }


    .submit-btn {
        width: 100%;
        text-align: center;
    }

    .toggle-btn {
        display: none;
    }

    .nav-side-menu {
        width: 250px;
        height: 100%;
    }


    .Settings-div {
        width: 100%;
        margin: auto;
        padding: 10;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .home-div {
        margin-top: 100px;
    }

}


@media (max-width: 570px) {

    .input-box .input-field {
        width: 100%;
        margin: 10px 0;
    }



        
    
    

    .TableContainer {

        padding: 0 10px;
    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    .snip1418 {
        display: block;
        margin: auto;
        width: 100%;
        margin-top: 25px;
    }





    .register-div {
        margin: 100px 20px;
        width: 90%;
    }

}

@media screen and (max-width: 520px) {
    .main-div {
        width: 95%;
        margin: 50px 0px;
        margin: auto;
    }

    .Settings-div {
        width: 100%;
       margin: auto;
        max-height: 1000px;
    }


    .taxes-card{
        padding-top: 10px;
    }

    .TableContainer {

        padding: 0 10px;
    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    .snip1418 {
        display: block;
        margin: auto;
        width: 100%;
        margin-top: 25px;
    }

    .ServiceImg {
        display: none;
    }



    .home-div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 0px;
    }

    .HomeP {
        width: 90%;
        font-size: 20px;
    }

    #OurServices h1 {
        font-size: 40px;
    }

    .AboutUs-div p {
        width: 80%;
        margin: auto;
        padding: 0;
        font-size: 22px;

    }

    #ContactUs h1 {
        font-size: 40px;
    }

    #ContactUs p {
        width: 80%;
        margin: auto;
        padding: 0;
        font-size: 22px;
        margin-bottom: 15px;
    }

    .register-div {
        width: 90%;
        margin: 130px 20px;
        background-color: rgba(255, 255, 255, 0.603);
        border: 2px solid rgba(41, 4, 115, 0.2);
        box-shadow: 0 0 10px rgb(255, 255, 255, 0.2);
        backdrop-filter: blur(50px);
    }

    .input-box .input-field input {
        border: 2px solid rgba(4, 34, 115, 0.537);
    }

    .input-box .input-field input::placeholder {
        color: #132a38;
        font-weight: 400;
    }

    .gender-row {
        border: 2px solid rgba(4, 34, 115, 0.537);
    }




    .terms-list li label {
        font-weight: 500;
        font-size: 15px;
        color: #132a38;
    }

    .input-box .input-field select{
        border-radius: 5px;
        color: #132a38;
        border-right: 2px solid rgba(4, 34, 115, 0.537);
        padding: 2px;
        width: 55px;
        text-align: center;
    }

    ::file-selector-button{
        color: #132a38;
    }

    .styled-input input[name="phone"]::placeholder{
        padding-left: 90px;
    }
    
    .CountryCode-ContactUs{
        width: 15%;
    }

}



@media screen and (max-width: 390px) {
    .main-div {
        width: 95%;
        margin: 50px 0px;
        margin: auto;
    }

    .Settings-div {
        width: 100%;
        margin: auto;
    }

    .TableContainer {

        padding: 0 10px;
    }

    table {
        width: 100%;
        font-size: 14px;
        overflow-x: auto;
        display: block;
    }

    .snip1418 {
        display: block;
        margin: auto;
        width: 100%;
        margin-top: 25px;
    }

    .ServiceImg {
        display: none;
    }



    .home-div {
        margin-top: 100px;
    }

    .register-div {
        margin-bottom: 50px;
        margin-top: 100px;
        width: 90%;
    }

    
    .styled-input input[name="phone"]::placeholder{
        padding-left: 100px;
    }
    
    .CountryCode-ContactUs{
        width: 15%;
    }

    .captcha-img{
        width: 80%;
    }

    .Captcha-input{
        padding-top: 10px;
        width: 80%;
    }

    .captcha-container input::placeholder{
        font-size: 12px;
    }
}




