html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
  
/*AAA*/


.pointer {
    cursor: pointer;
}

.fadable{
    opacity :1;
    transition: opacity 0.8s;
}

.fadable.fade{
    opacity:0;
}

._font5{
    font-size:1.3rem;
}

._center{
    display: flex;
    justify-content:center;
    align-items:center;
}

._one-line {
    overflow: hidden!important;
    white-space: nowrap!important;
}

._icon-small{
    width:20px;
    height:20px;
}

._tab-hi {
    background-color: yellow;
    font-weight: 700;
    padding: 0.3rem;
    border-radius: 12px;
}

.hidden {
    display:none!important;
}

.invisible {
    visibility: hidden !important;
}

 /* >>>>> X clear cutton inside input element */
.clear-btn {
    position: absolute;
    right: 65px; /* Adjust this value based on your design */
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: none; /* Initially hidden */
    z-index: 999;
    font-size: 29px; /* Size of the 'X' */
    color: #707070; /* Color of the 'X' */
    background-color: transparent;
    border: none;
    padding: 0 5px;
    line-height: 1;
}

#customSearchInput:not(:placeholder-shown) + .input-group-text + .clear-btn {
    display: block;
}

/* Hover effect for better user experience */
.clear-btn:hover {
    color: #1A5276; /* Darker shade when hovered */
    /*background-color: rgba(0,0,0,0.1); /* Slight background on hover */ 
}

/* Optional: Adding a transition effect for smooth hover effect */
.clear-btn {
    transition: color 0.2s ease; /*, background-color 0.2s ease;*/
}
/*  X clear cutton inside input element <<<<<<< */