.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.align-item-center {
    align-items: center;
}

.mx-auto {
    margin-inline: auto;
}

.gap-5 {
    gap: 5px;
}

.time-picker {
    width: 100%;
    border: 1px solid #c3c3c3;
    padding: 10px 10px;
    border-radius: 7px;
    color: #000;
    font-size: 15px;
}

.d-none {
    display: none;
}

.text-danger {
    color: red;
}

.m-1 {
    margin: 1rem;
}


.custom-swal-card {
    font-family: sans-serif, 'Arial';
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.swal-title-custom {
    font-size: 4em;
}

.swal-text-custom {
    font-size: 2.5em;

}

.swal-confirm-button-custom {
    background-color: #0006FF;
}

.swal-confirm-button-custom,
.swal-cancel-button-custom {
    font-size: 2.5em;
    padding-inline: 2.5em;
}

.fa-spinner {
    animation: spin 1s linear infinite;
}

.button-primary {
    background-color: #0006FF;
    color: #fff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    text-align: center;
}

.p-1{
    padding: 1rem;
}


/* Swal2 */
.swal2-popup {
    width: 50% !important;
    max-width: 700px;
    padding: 30px 40px !important;
    font-size: 16px;
}

/* Keyframes for rotation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wrapper {
    text-align: center;
    color: #555;
    -webkit-transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
    width: auto;
    display: inline-block;
    margin-left: 5px;
}

.wrapper .tooltip {
    background: #fff;
    bottom: 100%;
    color: #000000;
    display: block;
    left: -90px;
    margin-bottom: 15px;  
    opacity: 0;
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-family: 'Outfit-Regular';
    pointer-events: none;
    position: absolute;
    width: 200px;
    text-align: center;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.wrapper .tooltip:before {
bottom: -20px;
content: " ";
display: block;
height: 20px;
left: 0;
position: absolute;
width: 100%;
}

/* CSS Triangles - see Trevor's post */
.wrapper .tooltip:after {
border-left: solid transparent 10px;
border-right: solid transparent 10px;
border-top: solid #fff 10px;
bottom: -10px;
content: " ";
height: 0;
left: 50%;
margin-left: -13px;
position: absolute;
width: 0;
}

.wrapper:hover .tooltip {
opacity: 1;
pointer-events: auto;
-webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
   -o-transform: translateY(0px);
    transform: translateY(0px);
}

/* IE can just show/hide with no transition */
.lte8 .wrapper .tooltip {
display: none;
}

.lte8 .wrapper:hover .tooltip {
display: block;
}
.setmobile_phonetooltop .formnewdesign_set .text-input{
    overflow: inherit;
}
.clinicmanboxpartnew .setmobile_phonetooltop .formnewdesign_set p{
    display: inline-block;
}

@media (max-width: 768px) {
    .swal-title-custom {
        font-size: 2.5em;
    }

    .swal-text-custom {
        font-size: 1.5em;
    }

    .swal-confirm-button-custom,
    .swal-cancel-button-custom {
        font-size: 1.5em;
        padding-inline: 1.5em;
    }

    .custom-swal-card {
        padding: 20px;
    }
}