.mdi-bell-outline {
    padding-left: 1%;
}

/* .vertical-menu {
margin-top: -65%;
} */
@media screen and (min-width: 993px) {
    .vertical-menu {
        margin-top: -65%;
    }
}

/* @media screen and (max-width: 992px) {
    body[data-layout=detached] .vertical-menu {
        border-radius: 7px;
        position: relative;
        margin-top: -75px;
    }
  }  */

.logocust {
    height: 80px;
    width: 150px;
    margin-bottom: 7%;
}

.titlcust {
    font-size: 20px;
    color: black;
}

.auth-wrapper.auth-v3 .bg-auth-side {
    content: "";
    top: 20px;
    left: 50%;
    right: 20px;
    bottom: 20px;
    border-radius: 20px;
    align-items: center;
    position: absolute;
}

.custpo {
    font-variant: small-caps;
}

.custi {
    padding-left: 15%;
}

.delicon {
    font-size: 20px;
}

.delicon3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.delicon2 {
    font-size: 25px;
    margin-top: 30px;
}

.custveri {
    padding-top: 40px;
}

.bg-cust {
    background-color: #f46424;
}

.btn-cust {
    background-color: #2d4293;
}

.container-cust {
    align-items: center;
}

.auth-v3 {
    padding: 0%;
}

.body-bg {
    background-color: white;
}

.img-card-side {
    padding: 5%;
}

.btn-cust1 {
    background-color: #2d4293;
    color: white;
}

.btn-cust1:hover {
    background-color: transparent;
    border-color: #2d4293;
    color: #2d4293;
}

.btn-cust2 {
    background-color: #2d4293;
    color: white;
    padding-left: 2%;
}

.link11 {
    padding-left: 10%;
}


.flags {
    padding-top: 30px;
}

.div-cust {
    display: none;
}

.cust-icon2 {
    font-size: 15px;
    padding-left: 20px;
}

.cust-div2 {

    height: 100%;
    /* background-image: url("loginbg.jpg"); */

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cust-btn3 {
    padding-left: 20px;
}

.cust-btn1 {
    /* padding: 20px; */
    margin-left: 8px;
}

.profile-img{
    border-radius: 50%;
    height: 150px;
    width: 150px;
}

.checkp{
    font-size: 70px;
    color: #5C7CFA;
    padding: 3%;
}

.crossp{
    font-size: 70px;
    color: red;
    padding: 3%;
}


/* *, *::before, *::after {
    box-sizing: border-box;
} */

/* div {
    display: block;
} */

/* .img-fluid {
    max-width: 100%;
    height: auto;
} */

/* .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
} */

/* img, svg {
    vertical-align: middle;
    background-color: transparent;
} */

/* .auth-wrapper.auth-v3 .bg-auth-side {
    content: "";
    top: 20px;
    left: 50%;
    right: 20px;
    bottom: 20px;
    border-radius: 20px;
    position: absolute;
} */

/* .bgcust{
    background-color: transparent;
} */

.custin{
    border: none;
    color: #8687a7;
}

.custin:focus, input:focus{
    outline: none;
}

.auth-img-content{
    background-repeat: no-repeat;
    background-image: url(../images/loginbg.jpg);
    background-size: 100% 100%;
    height: 100%;
    padding: 20%;
}

@media screen and (min-width: 1440px) {
    .auth-img-content{
        height: 100vh;
    }
}

@media screen and (min-width: 940px) {
    .auth-img-content{
        height: 100vh;
    }
    /*.auth-img-content img{*/
    /*    max-height: 290px;*/
    /*}*/
}

@media screen and (min-width: 740px) {
    .auth-img-content{
        height: 100vh;
    }
    /*.auth-img-content img{*/
    /*    max-height: 290px;*/
    /*}*/
}

@media screen and (max-width: 770px) {
    .auth-img-content{
        height: 80vh;
        width: 100%;
        /* display: none; */
    }
    .auth-img-content img{
        max-height: 290px;
    }
}
/* Default margin-right for the button */
#sidebarToggle {
    margin-right: 42.5rem;
}

/* Media query for screens below 992px (medium screens) */
@media (max-width: 991px) {
    /* Hide the button on medium screens and below */
    #sidebarToggle {
        display: none;
    }
}

/* Media query for screens between 1000px and 1600px (extra-large screens) */
@media (min-width: 1000px) and (max-width: 1600px) {
    /* Apply a margin-right of 41.1rem for extra-large screens */
    #sidebarToggle {
        margin-right: 41.1rem;
        display: block; /* Show the button for extra-large screens */
    }

    /* Your additional CSS styles for extra-large screens can go here */
}
.lds-dual-ring {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: rgb(255, 255, 255); /* Add a semi-transparent background overlay */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999; /* Ensure the loader is on top of other content */
  }

  /* Your existing CSS for the loader animation */
  .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto; /* Center the ring itself horizontally */
    border-radius: 50%;
    border: 6px solid #2d4293;
    border-color: #2d4293 transparent #2d4293 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
  }

  .loader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the image inside the ring */
  }

  @keyframes lds-dual-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }



  /* input[type="date"]::-webkit-datetime-edit, input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-clear-button {
  color: #0000;
  position: relative;
} */

/* input[type="date"]::-webkit-datetime-edit-year-field{
  position: absolute !important;
  border-left:1px solid #8c8c8c;
  padding: 2px;
  color:#000;
  left: 56px;
}

input[type="date"]::-webkit-datetime-edit-month-field{
  position: absolute !important;
  border-left:1px solid #8c8c8c;
  padding: 2px;
  color:#000;
  left: 26px;
}


input[type="date"]::-webkit-datetime-edit-day-field{
  position: absolute !important;
  color:#000;
  padding: 2px;
  left: 4px;

} */
