@font-face {
    font-family: 'Poppins';
    src: url('../../../assets/fonts/Poppins-Regular.woff') format('woff'), url('../../../assets/fonts/Poppins-Regular.ttf') format('truetype');
}

.outer-container-ucapan {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.containerhgcustomform {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 15px;
    border-radius: 15px;
}

.hgcustomform {
    display: flex;
    flex-direction: column;
    text-align: left;
    color: white;
    padding: 15px;
    font-size: 12px;
    gap: 10px;
    font-family: "Poppins", sans-serif;
}

.label-input {
    font-weight: bold;
}

.input-field {
    font-size: 12px;
}

#ucapan_doa {
    min-height: 100px;
}

.checkbox-nama-custom {
    display: flex;
    direction: row;
    align-items: center;
    gap: 5px;
    padding: 0 5px;
    line-height: 1;
    font-size: 12px;
}

.submit-button {
    font-weight: bold;
    font-size: 12px;
    line-height: 1;
    color: black;
    background-color: white;
    border-radius: 3px;
    padding: 5px 20px 5px 20px;
    width: max-content;
    display: flex;
    cursor: pointer;
}

.container-list-ucapan {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    background: black;
    border-radius: 15px;
    color: white;
    align-items: center;
}

.list-data-ucapan {
    overflow-y: auto;
    min-height: 60px;
    height: 300px;
    width: 95%;
    box-sizing: border-box;
}

.list-data-ucapan::-webkit-scrollbar,
textarea::-webkit-scrollbar {
    width: 8px;
}

.list-data-ucapan::-webkit-scrollbar-track,
textarea::-webkit-scrollbar-track {
    background: #F1F1F1;
    border-radius: 4px;
}

.list-data-ucapan::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.list-data-ucapan::-webkit-scrollbar-thumb:hover,
textarea::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.inner-cont-ucapan {
    font-family: "Poppins", sans-serif;
    padding: 5px 10px;
    border-radius: 8px;
    height: fit-content;
    box-shadow: 0px 0px 10px 0px rgb(255 255 255 / 43%);
    font-size: 14px;
    margin-bottom: 20px;
    margin: 18px 10px;
    text-align: left;
}

.heading-container {
    padding: 15px 30px;
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
    align-items: center;
    text-align: center;
}

.heading-list-ucapan {
    padding-bottom: 5px;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: bold;
    align-self: center;
    text-align: center;
    text-align: -webkit-center;
}

.jumlah-ucapan {
    text-align: -webkit-center;
    font-size: 10px;
    font-weight: normal;
    font-family: "Poppins", sans-serif;
    width: fit-content;
    background: #3b3b3a;
    padding: 2px 10px;
    border-radius: 5px;
    color: white;
}

.nama-tamu {
    font-weight: bold;
}

.ucapan {
    font-size: 12px;
    text-align: justify;
}

.waktu {
    font-size: 11px;
    text-align: right;
    font-weight: bold;
}

.belum-ada-ucapan {
    font-size: 13px;
    text-align: center;
}

.loaderBox {
    background-color: transparent;
}

.loaderelementcustom {
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    place-content: center;
}

.loadercustom {
    width: 35px;
    height: 35px;
    border: 5px solid #FFF;
    border-bottom-color: #707070;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationcustom 1s linear infinite;
}

@keyframes rotationcustom {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.ishide {
    display: none;
}