/* Your custom CSS styles */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css');


body {

    /* background: rgb(200, 200, 200); */
}

.form_1 {
    width: 300px; /* Adjust the width as needed */
    padding: 20px;
    border: 5px solid #989898;
    border-radius: 8px;
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: -28px;
}
.btn_1 {
    background-color: #624bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    background-color: darkred;
}
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: -250px; /* Adjust the margin as needed */
    text-align: center;
    margin-top: 150px;
}
.logo {
    width: 200px; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
}


.filed {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    height: 40px;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn, .Create {
    background-color: #4caf50;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover, .Create:hover {
    background-color: #45a049;
}

p {
    margin-top: 15px;
}

.password-toggle {
    position: relative;
    cursor: pointer;
}

#eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

#password[show-password="true"] {
    -webkit-text-security: none;
}

#password[show-password="false"] {
    -webkit-text-security: disc;
}
.map1 {
    margin-left: 20px;
    color: grey;
}
.map1{
    margin-right:-3px;
}
/* Style the tab */
.tab {
    overflow: hidden;
    /* background-color: #f1f1f1; */

    margin-top: 25px;
    gap: 10px;
    display: flex;
    justify-content: center;
}

.gateway-tab,
.invalid-tab{
    gap: 10px;
    display: flex;
    justify-content: center;
}
.custom-checkbox:checked {
    background-color: red;
}
/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 15px;
    font-weight: 600;
}

/* Change background color of buttons on hover */
/* .tab button:hover {
  background-color: #ddd;
} */

/* Create an active/current tablink class */
.tab button.active {
    color: #624bff;
    border-bottom: 1px solid #624bff;
}

/* Style the tab content */
.tabcontent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px;
    align-items: center;
}

.tabcontent.active {
    display: flex;
}
.inter_miami{
    padding: 10px;
    align-items: center;
    justify-content: space-between;
    width: 830px;
    background: #f8f9fa;
    height: 500px;


    height: 450px;
}
/* App.css */
.meredona {
    display: flex;
    justify-content: space-between;
}



.error-message {
    position: fixed;
    top: 10px;
    right: 10px;
}

.error-container {
    background-color: rgb(255, 104, 104);
    color: white;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;
    border-radius: 5px;
    border: 2px solid red;
    align-items: center;
    font-size: 15px;
}

.progress-bar {
    height: 5px;
    width: 100%; /* Adjust the width as needed */
    background-color: white;

    animation: progress 5s linear forwards;
}
.bimar2{
    background: #624bff;
    width: 250px;
    height: 40px;
    color: white;
    border-radius: 10px;
    border: none;
}
.bimar1{
    background: #624bff;
    width: 100px;
    height: 40px;
    color: white;
    border-radius: 10px;
    border: none;

}
.bimar3{
    background: #624bff;
    width: 150px;
    height: 40px;
    color: white;
    border-radius: 10px;
    border: none;
}
.tabcontent p{
    color: black;
}
input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    /* background: #007bff; */
    border: 1px solid black;
    border-radius: 3px;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
}

input[type="radio"]:checked {
    background: #624bff;
}
input[type="radio"]:unchecked {
    background: #fff;
}

input[type="radio"]::after {
    content: '\2713';
    font-size: 16px;
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

input[type="radio"]:hover {
    background: #624bff;
    transition: 10s;
}

input[type="radio"]:checked:hover {
    background: #624bff;
}

.loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}
.Ultrasound{
    background: rgb(128, 128, 128);
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


@keyframes progress {
    0% {
        width: 100%;
    }
    100% {
        width: 0;
    }
}
@media only screen and (max-width: 1200px) {
    .inter_miami {
        margin: 35px;
    }
}
html {
    font-family: Arial;
}
.meredona {
    display: flex;
    justify-content: space-between;
}

.leo {
    width: 13%;
    height: 100vh;
    background: #212529;
}

.messi {
    width: 87%;
    height: 100vh;
    background: white;
}

.leo {
    margin: 0;
    padding: 0;
}

.leo img {
    margin: 40px;
    margin-bottom: 15px;
}

.placehoilder_imag {
    display: flex;
    margin: 0;
    justify-content: start;
    padding: 0 10px;
}

.placehoilder_imag img {
    display: flex;
    justify-content: start;
    padding: 0px 12px;
    height: 60px;
    margin: 0;
}

.placehoilder_imag p {
    color: white;
    font-size: 15px;
    margin: auto 0;
}

/* App.css */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
}

