/* Primary BG Color */
.bg-primary-color {
    background-color: rgba(4, 150, 255, 1);
}

.bg-primary-color:hover {
    background-color: rgba(4, 150, 255, 0.8);
}

.bg-second-color {
    background-color: rgba(171, 220, 255, 1);
}

.bg-second-color:hover {
    background-color: rgba(171, 220, 255, 0.8);
}

.bg-grey-color {
    background-color: rgba(224, 224, 224, 1);
}

.bg-grey-light-color {
    background-color: rgba(245, 245, 250, 1);
}

.bg-red-color-opacity {
    background-color: rgba(250, 167, 178, 1);
}

.bg-green-color {
    background-color: rgba(56, 176, 0, 1);
}

/* Border Color */  
.border-grey-color{
    border: 3px solid rgba(224, 224, 224, 1);;
}

.border-primary-color {
    background-color: rgba(171, 220, 255, 1);
    border-color: rgba(4, 150, 255, 1);
    color: rgba(4, 150, 255, 1);
}

.border-primary-color:hover {
    border-color: rgba(4, 150, 255, 1);
    color: rgba(4, 150, 255, 1);
}

.border-blue-dark-color {
    background-color: rgba(171, 220, 255, 1);
    border: 3px solid rgba(4, 150, 255, 1);
}

.border-blue-color {
    border-color: rgba(4, 150, 255, 1);
}

/* border checkbox */
.custom-form-check {
    border: 2px solid rgba(4, 150, 255, 1);
    border-radius: 8px;
    margin: auto 0;
    /* padding: 10px;
    margin-bottom: 10px; */
}

.custom-form-check label {
    margin-bottom: 0;
}

.custom-form-check .form-check-input {
    border: 2px solid rgba(4, 150, 255, 1);
    border-radius: 50%;
    margin-left: 10px;
}

/* dashed line */

.striped-line {
    border-top: 3px dashed rgba(130, 130, 130, 1);
}

/* .solid-line{
    border-top: 4px solid rgba(130, 130, 130, 1);
    margin:0;
    border-radius: 5px;
} */

.selected {
    background-color: rgba(4, 150, 255, 1);
    color: white;
}

/* end */

/* Text Color */
.text-primary-color {
    color: rgba(4, 150, 255, 1);
}

.text-dark-blue-color {
    color: rgba(2, 75, 127, 1);
}

.text-second-color {
    color: rgba(130, 130, 130, 1);
}

.text-yellow-color {
    color: rgba(255, 183, 3, 1);
}

.text-green-color {
    color: rgba(56, 176, 0, 1);
}

.text-grey-color {
    color: rgba(189, 189, 189, 1);
}

.text-red-color {
    color: rgba(239, 35, 60, 1);
}
/* Untuk Status "Berangkat" */
.bg-blue-color-opacity {
    background-color: rgba(0, 123, 255, 0.2); /* Biru dengan opacity 20% */
}

.text-blue-color {
    color: #007bff; /* Warna teks biru */
}

/* Untuk Status "Selesai" */
.bg-green-color-opacity {
    background-color: rgba(40, 167, 69, 0.2); /* Hijau dengan opacity 20% */
}

.text-green-color {
    color: #28a745; /* Warna teks hijau */
}

/* Font-Size */
.medium-font {
    font-size: 24px;
}

.small-font {
    font-size: 16px;
}

.xtra-small-font {
    font-size: 12px;
}

/* max line */
.maxline {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* Default desc color */
p {
    color: rgba(130, 130, 130, 1);
}


/* width 90% */
.width-90 {
    width: 90%;
    margin: 0 auto;
}



/* icon placeholder */
.form-group {
    position: relative;
}

.icon-container {
    position: relative;
}

.icon-container i {
    position: absolute;
    top: 50%;
    left: 10px;
    /* Adjust the left position as needed */
    transform: translateY(-50%);
    pointer-events: none;
    /* Ensure the icon doesn't interfere with input interaction */
}

.p-control-regis {
    padding: 0;
}

/* button size for dropdown on beranda*/

.responsiveButton {
    width: 220px;
    /* Ukuran default */
}

/* corousel style */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* animation: display 10s infinite; */

}

.carousel-slide {
    display: none;
    float: left;
    transition: opacity 0.5s ease-in-out;

    /* transition: opacity 0.5s ease, transform 0.5s ease; */
}

.carousel-slide.active {
    opacity: 1;
  }

.carousel-pointers {
    text-align: center;
    margin-top: 10px;
}

.carousel-pointer {
    display: inline-block;
    background-color: rgba(4, 150, 255, 1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 20px 8px;
    cursor: pointer;
    transition: width 0.3s ease;
    /* Menambahkan transisi untuk efek melebar */
}

.carousel-pointer.active {
    background-color: #717171;
    border-radius: 15px;
    background-color: rgba(2, 75, 127, 1);
    width: 30px;
    /* Menyesuaikan lebar pointer saat aktif */
}

/* seat select */

.radio-tile-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* set dimensions for invisible container */
  .input-container {
    position: relative;
    margin: 0.5rem;
  }
  
  /* make actual radio input invisible and stretch to fill container */
  .radio-button {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    cursor: pointer;
  }
  
  /* default tile styles */
  .radio-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(224, 224, 224, 1); 
    border-radius: 5px;
  }
  .radio-tile-label-disabled {
    text-align: center;
    text-transform: uppercase;
    color: white;
    border-bottom: 4px solid white;
    border-radius: 2px;
  }
  .disabled{
    background-color: rgba(239, 35, 60, 1);
    border: 2px solid rgba(239, 35, 60, 1); 
    color: white;
  }
  .radio-tile-label {
    text-align: center;
    text-transform: uppercase;
    color: rgba(130, 130, 130, 1);
    border-bottom: 4px solid rgba(224, 224, 224, 1);
    border-radius: 2px;
  }
  
  /* active tile styles */
  .radio-button:checked + .radio-tile {
    background-color: #079ad9;
    border: 2px solid #079ad9; 
    color: white;
    /* transform: scale(1.1, 1.1); */
  }
  
  .radio-button:checked + .radio-tile .radio-tile-label {
    color: white;
    background-color: #079ad9; 
    border-bottom: 4px solid white;
  }
  

/* end */

/* * {
    border: 1px solid red;
} */
