.swalIntroImage {
    margin: 0;
}

.swalIntroConfirmButton {
    background: #0575bd;
}

.ht_info_container {
    display: flex;
    gap: .5rem;
    cursor: pointer;
}

.ht_info_icon_container {
    padding: .5rem;
    border-radius: .5rem;
    background: #eeeeee;
    cursor: pointer;
}

.ht_info_text_container {
    width: 100%;
    background: #bc4446;
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    border-radius: .5rem;
    justify-content: center;
}

.ht_info_text {
    margin: 0;
    line-height: 1;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-family: sans-serif;
}

.three_info_container {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    gap: 1rem;
    justify-content: center;
}

.swalInfoContainer {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.swalInfoImageContainer {
    display: flex;
    flex: 1;
    border-radius: .5rem;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}

.swalInfoImageContainer>img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.swalInfoContentContainer {
    flex: 2;
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.swalContentHeader {
    display: flex;
    gap: 1rem;
}

.swalContentHeaderIcon {
    padding: .5rem;
    border-radius: .5rem;
    background: #eeeeee;
}

.swalContentHeaderTitle {
    width: 100%;
    background: #bc4446;
    padding: .5rem 1.5rem;
    display: flex;
    align-items: center;
    border-radius: .5rem;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.swalContentHeaderTitle>p {
    margin: 0;
}

.swalContentDescription {
    background: white;
    border-radius: .5rem;
    height: 100%;
    max-height: calc(100% - 5.5rem);
    display: block;
    padding: 1rem;
    line-height: 1.4;
    text-align: justify;
}

.swalContentDescription>p {
    margin: 0;
}

.layananPDS{
    font-weight: normal;
    font-size: 1rem;
}

@media only screen and (max-width: 768px) {
    .three_info_container {
        grid-template-columns: repeat(1, 320px);
    }
}
@media only screen and (max-width: 620px) {
    .swalInfoContainer {
        flex-direction: column;
    }
    .swalInfoImageContainer {
        aspect-ratio: 1 / 1 ;
    }
}