/* Basic Utility Classes */
.cap{
 text-transform: uppercase;
}
.fcap{
text-transform: capitalize;
}
.fcaps{
  text-transform: uppercase;  
}
.center {
  text-align: center !important;
}
.text-r {
  text-align: right !important;
}
.text-l {
  text-align: left !important;
}
 
.items-center {
  align-items: center !important;
}
.flex{
  display: flex !important;
}
.bold {
  font-weight: 600 !important;
}
.sline {
    clear: both;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
}
.th-line
{
  text-decoration:line-through !important;
}
.u-line
{
  text-decoration:underline !important;
}
.hover-u:hover
{
  text-decoration:underline !important;
  color: var(--blue-color) !important;
}
.text-pre {
  white-space: pre-wrap;  
  word-wrap: break-word;  
  line-height: 20px;  
}
.text-pre-25 {
  white-space: pre-wrap;  
  word-wrap: break-word;  
  line-height: 25px;  
}
.text-pre-30 {
  white-space: pre-wrap;  
  word-wrap: break-word;  
  line-height: 30px;  
}
.cursor {
  cursor: pointer !important;
}
.hover-under:hover
{
  text-decoration: underline;
  color: var(--secondary-color) !important;
}
.back-white
{
  color: var(--text-color) !important;
background-color: var(--background-color) !important;
}

/* Border Utilities */
.border-none {
  border: 0px none var(--border-color) !important;
}
.border {
  border: 1px solid var(--border-color) !important;
}

.border-top {
  border-top: 1px solid var(--border-color) !important;
}

.border-bottom {
  border-bottom: 1px solid var(--border-color) !important;
}

.border-left {
  border-left: 1px solid var(--border-color) !important;
}

.border-right {
  border-right: 1px solid var(--border-color) !important;
}
/* Border Utilities */
.b-none {
  border: 0px none var(--border-light-color) !important;
}
.b-1-orange {
  border: 1px solid var(--orange) !important;
}
.b-2-orange {
  border: 2px solid var(--orange) !important;
}
.b-1 {
  border: 1px solid var(--border-light-color) !important;
}
.b-2 {
  border: 2px solid var(--border-light-color) !important;
}
.b-top {
  border-top: 1px solid var(--border-light-color) !important;
}

.b-bottom {
  border-bottom: 1px solid var(--border-light-color) !important;
}

.b-left {
  border-left: 1px solid var(--border-light-color) !important;
}

.b-right {
  border-right: 1px solid var(--border-light-color) !important;
}
.white
{
  color: white !important;
}
/* Padding Utilities */

.p-0 { padding: 0 !important; }
.p-02 { padding: 2px 4px !important; }
.p-1 { padding: 4px !important; }
.p-11 { padding: 4px 10px !important; }
.p-2 { padding: 8px !important; }
.p-21 { padding: 11px !important; }
.p-22 { padding: 8px 15px !important; }
.p-3 { padding: 12px !important; }
.p-33 { padding: 12px 20px !important; }
.p-4 { padding: 16px !important; }
.p-44 { padding: 16px 24px !important; }
.p-5 { padding: 20px !important; }

/* Margin Utilities */
.m-top
{
  margin-top: 5px;
}
.m-top-5
{
  margin-top: 5px;
}
.m-top-10
{
  margin-top: 10px;
}
.m-top-15
{
  margin-top: 15px;
}
 
.m-b
{
  margin-bottom: 5px;
}
.m-left
{
  margin-left: 5px;
}
.m-lr
{
  margin-left: 5px;
  margin-right: 5px;
}
.m-0 { margin: 0 !important; }
.m-1 { margin: 4px !important; }
.m-2 { margin: 8px !important; }
.m-3 { margin: 12px !important; }
.m-4 { margin: 16px !important; }
.m-5 { margin: 20px !important; }

/* Display Utilities */

.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-none { display: none !important; }

/* Flex Utilities */

.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.align-center { align-items: center !important; }

/* Text Utilities */

.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }

.uppercase { text-transform: uppercase !important; }
.lowercase { text-transform: lowercase !important; }
.capitalize { text-transform: capitalize !important; }

/* Font Weight */

.fw-normal { font-weight: 400 !important; }
.fw-bold { font-weight: 700 !important; }
.fw-bolder { font-weight: 800 !important; }

/* Width/Height Utilities */

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }
.max-w-100 { max-width: 100% !important; }
.max-h-100 { max-height: 100% !important; }

/* Position Utilities */

.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.sticky { position: sticky !important; }

/* Overflow */

