.upload-section {
    display: grid;
    grid-template-columns: repeat(35%, 65%);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    align-items: center;
}

.upload-col-checkbox {
    /*grid-area: 1 / 1 / 2 / 2;*/
    width: 100%;
}

.upload-col-input {
    grid-area: 1 / 2 / 2 / 3;
}


.upload-container {
    width: 100%;
    /*flex: 1;*/
    /*display: flex;*/
    /*justify-content: center; !* Horizontally center the content *!*/
    /*align-items: center; !* Vertically center the content *!*/
    /*padding: 20px;*/
}

.upload-container h2, .list-btn-service h2 {
    margin-top: 0;
    font-size: 20px;
    font-weight: bold;
}

.upload-area {
    padding: 40px;
    text-align: center;
    cursor: pointer;
    border: 1px dashed rgba(0, 0, 0, .13);
    border-radius: 3px 3px 0 0;
    transition: .25s ease-out;
    background-color: #fff;
    align-content: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.upload-area:hover {
    border: 1px dashed #007bff;
    background-color: #e6f1fc;

    .upload-icon {
        background-color: #007bff;
        color: white !important;
    }

    .upload-icon > svg {
        color: white !important;
    }
}

.upload-area.active {
    border-color: #007bff;
}

.file-types {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.demo-button, .sample-button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 20px;
    font-size: 16px;
}

.sample-button {
    background-color: #f0f0f0;
    color: #333;
    margin-left: 10px;
}

.upload-icon {
    width: 3rem;
    min-height: 3rem;
    border-radius: 50%;
    background-color: #e6f1fc;
    color: #2563be;
    display: flex;
    align-items: center;
    place-content: center;
    align-self: center;
    transition: .25s ease-out;
}

.upload-icon > svg {
    width: 15px;
    color: #2563be !important;
}

.h3d-card--bordered {
    padding: 13px;
    display: block;
    border: 1px solid rgba(0, 0, 0, .13);
    border-radius: 3px;
}

.h3d-card--bordered:hover {
    border-color: #0071e3;
}

.list-btn-service {
    width: 100%;
}



.list-group-service.selected {
    border: 1px solid #007bff;
}

.icon-service{
    width: 30px;
    aspect-ratio: auto;
}
.title-service{
    padding-left: 30px;
}.title-service > h1{
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
    color: #000000d9;
}
.uploader__regulations{
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    background-color: #00000008;
    color: #0000008f;
    border-radius: 0 0 3px 3px;
    padding: .5rem;
    width: 100%;
}

.list-group-service {
    /*display: block;*/
    /*padding: 1.2rem 10px;*/
    /*background-color: white;*/
    /*cursor: pointer;*/
    /*margin-bottom: 10px;*/
    /*border: 1px solid rgba(0, 0, 0, .13);*/
    border-radius: 3px;
    width: 100%;
    white-space: nowrap;
    /*display: grid;*/
    grid-template-columns: repeat(15%,85%);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    .div-icon { grid-area: 1 / 1 / 1 / 1; text-align: center }
    .div-text { grid-area: 1 / 2 / 2 / 5; }
}
.list-group-service {
    display: flex;
    align-items: center;
    padding: 15px 35px;
    border: 1px solid #ddd;
    background-color: white;
    cursor: pointer;
    margin-bottom: 5px;
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    /*float: left;*/
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    /*text-align: left;*/
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #007bff;
    border-radius: 3px;
    width: 100%;
}

.list-group-service.active .dropdown-menu {
    display: block;
}
.dropdown-item:hover {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}