.nav-list li {
    margin-bottom: 20px; /* Add some spacing between list items if needed */
}

.nav-list li a {
    color: white;
    text-decoration: none;

}

.nav-list li i {
    font-size: 15px;

    margin-left: 20px;
}

.mbappe{
    display: flex;
    margin-left: 25px;
    margin-top: 15px;
}
.fa-bars{
    color: #624bff;
    height: 100px;
    margin-top: 15px;
    margin-right: 15px;
    font-size: 25px;
}
.search_bar input{
    width: 200px;
    height: 35px;
    margin-top: 10px;
}
.header_3{
    background: #e9ecef;
    padding: 2px;
    color: black;
    margin-top: -55px;
}
.header_3 p{
    margin-left: 22px;
    margin-top: 15px;
}
.header_4{
    display: flex;
    margin-left: 15px;
    margin-top: 15px;
}
.header_4_logo img{
    width: 50px;
}
.newsaalogo_heqading h2{
    margin: 4px;
}
.payment_details{
    display: flex;
    margin-left: 25px;
    margin-top: 15px;
}
.payment_method{
    margin-right: 25px;
}
.payment_method_1 select{
    padding: 8px;
    width: 200px;
    margin-right: 15px;
    margin-top: -15px;
}
.payment_method_2 select{
    padding: 8px;
    width: 300px;
    margin-right: 15px;
    margin-top: -15px;
}
.payment_method_3 select{
    padding: 8px;
    width: 300px;
    margin-top: -15px;
}
.buttelr{
    height: 35px;
    width: 200px;
    margin-top: 40px;
    margin-left: 250px;
    background: #624bff;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
}
table{
    width: 100%;
    margin-top: 10px;
    border: none;
    margin: 20px 0;
    padding: 20px;
}
table td{
    text-align: left;
    margin-top: 20px;
    padding: 10px;
}
table th{
    padding: 10px;
    background: #f8f9fa;
    color: #707981;
    text-align: left;
}

.bottom-buttons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 20px;
    margin-right: 50px;

}
.bottom-buttons .pagination_1{
    background: #624bff;
    height: 30px;
    width: 130px;
    color: white;
    border: none;
    border-radius: 10px;
}
.bottom-buttons .pagination button{
    margin-right: 10px;
    background: #624bff;
    height: 30px;
    width: 50px;
    color: white;
    border: none;
    border-radius: 10px;
}
.import-export-buttons {
    display: flex;
    align-items: center;
}

.pagination {
    margin-left: 20px;
}

.error-message {
    color: red;
}

.undo-container {
    color: #666;
    margin-top: 20px;
    cursor: pointer;
}

.undo-link {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}
.Choose-plat .logo-img.text-center {
    padding: 20px;
}

.Choose-plat .logo-img.text-center img {
    margin: 0px;
}

.Choose-plat .card-header {
    background: #685DFA;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    color: #fff;
}

.Choose-plat h3.card-title {
    color: #fff;
}

.Choose-plat .logo-img.text-center img {
    margin: 0px;
    height: 100px;
    width: 150px;
    object-fit: contain;
}

.Choose-plat {
    border: 1px solid #789CDB !important;
    border-radius: 10px;

}

.Choose-plat input[type=radio] {
    appearance: none;
}

.container-pay-sec {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container-pay-sec  .form-group {
    margin-bottom: 20px;
}

.container-pay-sec   .form-group label {
    font-weight: bold;
}

.container-pay-sec   .form-group p {
    margin: 0;
    padding: 8px;

    border-radius: 5px;
    background-color: #f9f9f9;
}

.container-pay-sec  .status-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.container-pay-sec  .status-group label {
    margin-right: 10px;
}

.btn-third {
    background-color: #f321ac;
    background-image: linear-gradient(to right, #f20e48, #f31c8c);
    color: #fff;
    border-radius: 50px;
    padding: 10px 50px;
}

.btn-third:hover {
    color: #fff;
}

button.btn.btn-third-border {
    background-color: transparent;
    color: #685DFA;
    border-radius: 50px;
    padding: 10px 50px;
    border: 1px solid #685DFA;
}

@media only screen and (max-width: 700px) {
    .leo {
        display: none;
    }
    .payment_details{
        display: inline-block;
    }
    .payment_method_1 select{
        width: 100%;
        height: 40px;
    }
    .payment_method_2 select{
        width: 100%;
        height: 40px;
    }
    .payment_method_3 select{
        width: 100%;
        height: 40px;
    }
    .messi{
        width: 100%;
        margin: 30px;
    }
}