.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* Border Radius */

.rounded {
  border-radius: 6px !important;
}

.rounded-sm {
  border-radius: 3px !important;
 
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

/* Background & Text Colors (Example) */

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-dark {
  background-color: #343a40 !important;
  color: #fff !important;
}

.text-primary {
  color: var(--primary-color) !important;
}
.text-off {
  color: var(--light-text) !important;
}
.text-black
{
  color: #000 !important;
}
.text-white
{
  color: white !important;
}
.text-danger {
  color: #dc3545 !important;
}
 .text-hero
{
  font-size: var(--font-hero) !important;
}
.text-hero-sub
{
  font-size: var(--font-xxl) !important;
  
}
.text-hero3
{
  font-size: var(--font-xl) !important;
  
}

.text-h1
{
  font-size: var(--font-lg) !important;
}
.text-h2
{
  font-size: var(--font-md) !important;
}
.text-h3
{
  font-size: var(--font-sm) !important;
}
.text-h4
{
  font-size: var(--font-xs) !important;
}
.text-h5
{
  font-size: var(--font-x) !important;
}
.hover:hover
{
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2) !important;
}
/* Shadow */

.shadow {
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1) !important;
}
.shadow-w {
  box-shadow: 0 1px 8px rgba(255, 255, 255, 0.8) !important;
}
/* text-Shadow */
.w-back-30
{
  background-color: rgba(255, 255, 255, 0.3);;
}
.text-shadow{
text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.text-shadow-w {
  text-shadow: 1px 5px 1px rgba(255, 255, 255, 0.5);
}
select{ 
   max-width: 100%;
   width: 100%;
   box-sizing: border-box;
 outline: none;
  border-radius: 5px;
   display: block;  
 border: solid 1px var(--border-color);
}
input{ 
   max-width: 100%;
   width: 100%;
   box-sizing: border-box;
 outline: none;
 border-radius: 5px;
   display: block;   
   color: var(--text-color);
    border: solid 1px var(--border-color);
}
textarea{ 
   max-width: 100%;
    color: var(--text-color);
   width: 100%;
    border-radius: 5px;
   box-sizing: border-box;
    border: solid 1px var(--border-color);
 outline: none;
   display: block;   
}
 

 /* tabs-body */
 .tabs-body {
   flex: 0 0 auto;
   display: flex;
   align-items: center;
   overflow-x: auto;

 }

 .tabs-body .tabsbutton {
   display: flex;
   /* Change from display: none to flex */
   flex-direction: column;
   align-items: center;
   justify-content: center;

   padding: 0 5px;
   position: relative;
   margin: 0 5px;
   cursor: pointer;
   border-bottom: 2px solid transparent;
   transition: transform 0.3s ease;
 }

 .tabs-body .tabsbutton .tabs-text {
   margin-top: 0px;
   font-size: var(--font-md);
   font-weight: 400;
   line-height: var(--spacing-mlg);
  color: var(--text-color);
   padding: 2px 5px;
   font-family: Arial, Helvetica, sans-serif;
 
 }

 .tabs-body .tabsbutton.active {
   border-bottom: 1px solid var(--primary-color);
      font-weight:600;
 }

 .tabs-body .tabsbutton.active .tabs-text {
   color: var(--text-color);
         font-weight:600;
 }
 .icon-img
 {
      height:24px;
      width: 34px; 
      object-fit: contain;  
 }
   .icon {
     width: 20px;
     height: 20px;
     font-size: 20px;
     object-fit: contain;
     color: var(--icon-color);
     margin: 2px;
   }
      .icon-0 {
     width: 20px;
     height: 15px;
     
     font-size: 15px;
     color: var(--icon-color);
     
   }
      .icon-30 {
     width: 30px;
     height: 30px;
     font-size: 30px;
     color: var(--icon-color);
     margin: 2px;
   }
     .icon_logo {
     width: 40px;
     object-fit: contain;
     height:40px;
     font-size: 40px;
     color: var(--icon-color);
     margin: 2px;
   }
    .icon {
  width: 20px;
  height: 20px;
  margin: 0 2px 0 0;
  color: inherit;
}
@media only screen and (max-width: 768px) {
 .text-hero
{
  font-size: var(--font-xxl) !important;
}
.text-hero-sub
{
  font-size: var(--font-xl) !important;
  
}
.text-h1
{
  font-size: var(--font-md) !important;
}
.text-h2
{
  font-size: var(--font-xs) !important;
}
.text-h3
{
  font-size: var(--font-xs) !important;
}
}