:root {
    --color-yellow: #FFCF00;
    --color-blue: #002D51;
    --color-green: #73B42F;
    --transition: all 400ms ease-in 0s;
    --border: 1px solid rgba(0, 0, 0, 0.11);
    --shadow: 6px 6px 12px rgba(0, 0, 0, 0.19);
    --shadow-hover: 2px 2px 4px rgba(0, 0, 0, 0.35);
}

.base-alert-waring {
    display: none;
}

.app-color-bg-green {
    background-color: var(--color-green);
}

.app-color-bg-yellow {
    background-color: var(--color-yellow);
}

.app-color-bg-blue {
    background-color: var(--color-blue);
}

.vl-root {
    height: 100%;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;

}


.vl-container {
    padding: 10px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* .vl-section {
    width: 100%;
    padding: 40px 20px;
    display: flex;
    row-gap: 3rem;
    column-gap: 100px;
    flex-wrap: wrap;
    flex-direction: row;
    border-radius: 12px;
    height: fit-content;
    justify-content: space-evenly;
}
*/

.vl-section {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr)); 
    row-gap: 3rem;
    height: fit-content;
    padding: 40px 20px;
    border-radius: 12px;
    justify-items: center;
}
 
@media (max-width: 1700px) {
    .vl-section {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
 
@media (max-width: 1200px) {
    .vl-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
 
@media (max-width: 600px) {
    .vl-section {
        grid-template-columns: 1fr;
    }
}



.vl-section a:hover {
    text-decoration: none;
}

.vl-section-title {
    /*margin-bottom: 0;*/
    color: #ffffff;
    text-align: left !important;
    font-size: 18px !important;
}

.vl-card{
    /*height: 120px;*/
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*gap: 10px;*/
    border: var(--border);
    /*padding: 6px;*/
    /*box-shadow: var(--shadow);*/
    /*border-radius: 6px;*/
    color: var(--color-blue);
    /*background-color: white;*/
    border-radius: 14px;
    background: #F9F9F9;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    width: 140px;
    height: 120px;

}

.vl-card i {
    width: 25px;

    height: 25px;
    font-size: 22px;
}

.vl-card:hover {
    background-color: rgba(255, 255, 255, 0.76);
}

.vl-card-v3 {
    /*height: 120px;*/
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: var(--border);
    padding: 6px;
    /*box-shadow: var(--shadow);*/
    /*border-radius: 6px;*/
    color: var(--color-blue);
    /*background-color: white;*/
    border-radius: 14px;
    background: #F9F9F9;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    width: 140px;
    height: 120px;
}

.vl-card-v3 i {
    width: 25px;

    height: 25px;
    font-size: 22px;
}

.vl-card-v3:hover {
    background-color: rgba(255, 255, 255, 0.76);
}

.vl-title {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
    padding: 5px;
}

.vl-title-v2 {
    text-align: center;
    font-size: 18px;
}

.vl-entry-app-status-count {
    font-size: 25px;
}

.vl-apply-for-access {
    grid-column: 1 / span 2;
    order: 1;
}


/* entry application items */

#vl-entry-app-list {
    grid-column: 1 / span 2;
    border-radius: 6px;
    display: none;
    margin-top: 10px;
    background-color: white;
    cursor: default;
    max-height: 320px;
    overflow: auto;
    padding-right: 5px;
    /*align-items: center;*/
}

.vl-ea-list-header {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ececec;
}


.ca-section-title {
    margin-bottom: 0;
    color: #ffffff;
    /* text-align: left !important; */
    font-size: 18px !important;
}

#vl-ea-list-title {
    margin: 0;
}

#vl-ea-list-items {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5px;
}

.vl-entry-app-item {
    display: flex;
    background-color: white;
    /*box-shadow: var(--shadow);*/
    padding: 10px;
    border-radius: 6px;
    color: var(--color-blue);
    margin-top: 10px;
    /*overflow: hidden;*/
}

.vl-eas-selected {
    background-color: #E5FFBA;
}

.vl-eai-num {
    color: var(--color-yellow);
    margin-right: 10px;
}


/* ca_landing */

.vl-container-apply {
    width: 37vw;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.vl-visitor-m {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    width: 20vw;
}

.vl-m-header {
    background-color: var(--color-blue);
    padding: 15px;
    color: white;
    border-radius: 10px;
}

.vl-locator-m-item {
    padding: 15px;
    box-shadow: var(--shadow-hover);
    background-color: white;
    border-radius: 10px;
    color: var(--color-blue)
}

.vl-locator-m-item:hover {
    text-decoration: none;
    background-color: var(--color-blue);
    color: white;
}


.vl_card {
    display: flex;
    gap: 10px;
    padding: 5px;
    height: 60px;
    flex-direction: column;
    align-items: center;
}

.vl-card-v2 {
    display: flex;
    gap: 6px;
    padding: 5px;
    height: 60px;
    flex-direction: column;
    align-items: center;
}

.vl-title-head {
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
    font-size: 25px !important;
}
.self-service-container {
    display: flex; 
    justify-content: space-between;
  }
  
  .self-service-column {
    flex: 1;
     margin-right: 10px;
  }
  .self-service-container {
    display: flex; 
    justify-content: space-between;
  }
  
  .self-service-column {
    flex: 1;
     margin-right: 10px;
  }
  .vl_card-v2 {
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#imageCarousel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    
}

.carousel-item {
    width: 100%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 10;
    background: linear-gradient(
        0deg,
        rgba(255, 255, 255, 0.8),
        rgba(0, 151, 255, 0.75)
      ),
}
#repeat_visitor, .repeat-visitor-card{
    position: relative;
}
.repeat-visitor-card{
    padding: 0;
}
.vl-visitor-m-header{
    width: 37vw;
}
#stepper-form .container{
    padding: 0px;
}
@media all and (min-width:0px) and (max-width: 1024px) {
    .vl-root{
        margin-top: 0;
    }
    .vl-container-apply {
        width: 70vw;
        align-items: center;
        display: flex;
        flex-direction: column;
    }
    .vl-visitor-m-header{
        width: 70vw;
    }
    .vl-title-head{
        font-size: 20px !important;
        
    }
    .vl-visitor-m {
        margin-top: 20px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
        width: 50vw;
    }
    .vl_card-v2 {
        height: 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    
  }